KashierDevelopersKashier Developers

Create transfer

curl -X POST "https://test-fep.kashier.io/v3/transfers/single" \  -H "Content-Type: application/json" \  -d '{    "amount": 10,    "method": "wallet",    "recipientName": "Jhon Doe",    "merchantTransferId": "transfer12349",    "recipientNumber": "01555539512"  }'
{  "messages": {    "en": "We're processing your transfer.",    "ar": ".جاري معالجة المعاملة"  },  "data": [    {      "transferId": "TRS-212328888",      "status": "PENDING",      "amount": 10,      "method": "wallet",      "recipientNumber": "01555539512",      "recipientName": "Jhon Doe",      "recipientBank": null,      "merchantTransferId": "transfer12349"    }  ]}

Creates a single payout transfer.

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

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

POST
/v3/transfers/single