POST
/
cards
/
transaction_simulations
/
financial
/
advice
Simulate financial advice
curl --request POST \
  --url https://api.synctera.com/v1/cards/transaction_simulations/financial/advice \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "amount": 123,
  "network_fees": [
    {
      "amount": 123,
      "credit_debit": "C",
      "type": "ISSUER_FEE"
    }
  ],
  "original_transaction_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "transaction_options": {
    "additional_data": "<string>",
    "card_expiration_date_yymm": "<string>",
    "database_transaction_timeout": 123,
    "encryption_key_id": "<string>",
    "is_async": false,
    "pre_auth_time_limit": "<string>",
    "send_expiration_date": false,
    "send_track_data": false,
    "transaction_id": "<string>",
    "transaction_timeout_threshold_seconds": 123
  }
}'
{}

Authorizations

Authorization
string
header
required

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

Body

application/json

Financial advice details

amount
integer
required

The amount of the transaction in the smallest whole denomination of the applicable currency (eg. For USD use cents)

original_transaction_id
string<uuid>
required
network_fees
object[]
transaction_options
object

Response

Success

The response is of type object.