POST
/
wires
/
transaction_simulations
/
receiving_transaction
Simulate receiving Wire transaction
curl --request POST \
  --url https://api-sandbox.synctera.com/v0/wires/transaction_simulations/receiving_transaction \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "account_number": "123638791329",
  "amount": 607,
  "network": "FEDWIRE"
}'
{
  "file_name": "SIMULATION.20230709T222327.086_221.txt"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Incoming Wire simulation request

Simulate receiving a Wire transaction

account_number
string
required

Number of the receiving account

Example:

"123638791329"

amount
integer
required

Amount to transfer in cents (e.g. 100 = $1).

Required range: x >= 1
Example:

607

network
enum<string>
default:FEDWIRE

Network to use for the Wire transfer

Available options:
DATASOFT,
FEDWIRE
Example:

"FEDWIRE"

Response

Simulated receiving a Wire transaction

Incoming Wire simulation result with the created file name

file_name
string
required
Example:

"SIMULATION.20230709T222327.086_221.txt"