All URIs are relative to https://connect.squareup.com
Method | HTTP request | Description |
---|---|---|
create_checkout | POST /v2/locations/{location_id}/checkouts | CreateCheckout |
CreateCheckoutResponse create_checkout(location_id, body)
CreateCheckout
Creates a Checkout response that links a checkoutId
and checkout_page_url
that customers can be directed to in order to provide their payment information using a payment processing workflow hosted on connect.squareup.com.
# load the gem
require 'square_connect'
# setup authorization
SquareConnect.configure do |config|
# Configure OAuth2 access token for authorization: oauth2
config.access_token = 'YOUR ACCESS TOKEN'
end
api_instance = SquareConnect::CheckoutApi.new
location_id = "location_id_example" # String | The ID of the business location to associate the checkout with.
body = SquareConnect::CreateCheckoutRequest.new # CreateCheckoutRequest | An object containing the fields to POST for the request. See the corresponding object definition for field details.
begin
#CreateCheckout
result = api_instance.create_checkout(location_id, body)
p result
rescue SquareConnect::ApiError => e
puts "Exception when calling CheckoutApi->create_checkout: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
location_id | String | The ID of the business location to associate the checkout with. | |
body | CreateCheckoutRequest | An object containing the fields to POST for the request. See the corresponding object definition for field details. |
- Content-Type: application/json
- Accept: application/json