v1

latestOpenAPI 3.0.12026-07-22120163333.7 KB
Team Features

List Lead Pipelines

Returns a page of lead pipeline entries defined on the caller's team. Use the returned lead pipeline IDs when assigning or filtering leads.

Notes:

  • currPage is zero-based.
  • Pass a non-empty name to filter lead pipeline entries by a name substring; omit it to list all.
  • _metadata.total reflects the full result size before pagination.
get/v1.0/teamFeatures/lead-pipelines

Query parameters

namestring

Optional lead pipeline name filter (substring match). Defaults to empty.

currPageinteger

Zero-based page index.

pageSizeinteger

Number of entries to return per page.

Headers

Authorizationstring required

Bearer [access_token]

Response

Page of lead pipeline entries with pagination metadata.

Example response

{
  "get_metadata": {
    "collection": "note",
    "limit": 10,
    "total": 50
  },
  "pipelines": [
    {
      "id": 100234,
      "name": "Active"
    }
  ]
}