Create Transfer Session
curl --request POST \
--url https://api.example.com/{version}/sessions/transfer \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"from_wallet_id": 123,
"to_counterparty_id": 123,
"amount": 1.01,
"currency": "<string>",
"expires_at": "2023-11-07T05:31:56Z"
}
'{
"id": 123,
"from_wallet_id": 123,
"to_counterparty_id": 123,
"amount": 1.01,
"currency": "<string>",
"status": "<string>",
"expires_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}sessions
Create Transfer Session
POST
/
{version}
/
sessions
/
transfer
Create Transfer Session
curl --request POST \
--url https://api.example.com/{version}/sessions/transfer \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"from_wallet_id": 123,
"to_counterparty_id": 123,
"amount": 1.01,
"currency": "<string>",
"expires_at": "2023-11-07T05:31:56Z"
}
'{
"id": 123,
"from_wallet_id": 123,
"to_counterparty_id": 123,
"amount": 1.01,
"currency": "<string>",
"status": "<string>",
"expires_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Allowed value:
"v1"Body
application/json
CreateTransferSessionPayload
Response
Successful Response
TransferSessionResponse
A positive, non-zero amount.
Required range:
x >= 0.01Three-letter ISO-4217 currency code (e.g. USD, LRD, NGN)
Required string length:
3Last modified on June 23, 2026
Was this page helpful?
⌘I
