Features
Refunds
Tokenization
Recurring Payments
POST/v1/payments/authorizations
POST /v1/payments/authorizations
Create a payment authorization. Supports optional tip amount which is extracted from the Amount.Tip.Value field. The tip_amount field is non-breaking and optional - existing clients that do not send tip will receive decimal.Zero.
Request Body
8 parametersmerchant_id
stringrequiredinstrument
objectrequiredamount
objectrequiredtype
stringrequiredinitiator
stringentry_mode
stringorder_type
stringterminal
objectRequest Preview
{
"instrument": {},
"amount": {},
"terminal": {}
}Responses
200
Success
{
"merchant_id": "example_string",
"instrument": null,
"amount": "example_string",
"tip_amount": "example_string",
"type": "example_string",
"initiator": "example_string",
"entry_mode": "example_string",
"order_type": "example_string",
"discount_amount": 123,
"effective_amount": 123,
"taxes": [
null
]
}