Skip to main content
POST
/
payments
/
v1
/
transfers
Create transfer
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": {}
}
'

Authorizations

Authorization
string
header
required

API key starting with sk_case_

Body

application/json
from_account_id
string
required
to_account_id
string
required
amount
integer
required

Amount in cents

memo
string
metadata
object

Response

200

Transfer created