Check Transfer Status
This endpoint is used by a user to check the status of a transfer which they initiated.
To check the status of the transfer, send the GET /payment/v1/transfers/{transactionReference}
request.
In the successful response, you receive the details on the transfer and its status.
{
"transactionReference":"493fe5f3-5cbe-49cb-9786-f1a03e1e61f1",
"paymentReference":"REF850136",
"amount":{
"value":25,
"currency":"USD"
},
"fee":{
"value":0.0,
"currency":"USD"
},
"walletId": "a:23120645967001:kIlS5t3:1",
"status": "COMPLETED",
"createdAt": "2024-08-09T10:49:33.809785Z"
"details":{
"type": "WALLET",
"beneficiary": {
"entityType": "COMPANY",
"companyDetails": {
"name":"some-name"
},
"individualDetails": null,
"address":{
"addressLine1": "Level 3",
"addressLine2": "89 Charterhouse St, Barbican",
"city": "London",
"region": "London",
"postCode": "EC1M 6PE",
"countryCode": "GB"
},
"walletId": "a:23120645967001:kIlS5t1:1"
}
}
}
Attribute | Description |
---|---|
| Unique reference identifier for the transaction (UUID). |
| Reference or description for the payment. |
| Object containing the amount and currency of the transfer. |
| The value of the transfer. |
| The currency of the transfer. |
| Contains information about the fees related to the transfer. |
| The value of the fee. |
| The currency of the fee. |
| Unique identifier for the wallet from where funds are being transferred out. |
| The status for the transfer. Can be one of the following:
|
| The date the transfer was created. |
| Contains details of the transfer, including the entity and bank info. |
| Type of transaction (e.g., "FIAT"). |
| Contains beneficiary information. |
| Specifies the type of beneficiary. |
| Specifies the company details of the beneficiary. |
| Specifies the company details of the beneficiary. |
| Specifies the address details of the beneficiary. |
| Specifies the walletId details of the beneficiary where the funds should be transferred to. |
Updated about 6 hours ago