Get Payment Means
base_url: https://firseinvoice.etranzactng.com/
Description: This endpoint returns a list of payment means and their corresponding values.
| Query Parameter | Type | Description |
|---|---|---|
| 10 | string | Cash |
| 20 | string | Cheque |
| 30 | string | Credit Transfer |
| 31 | string | Debit Transfer |
| 42 | string | ACH Credit |
| 43 | string | ACH Debit |
| 48 | string | Bank Card |
| 49 | string | Direct Debit |
| 50 | string | Credit Card |
| 58 | string | Banker's Draft |
| 97 | string | Other |
Sample Request
GET {base_url}/api/v1/resources/payment-means
curl `{base_url}/api/v1/resources/payment-means`
-H "X-API-Key: {{CLIENT_API_KEY}}"
-H "X-API-Signature: {{HMAC_SHA256_SIGNATURE}}"
-H "X-API-Timestamp: {{ISO_20022_TIMESTAMP}}"
'
Sample Response
POST {base_url}/api/v1/resources/payment-means
{
"status": 200,
"message": "Payment means fetched successfully",
"data": [
{
"code": 10,
"value": "Cash"
},
{
"code": 20,
"value": "Cheque" },
{
"code": 30,
"value": "Credit Transfer"
}
],
"execTime": 1.27868,
"error": ""
}