A user can use this module to get control list for email web form. The Service URL for the module is shown by the following link-
https://www.enterice.com/ICEAPI/api/EmailAdmin/GetEmailFormControlList
•Allowed for-
Admin
•Json Formats-
1. Code snippet for Web Service Use-
GetEmailFormControlList
{
“EmailWebFormId”: 202,
“Token”: “eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJvcmdpZCI6MTI4LCJ1c2VybmFtZSI6ImFkbWluQHRlc3QuY29tIiwiZXhwIjoxNDgyMjQ4NjEyfQ.QPFE4_KVrbVPcGauASfjyWrABIF_vVs9ENf4qPYYHB0”
}
2. Description for Request Parameters-
S.No | Name | Type | Description |
1 | Token | String | Authetication Token |
2 | EmailWebFormId | Int | Id of email web form |
3. Response Example-
Success:
{ “Message”: ” Success”,
“ControlList”:[
{
” ControlId “:1,
” ControlTypeId “:1,
“ControlTypeName”:”textbox”,
” ControlLabel”: “Name”,
” ControlName “:”txtName”
},
{
” ControlId “:2,
” ControlTypeId “:1,
“ControlTypeName”:”textbox”,
” ControlLabel”: “Email”,
” ControlName “:”txtEmail”
}
]
}
Fail:
{“Message”:”The request is invalid.”}