The module has been designed to get list of controls for email web form. The Service URL of the module is shown by the following link-
https://www.enterice.com/ICEAPI/api/EmailAdmin/GetConrtolList
•Allowed for-
Admin
•Json Formats-
1. Code snippet for Web Service Use-
GetConrtolList
{
“Token”: “eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJvcmdpZCI6MTI4LCJ1c2VybmFtZSI6ImFkbWluQHRlc3QuY29tIiwiZXhwIjoxNDgyMjQ4NjEyfQ.QPFE4_KVrbVPcGauASfjyWrABIF_vVs9ENf4qPYYHB0”
}
2. Description for Request Parameter-
S.No | Name | Type | Description |
1 | Token | String | Authentication Token |
3. Response Example-
Success:
{
“Message”: “Success”,
“ControlTypeList”: [
{
“ControlTypeId”: 1,
“ControlType”: “Textbox”
},
{
“ControlTypeId”: 2,
“ControlType”: “Textarea”
},
{
“ControlTypeId”: 3,
“ControlType”: “Radio”
},
{
“ControlTypeId”: 4,
“ControlType”: “Checkbox”
},
{
“ControlTypeId”: 5,
“ControlType”: “Dropdown”
},
{
“ControlTypeId”: 6,
“ControlType”: “Radio (side by side)”
}
]
}
Fail:
{“Message”:”The request is invalid.”}