Check the Status of a Transfer

This endpoint is used by a user to check the status of a transfer which they initiated.


🚧

BETA Endpoints

Please note that these endpoints are currently in beta, and they may undergo changes as we continue to improve and refine the functionality.


Request:

EnvironmentEndpoint
ProductionGET https://api.bvnk.com/payment/api/v1/transfers/{transaction_id}
SandboxGET https://api.sandbox.bvnk.com/payment/api/v1/transfers/{transaction_id}
curl --location 'https://api.sandbox.bvnk.com/payment/api/v1/transfers/{transaction_id}' \
--header 'Authorization: Hawk id="vOjKT0txxpp6TMQP6QTQziyBjAiVnMGNH3dbFa0SGhK7OFsMD6lWFPaN8TXCqkXk", ts="1724772959", nonce="BP1z-t", mac="hE8lI09+RMuhyH834VJnP6RNuQA+Cb97mWVWt1SGj9M="'

Response:

{
   "transactionReference":"493fe5f3-5cbe-49cb-9786-f1a03e1e61f1",
   "paymentReference":"REF850136",
   "amount":{
      "value":25,
      "currency":"EUR"
   },
   "fee":{
      "value":0.0,
      "currency":"EUR"
   },
   "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" //Only visible for Internal
      }
   }
}

Possible Statuses:

  • PENDING
  • COMPLETED
  • FAILED
  • REJECTED