Links

Dummy Transactions

post
https://api.synapsefi.com
/v3.1/users/:user_id/nodes/:node_id/subnets/:subnet_id/dummy-tran
Create Dummy Transactions

Example Request

HTTP
cURL
Python
JavaScript
Ruby
PHP
Go
POST /v3.1/users/6063b4af75629600d3ba5ce8/nodes/607f58a97e08873be3ca0315/subnets/[object Object]/dummy-tran HTTP/1.1
Host: uat-api.synapsefi.com
X-SP-USER-IP: 255.127.79.76
X-SP-USER: oauth_N1DoXKQlEsPOIxphYjSey4J8qn2RmVFZ0zLbH5TW|e83cf6ddcf778e37bfe3d48fc78a6502062fc
Content-Type: application/json
{
"type": "ACH",
"direction": "DEPOSIT",
"amount": 100.00,
"currency": "USD",
"posting_label": "Dummy Test Transaction"
}
curl --location -g --request POST 'https://uat-api.synapsefi.com/v3.1/users/6063b4af75629600d3ba5ce8/nodes/607f58a97e08873be3ca0315/subnets/[object Object]/dummy-tran' \
--header 'X-SP-USER-IP: 255.127.79.76' \
--header 'X-SP-USER: oauth_N1DoXKQlEsPOIxphYjSey4J8qn2RmVFZ0zLbH5TW|e83cf6ddcf778e37bfe3d48fc78a6502062fc' \
--header 'Content-Type: application/json' \
--data-raw '{
"type": "ACH",
"direction": "DEPOSIT",
"amount": 100.00,
"currency": "USD",
"posting_label": "Dummy Test Transaction"
}'
//
//
//
//
//