The module helps to get sub-campaign or skill name by organization ID. The Service URL of the module is given by the following link-
https://www.enterice.com/external/icedataapi/api/chat/get_subcampaign
- Json Formats-
- Code snippet for Web Service API-
GET_SUBCAMPAIGN {
“Token”: “34gdf6754y3444”,
“OrgID”: “11”
}
2. Description for Request Parameter-
Request Parameters |
Notes |
||
Token | string | Authentication Token | |
OrgID | integer | Organization ID |
3. Response Example-
Success:
{
“SubCampaignData”: [
{
“CampaignID”: 111
“CampaignName”: “ABC”,
“SubcampaignID”: 123,
“SubcampaignName”: “Sales”
},
{
“CampaignID”: 111
“CampaignName”: “ABC”,
“SubcampaignID”: 999,
“SubcampaignName”: “Support”
}
]
}
Fail:
{ “Status”: “ false”,
“Message”:”as above.”,
“Error”: “as above”
}