GET
/
transfer
/
{id}
cURL
curl --request GET \
  --url https://api-v2.ziina.com/api/transfer/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "account_id": "<string>",
  "amount": 123,
  "currency_code": "<string>",
  "created_at": "<string>",
  "status": "requires_payment_instrument",
  "operation_id": "<string>",
  "message": "<string>"
}
In order to call this endpoint your token must have write_transfers scope.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

id of the transfer

Response

default - application/json

The response is of type object.