Skip to main content

Get Payment Means

base_url: https://firseinvoice.etranzactng.com/

Description: This endpoint returns a list of payment means and their corresponding values.

Query ParameterTypeDescription
10stringCash
20stringCheque
30stringCredit Transfer
31stringDebit Transfer
42stringACH Credit
43stringACH Debit
48stringBank Card
49stringDirect Debit
50stringCredit Card
58stringBanker's Draft
97stringOther

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": ""
}