Skip to main content

List Leads

GET 

/crm/leads

List leads based on a given criteria

Request

Query Parameters

    credentialId stringrequired

    The ID of the credential.

    pageNumber string

    The page number of the results. Default is 1.

    pageSize int32

    The maximum number of results to show on a page. Default is 50. Maximum is 100.

    leadOwner string

    Filter leads by the exact name of the lead owner.

    leadOwnerContains string

    Filter leads where the lead owner's name contains the specified string.

    leadOwnerNotEquals string

    leadOwnerNotEquals

    leadSource string

    Filter leads by their exact source (e.g., inbound, outbound, referral).

    leadSourceContains string

    Filter leads where the source contains the specified string.

    leadSourceNotEquals string

    Filter leads where the source is not the specified string.

    leadTitle string

    Filter leads by their exact title or job role.

    leadTitleContains string

    Filter leads where the title contains the specified string.

    company string

    Filter leads by the exact name of the associated company.

    companyContains string

    Filter leads where the company name contains the specified string.

    companyNotEquals string

    Filter leads where the company name is not the specified string.

    firstName string

    Filter contacts by the exact first name.

    leadTitleNotEquals string

    Filter leads where the title is not the specified string.

    firstNameContains string

    Filter contacts whose first name contains the specified string.

    firstNameNotEquals string

    Filter contacts whose first name is not the specified string.

    lastName string

    Filter contacts by the exact last name.

    lastNameContains string

    Filter contacts whose last name contains the specified string.

    lastNameNotEquals string

    Filter contacts whose last name is not the specified string.

    remoteCreatedAtMin date

    Filter objects created in the third-party application after a specified date.

    remoteCreatedAtMax date

    Filter objects created in the third-party application before a specified date.

    remoteUpdatedAtMin date

    Filter objects last updated in the third-party application after a specified date.

    remoteUpdatedAtMax date

    Filter objects last updated in the third-party application before a specified date.

    createdAtMin date

    Filter objects created after a specified date.

    createdAtMax date

    Filter objects created before a specified date.

    updatedAtMin date

    Filter objects last updated after a specified date.

    updatedAtMax date

    Filter objects last updated before a specified date.

Header Parameters

    Authorization stringrequired

    Default value: bearer YOUR_API_KEY

Responses

200

Schema

    leads

    object[]

  • Array [

  • remoteId string
    leadOwner string
    leadSource string
    leadTitle string
    company string
    firstName string
    lastName string

    addresses

    object[]

  • Array [

  • country string
    street1 string
    state string
    city string
    addressType string
  • ]

  • emailAddresses

    object[]

  • Array [

  • emailAddressType string
    emailAddress string
  • ]

  • phoneNumbers

    object[]

  • Array [

  • phoneNumberType string
    phoneNumber string
  • ]

  • id string
    remoteCreatedAt string
    remoteUpdatedAt string
    remoteDeleted boolean

    Default value: true

    createdAt string
    updatedAt string
  • ]

Loading...