Skip to main content

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 type
  • channel (string) - Marketing channel
  • campaign (string) - Campaign name
  • city (string) - Lead city
  • state (string) - Lead state
  • firstName (string) - Lead first name
  • lastName (string) - Lead last name
  • phoneNumber (string) - Lead phone number
  • email (string) - Lead email address
  • sourceDescription (string) - Description of lead source
  • isCmaRequest (boolean) - CMA request status
  • notes (string) - Additional notes
  • cmaAddress (string) - CMA address if applicable
  • cmaNotes (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": ""
}
]