This module has been designed to get campaign list by organization ID. The Service URL of the module is given by the following link-
https://www.enterice.com/external/icedataapi/api/chat/get_campaign
- Json Formats-
- Code snippet for Web Service API-
GET_CAMPAIGN {
“Token”: “34gdf6754y3444”,
“OrgID”: “11”
}
2. Description for Request Parameter-
Request Parameters |
Notes |
||
Token | string | Authentication Token | |
OrgID | integer | Organization ID |
3. Response Example-
Success:
{
“CampaignData”: [
{
“CampaignID”: 111
“CampaignName”: “ABC”
},
{
“CampaignID”: 222
“CampaignName”: “XYZ”
}
]
}
Fail:
{ “Status”: “ false”,
“Message”:”as above.”,
“Error”: “as above”
}