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 parameters

merchant_id

stringrequired

instrument

objectrequired

amount

objectrequired

type

stringrequired

initiator

string

entry_mode

string

order_type

string

terminal

object

Request 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
  ]
}
Log in to use your API keys with Try It!
REQUEST
12345678