This module functions to publish the email web form. The Service URL of the module is given by the following link-
https://www.enterice.com/ICEAPI/api/EmailAdmin/PublishEmailForm
•Allowed for-
Admin
•Json Formats-
1. Code snippet for Web Service Use-
PublishEmailForm
{
“EmailWebFormId”: 654,
“Token”: “eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJvcmdpZCI6MTI4LCJ1c2VybmFtZSI6ImFkbWluQHRlc3QuY29tIiwiZXhwIjoxNDgyMjQ4NjEyfQ.QPFE4_KVrbVPcGauASfjyWrABIF_vVs9ENf4qPYYHB0”
}
2. Description for Request Parameters-
S.No | Name | Type | Description |
1 | Token | String | Authentication Token |
2 | EmailWebFormId | Int | Id of email web form |
3. Response Example-
Success:
{
“Message”: “Success”,
“Script”: “<script type=’text/javascript’> var iwf; function ls(url, cb) { var script = document.createElement(\”script\”); script.setAttribute(‘type’, ‘text/javascript’); if (script.readyState) { script.onreadystatechange = function() { if (script.readyState == \”loaded\” || script.readyState == \”complete\”) { script.onreadystatechange = null; cb(); } }; } else { script.onload = function() { cb(); }; } script.setAttribute(‘src’, ” + url + ”); var c = document.getElementsByTagName(\”script\”)[0];c.parentNode.insertBefore(script, c); } ls(‘https:’ == document.location.protocol ? ‘https://www.enterice.com/enterice/js/ICEWebFormUnique.js’ : ‘http://www.enterice.com/enterice/js/ICEWebFormUnique.js’, function() { iwf=new iwf(); iwf.uk=”; /*Please provide your callback function name to get back ticket number from ICE*/ iwf.clb = null; iwf.bs(‘www.enterice.com/enterice/’,iwf,’iwf’); }); </script><!–Please copy below button in to your page at your desire location or replace existing button with below button or just copy click event from our button and paste it to your button code. –><input type=’button’ name=’button’ value=’Submit’ onclick=’iwf.sq();’ />”
}
Fail:
{“Message”:”The request is invalid.”}