Zapier List
GET
https://app.pipelineprotools.com/api/extern/zapier/list
Returns sample lead data for Zapier integration testing and configuration.
Query Parameters
None required.
Request Body
None required.
Response
Returns a JSON array of lead objects with the following fields:
source(string) - Lead source typechannel(string) - Marketing channelcampaign(string) - Campaign namecity(string) - Lead citystate(string) - Lead statefirstName(string) - Lead first namelastName(string) - Lead last namephoneNumber(string) - Lead phone numberemail(string) - Lead email addresssourceDescription(string) - Description of lead sourceisCmaRequest(boolean) - CMA request statusnotes(string) - Additional notescmaAddress(string) - CMA address if applicablecmaNotes(string) - CMA-specific notes
Status Codes
200- Success with test data
Example Request
curl -X GET "https://app.pipelineprotools.com/api/extern/zapier/list"
Sample Response
[
{
"source": "web",
"channel": "campaign for 323 Whitney Drive",
"campaign": "323 Whitney Drive",
"city": "Austin",
"state": "Texas",
"firstName": "John",
"lastName": "Smith",
"phoneNumber": "+110001234567",
"email": "mail@mail.com",
"sourceDescription": "listing website for 323 Whitney Drive",
"isCmaRequest": false,
"notes": "",
"cmaAddress": "",
"cmaNotes": ""
}
]