class SmartpaysController

Public Instance Methods

create() click to toggle source
# File lib/generators/smartpay/templates/controller.rb, line 5
def create
  session = Smartpay::Api.create_checkout_session({
    items: [{
      name: "オリジナルス STAN SMITH",
      amount: 250,
      currency: "JPY",
      quantity: 1
    }],
    customer: {
      accountAge: 20,
      email: "merchant-support@smartpay.co",
      firstName: "田中",
      lastName: "太郎",
      firstNameKana: "たなか",
      lastNameKana: "たろう",
      address: {
        line1: "3-6-7",
        line2: "青山パラシオタワー 11階",
        subLocality: "",
        locality: "港区北青山",
        administrativeArea: "東京都",
        postalCode: "107-0061",
        country: "JP"
      },
      dateOfBirth: "1985-06-30",
      gender: "male"
    },
    shipping: {
      line1: "line1",
      locality: "locality",
      postalCode: "123",
      country: "JP"
    },
    reference: "order_ref_1234567",
    successUrl: "https://docs.smartpay.co/example-pages/checkout-successful",
    cancelUrl: "https://docs.smartpay.co/example-pages/checkout-canceled",
    test: true
  })
  redirect_to session.redirect_url
end
new() click to toggle source
# File lib/generators/smartpay/templates/controller.rb, line 2
def new
end