This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function loadTrustedForm() { | |
// Place the core TrustedForm Script here | |
// You can obtain the core script by signing up at | |
// http://activeprospect.com/products/trustedform/#integrate-tf | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<response> | |
<result>errorinvalid xxCampaignId or xxAccountId or xxSiteId</reason> | |
</response> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<response> | |
<result>queuedsystem is offline </reason> | |
</response> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<response> | |
<result>failure</result> | |
<reason>invalid dob</reason> | |
<leadId>0564nmluy</leadId> | |
<url> | |
<![CDATA[ https://app.leadconduit.com/leads?id=0564nmluy ]]> | |
</url> | |
</response> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<response> | |
<result>success</result> | |
<leadId>0564nm0ni</leadId> | |
<url> | |
<![CDATA[ https://app.leadconduit.com/leads?id=0564nm0ni ]]> | |
</url> | |
</response> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ curl -X DELETE https://app.suppressionlist.com/lists/my_list/items \ | |
-H 'Accept: application/json' \ | |
-H 'Content-Type: application/json' \ | |
-d '{"values":"[email protected]|[email protected]|[email protected]"}' \ | |
-uAPI:fc36c8168cbb16784f6a29f89695dd92 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HTTP/1.1 200 OK | |
Content-Type: application/json; charset=utf-8 | |
{ | |
"deleted": 1 | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ curl -X DELETE https://app.suppressionlist.com/lists/my_list/items \ | |
-H 'Accept: application/json' \ | |
-H 'Content-Type: application/json' \ | |
-d '{"values":"[email protected]"}' \ | |
-uAPI:fc36c8168cbb16784f6a29f89695dd92 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ curl -X POST https://app.suppressionlist.com/lists/my_list/items \ | |
-H 'Accept: application/json' \ | |
-H 'Content-Type: application/json' \ | |
-d '{"values":"[email protected]|[email protected]|[email protected]"}' \ | |
-uAPI:fc36c8168cbb16784f6a29f89695dd92 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HTTP/1.1 200 OK | |
Content-Type: application/json; charset=utf-8 | |
{ | |
"accepted": 1, | |
"rejected": 0 | |
} |