POST
/
cards
/
transaction_simulations
/
financial
/
withdrawal
Simulate ATM withdrawal
curl --request POST \
  --url https://api.synctera.com/v1/cards/transaction_simulations/financial/withdrawal \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "account_type": "checking",
  "amount": 123,
  "card_acceptor": {
    "address": "address",
    "city": "city",
    "country": "country",
    "ecommerce_security_level_indicator": "ecommerce_security_level_indicator",
    "mcc": "mcc",
    "name": "name",
    "partial_approval_capable": false,
    "state": "state",
    "zip": "zip"
  },
  "card_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "mid": "<string>",
  "pin": "<string>"
}'
{}

Authorizations

Authorization
string
header
required

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

Body

application/json

ATM withdrawal details

The body is of type object.

Response

201
application/json

Success

The response is of type object.