Lead Lists
Create Lead List
Creates a new lead list for organizing prospecting leads
POST
Creates a new lead list for organizing and managing sales prospecting leads. The authenticated user is automatically granted access to the newly created lead list.
Authentication
This endpoint requires authentication. The user must be signed in to create lead lists.The creating user is automatically added to the
userIds array, granting them
access to the lead list.Request
The display name for the lead list. Should be descriptive of the campaign or
target audience.
The type of leads this list will contain. Must be one of: -
"person" - For
individual contact leads (default) - "company" - For company/organization
leadsThe ID of the Ideal Customer Profile (ICP) to associate with this lead list.
Pass
null if not linking to an ICP.ISO 8601 date string indicating when the lead list campaign starts.
ISO 8601 date string indicating when the lead list campaign ends.
Array of person/lead IDs to include in the list. Used when
type is
"person".Array of company UUIDs to include in the list. Used when
type is
"company". Defaults to an empty array.Request Examples
Response
Returns the created lead list object with server-generated fields.Unique identifier for the newly created lead list.
The ID of the associated Ideal Customer Profile.
The display name of the lead list.
The type of leads in this list (
"person" or "company").ISO 8601 timestamp for the campaign start date.
ISO 8601 timestamp for the campaign end date.
Array of person/lead IDs in the list.
Array of company UUIDs in the list.
Array of user IDs with access (includes the creator).
ISO 8601 timestamp of when the lead list was created.
ISO 8601 timestamp of when the lead list was last updated.
Response Examples
Error Codes
| Status Code | Error Code | Description |
|---|---|---|
| 400 | BAD_REQUEST | Request body validation failed. Check the details field for specific issues. |
| 401 | UNAUTHORIZED | User is not authenticated. Ensure a valid session exists. |
| 500 | INTERNAL_ERROR | An unexpected server error occurred. |