Category (Payment Channel)
Category to route your payment through
POST METHOD
Note
For country, ISO code of 2 characters is required
{{baseUrl}}/api/v2/payout/category
{
"receivingCur": "TRY",
"receivingCountry" : "TR"
}
Field | Required | Data Type | Description |
---|---|---|---|
receivingCountry | true | String | Length: 2, Country ISO code i.e US. |
receivingCur | true | String | Length: 3, Country ISO code i.e USD. |
Response
{
"status": true,
"content": {
"data": [
{
"value": "Bank",
"id": "BANK"
},
{
"value": "Wallet",
"id": "WALLET"
},
{
"value": "Cash",
"id": "CASH"
}
]
}
}
Use the value return for the id
Updated 11 months ago