cURL
curl --request POST \ --url https://api-v2.ziina.com/api/transfer \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "operation_id": "<string>", "to_account_ids": [ "<string>" ], "to_ziinames": [ "<string>" ], "amount": 123, "currency_code": "<string>", "message": "<string>", "transaction_source": "directApi" }'
{ "id": "<string>", "account_id": "<string>", "amount": 123, "tip_amount": 123, "fee_amount": 123, "currency_code": "<string>", "created_at": "<string>", "status": "requires_payment_instrument", "operation_id": "<string>", "message": "<string>", "redirect_url": "<string>", "success_url": "<string>", "cancel_url": "<string>", "latest_error": { "message": "<string>", "code": "<string>" }, "allow_tips": true }
write_transfers
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The response is of type object.
object
Was this page helpful?