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 -v https://api.leadconduit.com/prequal?api_key=limitedapikey&campaign_id%5B%5D=000qxm170&campaign_id%5B%5D=000qxm171&source_id=000src123 | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Type: application/json; charset=utf-8 | |
["000qxm170"] |
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 -v -X GET https://api.leadconduit.com/campaigns/ABCDEFGHI/fields?api_key=limitedorfullapikey | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Type: application/json; charset=utf-8 | |
{"count":3, | |
"items":[{"name":"email", | |
"label":"What is your email address?", | |
"description":"The prospect's email address", |
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 -v -X GET https://api.leadconduit.com/campaigns/ABCDEFGHI/fields?api_key=limitedorfullapikey | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Type: application/json; charset=utf-8 | |
{"count":3, | |
"items":[{"name":"email", | |
"label":"What is your email address?", | |
"description":"The prospect's email address", |
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 -v -X GET https://api.leadconduit.com/campaigns/ABCDEFGHI/fields?api_key=limitedorfullapikey | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Type: application/json; charset=utf-8 | |
{"count":3, | |
"items":[{"name":"email", | |
"label":"What is your email address?", | |
"description":"The prospect's email address", |
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 -v -X GET https://api.leadconduit.com/stats/financial/today?source_id=987654321&api_key=fullapikey` | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Type: application/json; charset=utf-8 | |
{"count": 2, | |
"items":[ | |
{"campaign":"Your campaign", | |
"campaign_id":"123456789", |
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 -v -X GET https://api.leadconduit.com/stats/leads?campaign_id=000qxm169&start=2009-03-04&end=2009-03-04&api_key=fullapikey | |
HTTP/1.1 200 OK | |
Connection: close | |
Content-Type: application/json; charset=utf-8 | |
{"id":"011c5g8ch", | |
"campaign_id":"000qxm169", | |
"campaign_name":"Widgets Offer", | |
"recipient_id":"e55369", | |
"source_id":"000e7hs65", |
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 -v -X POST https://api.leadconduit.com/leads/myleadid/delete -d"api_key=fullapikey" | |
HTTP/1.1 200 OK | |
Content-Type: application/json; charset=utf-8 | |
{"result":"deleted"} |
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 -v -X POST https://api.leadconduit.com/leads/myleadid/reject -d"api_key=fullapikey" -d"reason=bad+email" | |
HTTP/1.1 202 Accepted | |
Content-Type: application/json; charset=utf-8 | |
{"result":"lead has been rejected"} |
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 -v -X POST https://api.leadconduit.com/leads/myleadid/rollback_reject -d"api_key=fullapikey" | |
HTTP/1.1 202 Accepted | |
Content-Type: application/json; charset=utf-8 | |
{"result":"lead is no longer rejected"} |
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 -v -X POST https://api.leadconduit.com/leads/myleadid/return -d"api_key=fullapikey" -d"reason=phone+disconnected" | |
HTTP/1.1 200 OK | |
Content-Type: application/json; charset=utf-8 | |
{"result":"lead has been returned"} |