Get_ProductList - Tranglo

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 NameRequiredMin/Max LengthTypeRemark
AuthorizationMBearer <jwt-token>String
Payout_CountryO2/2CharPayout’s Country accepts ISO 3166-1 Alpha-2 Only.
Trxn_TypeO1/2NumericTransaction 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

ParameterData TypeRequiredDescription
Payout_CountryStringM
ChannelStringMTransfer Channel Name/Description.
Payout_CurrencyCharMCurrency code used for the payout.
Issuer_CodeStringMBank code for a specific country and currency.
Bank_NameStringMBank name for a specific country and currency.

M = Mandatory, C = Conditional, O = Optional