KashierDevelopersKashier Developers

Get transfer details

curl -X GET "https://test-api.kashier.io/v2/transfers/string"
{  "amount": 100,  "method": "bank",  "recipientName": "Ahmed Hassan",  "recipientBank": "ADIB",  "recipientNumber": "xxxxxxxxxxxxx141",  "transferId": "TRS-1007931100",  "status": "TRANSFERRED",  "merchantId": "MID-xxx-xxx",  "merchantDetails": {    "email": "[email protected]",    "businessEmail": "[email protected]",    "storeName": "kashier store"  },  "createdBy": {    "id": "640ef8f8ae16f9001ab269c9",    "name": "Sara Ahmed",    "email": "[email protected]"  },  "batch": {    "_id": "673de105937e00001236fd71",    "name": "November payouts",    "id": "TRS-1007931100",    "method": "bank",    "transfersCount": 1  },  "history": [    {      "_id": "673de105937e00001236fd72",      "status": "INITIATED",      "date": "2024-11-20 13:15:49.186000+00:00"    },    {      "_id": "673de105937e00001236fd75",      "status": "IN_TRANSIT",      "date": "2024-11-20 13:15:49.238000+00:00",      "response": {        "status": "SUCCESS",        "transactionResponseCode": "8000",        "transactionResponseMessage": {          "en": "Received and Validated Successfully",          "ar": "تم الاستلام والتحقق بنجاح"        }      }    },    {      "_id": "673e0b50937e00001236fd9b",      "status": "TRANSFERRED",      "date": "2024-11-20 16:16:16.752000+00:00",      "response": {        "status": "SUCCESS",        "transactionResponseCode": "8222",        "transactionResponseMessage": {          "en": "Settled",          "ar": "تم التسوية"        }      }    }  ],  "__v": 0,  "createdAt": "2024-11-20 13:15:49.224000+00:00",  "updatedAt": "2024-11-20 16:16:16.752000+00:00",  "fees": {    "PCC_selling_rate": 3,    "PCC_selling_flat": 4,    "total_selling_rate": "3.00",    "total_selling_fees": "7.00"  }}

Retrieves the details of a payout transfer, including its status history and fees.

Authorization

secretKey
Authorization<token>

Merchant secret key used to identify the merchant, obtained from Kashier's dashboard. Pass the raw secret key value in the Authorization header (NOT a "Bearer" token).

In: header

Path Parameters

transferId*string

The transfer id (e.g., TRS-1007931100).

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

GET
/v2/transfers/{transferId}