Get_ProductList
Corporate Customers may use this method to retrieve the product list, to review and select the products available for transactions.
Definition
GET/api/product/issuer-codes
Sample Request
| curl -X GET "{{base_URL}}/api/product/issuer-codes?Payout_Country&Trxn_Type" \ -H "Authorization: Bearer <your_access_token> " \ -H "Content-Type: application/json" |
Request Description
| Parameter Name | Required | Min/Max Length | Type | Remark |
| Authorization | M | Bearer <jwt-token> | String | |
| Payout_Country | O | 2/2 | Char | Payout’s Country accepts ISO 3166-1 Alpha-2 Only. |
| Trxn_Type | O | 1/2 | Numeric | Transaction Type. |
Sample Response
| HTTP 200 OK [ { "Payout_Country": "MY", "Channel": "Banks", "Currencies": [ { "Payout_Currency": "MYR", "Bank_Codes": [ { "Issuer_Code": "6000001", "Bank_Name": "Maybank" }, { "Issuer_Code": "6000002", "Bank_Name": "Public Bank" } ] }, { "Payout_Currency": "USD", "Bank_Codes": [ { "Issuer_Code": "7000004", "Bank_Name": "Maybank" }, { "Issuer_Code": "7000005", "Bank_Name": "Public Bank" } ] } ] } ] |
Response Description
| Parameter | Data Type | Required | Description |
| Payout_Country | String | M | |
| Channel | String | M | Transfer Channel Name/Description. |
| Payout_Currency | Char | M | Currency code used for the payout. |
| Issuer_Code | String | M | Bank code for a specific country and currency. |
| Bank_Name | String | M | Bank name for a specific country and currency. |
M = Mandatory, C = Conditional, O = Optional