The module is designed to get skill list. The Service URL of the module is given by the following link-
https://www.enterice.com/ICEAPI/api/EmailAdmin/GetSkillList
•Allowed for
Admin
•Json Formats-
1. Code snippet for Web Service Use-
GetSkillList
{
“CampaignId”: 428,
“Token”: “eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJvcmdpZCI6MTI4LCJ1c2VybmFtZSI6ImRzYUBnbWFpbC5jb20iLCJleHAiOjE0ODI0MTk1NDV9.XgR8TsDNwmsUezVykeUzGcISUsmpT5Nx-aUYaMScmDw”
}
2. Description for Request Parameters-
S.No | Name | Type | Description |
1 | Token | String | Authentication Token |
2 | CampaignId | Int | Id of campaign |
3. Response Example-
Success:
{
“Message”: “Success”,
“SkillList”: [
{
“CampaignId”: 428,
“SkillId”: 662,
“SkillName”: “Purchase”
},
{
“CampaignId”: 428,
“SkillId”: 663,
“SkillName”: “Sale”
}
]
}
Fail:
{“Message”:”The request is invalid.”}