latestOpenAPI 3.1.02026-08-153864115.7 MB
c301132dbfd7
Transfers
Create Transfer
Moves money between accounts, or into a claim link anyone with the URL can redeem.
post/transfers
Headers
Idempotency-Keystring
Example:d9105228-4a08-46b1-8b91-42fed586d383
A unique key that makes this request safe to retry. See Idempotent requests.
Request body
Example request
{
"amount": 25,
"currency": "usd",
"destination_id": "user_xxxxxxxxxxxxxx",
"expires_at": "2026-01-01T12:00:00.000Z",
"idempotence_key": "shine-supplies-restock-118",
"metadata": {
"order_id": "SHINE-1042"
},
"notes": "Refund for the rescheduled interior detail",
"origin_id": "biz_xxxxxxxxxxxxxx",
"redeemable_count": 3,
"type": "wallet_send"
}Response
money movement created
Example response
{
"amount": 25,
"created_at": "2026-01-01T12:00:00.000Z",
"created_by_user": {
"id": "user_xxxxxxxxxxxxxx",
"name": "Marcus Webb",
"username": "marcuswebb"
},
"currency": "usd",
"destination": {
"id": "biz_xxxxxxxxxxxxxx",
"route": "biz_xxxxxxxxxxxxxx",
"title": "Shine Time Auto Detailing",
"typename": "Company"
},
"destination_ledger_account_id": "ldgr_xxxxxxxxxxxxxx",
"fee_amount": 0.5,
"id": "ctt_xxxxxxxxxxxxxx",
"metadata": {
"order_id": "SHINE-1042"
},
"notes": "Refund for the rescheduled interior detail",
"object": "transfer",
"origin": {
"id": "biz_xxxxxxxxxxxxxx",
"route": "biz_xxxxxxxxxxxxxx",
"title": "Shine Time Auto Detailing",
"typename": "Company"
},
"origin_ledger_account_id": "ldgr_xxxxxxxxxxxxxx",
"status": "succeeded"
}