Internal Transfer
Transfer funds between internal accounts
POST /v1/payment
Headers
Name
Value
Content-Type
application/json
Authorization
Bearer <token>
Body
{
"amount" :10.0,
"description" : "Test payment",
"from_account_id" :"1e35c82d-4c3d2-4487-b82a-745b2cdc2031",
"to_account_id" : "238547de-e87c2-427a-a994-afa4df1a59c8"
}Response
{
"success": "Payment successful"
}{
"message": "Unauthenticated"
}[
{
"message": "Unprocessable Entity",
"error_code": 20005,
"error_text": "not enough funds on account available amount"
}
]Last updated
Was this helpful?