Get Dictionaries MCC
This service will be used to get all available MCC Groups available for a given FI, with the option to get related MCC codes by sending include_code = true and the option to filter on: MCC Group: this can be specific MCC group code, or list of MCC group codes comma separated (ex: C,U).
Code example
Click on the buttons to view code snippet:
curl -X 'GET' \
'https://apitest.network.ae/dictionaries/mcc?include_codes=true&mcc_group=ENTERTAINMENT' \
-H 'accept: application/json' \
-H 'Unique-Reference-Code: Req-008' \
-H 'Financial-Id: NIC' \
-H 'Channel-Id: IVR'
Request Parameters:
HTTP | Key | Type | Length | Description | Remarks |
Http header | Unique-Reference-Code | String | 12 | Unique Source Message ID | Mandatory |
Financial-Id | String | N/A | Financial Institution Id | Mandatory | |
Channel-Id | String | N/A | e.g. IVR | Mandatory | |
Query Parameter | include_codes | Boolean | N/A | true or false | Optional |
mcc_group | String | N/A | Optional |
Response Parameters:
Node | Child Node | Type | Description | Remarks | ||
dictionaries_mcc | group_name | String | Group Name | Optional | ||
group_code | String | Group Code | Optional | |||
Array of MCC List | ||||||
mcc_list | code | String | mcc code | Optional | ||
name | String | mcc name | Optional |
Response Json
{
"dictionaries_mcc": [
{
"group_name": "Entertainment",
"group_code": "ENTERTAINMENT",
"mcc_list": [
{
"code": "4457",
"name": "4457 Boat Rentals And Lease"
},
{
"code": "7033",
"name": "7033 Trailer Parks & Campgrounds"
},
{
"code": "5813",
"name": "5813 Drinking Places - Bars,Tave"
}
]
}
]
}