2. Authorization Transaction
Authorize a payment for a given quote. The final step for processing a transaction. Requires that you've already obtained a quote that's still active.
POST Request to {Endpoint}/pay/submitTransaction
submitTransaction can only be called once a quote has been generated and is active, meaning that the quote was generated within 10 minutes of the request to authorize a payment.
When a payment is authorized for a given quote, the user's billing information is processed for the orderTotal amount generated in getQuote.
token
String
Quote token generated in Step 1
ipAddress
String
User's IP address
email
String
Email address
Payment Information:
​paymentInformation
Object
​Payment details
cardNumber
Number
User's card number
cardHolderName
String
User's card name
CVV
Number
User's card CVV
monthExpire
Number
User's card expiry month
yearExpire
Number
User's card expiry year
billingAddress
String
Billing Address
city
String
User's city
state
String
User's state
country
String
User's country
zip
String
Zip code
JSON body request example:
Successful Response:
In case of authorization 2D/3D transaction failure, the response will be:
Last updated