POST
/
payoffs
curl --request POST \
  --url https://dev.cardinalgray.com/payoffs \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "mch_id": "<string>",
  "account_holder": "<string>",
  "account_number": "<string>",
  "vin": "<string>",
  "amount": "<string>"
}'
{
  "id": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
Payoff to create
mch_id
string
required

The Merchant's ID within the Method system

account_holder
string
required

The name of the account holder

account_number
string
required

The account number

vin
string
required

The vehicle identification number

amount
string

The outstanding balance on the account

Response

201
application/json
Payoff added response
id
string

Returns an id for the payoff.