Create a transfer between payment accounts
curl --request POST \
--url https://api.case.dev/payments/v1/transfers \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"from_account_id": "<string>",
"to_account_id": "<string>",
"amount": 123,
"memo": "<string>",
"metadata": {}
}
'Was this page helpful?
curl --request POST \
--url https://api.case.dev/payments/v1/transfers \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"from_account_id": "<string>",
"to_account_id": "<string>",
"amount": 123,
"memo": "<string>",
"metadata": {}
}
'