Skip to main content
PATCH
/
api
/
v2
/
lead-lists
/
{id}
Patch lead list
curl --request PATCH \
  --url https://api.instantly.ai/api/v2/lead-lists/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "has_enrichment_task": false,
  "owned_by": "019d9c5f-965a-7483-a46c-aaf7b9fbc2fc",
  "name": "My Lead List"
}
'
{
  "id": "019d9c5f-965a-7483-a46c-aaf55c7c3b5d",
  "organization_id": "019d9c5f-965a-7483-a46c-aaf6badc58f2",
  "name": "My Lead List",
  "timestamp_created": "2026-04-17T16:56:43.354Z",
  "has_enrichment_task": false,
  "owned_by": "019d9c5f-965a-7483-a46c-aaf7b9fbc2fc"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

The ID of the item to update

Example:

"019d9c5f-ccd4-7316-900d-9d5d9db2abcf"

Body

application/json
has_enrichment_task
boolean | null

Whether this list runs the enrichment process on every added lead or not

Example:

false

owned_by
string<uuid> | null

User ID of the owner of this lead list. Defaults to the user that created the list

Example:

"019d9c5f-965a-7483-a46c-aaf7b9fbc2fc"

name
string

Name of the lead list

Example:

"My Lead List"

Response

The updated Lead List

A list used to store leads

id
string<uuid>
required

Unique identifier for the lead list

Example:

"019d9c5f-965a-7483-a46c-aaf55c7c3b5d"

organization_id
string<uuid>
required

Organization ID that owns this lead list

Example:

"019d9c5f-965a-7483-a46c-aaf6badc58f2"

name
string
required

Name of the lead list

Example:

"My Lead List"

timestamp_created
string<date-time>
required

Timestamp when the lead list was created

Example:

"2026-04-17T16:56:43.354Z"

has_enrichment_task
null | boolean

Whether this list runs the enrichment process on every added lead or not

Example:

false

owned_by
null | string<uuid>

User ID of the owner of this lead list. Defaults to the user that created the list

Example:

"019d9c5f-965a-7483-a46c-aaf7b9fbc2fc"