Skip to main content
POST
/
api
/
v2
/
leads
/
update-interest-status
Update the interest status of a lead
curl --request POST \
  --url https://api.instantly.ai/api/v2/leads/update-interest-status \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "lead_email": "test@test.com",
  "interest_value": 1
}
'
{
  "message": "Lead interest status update background job submitted"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
lead_email
string
required

The email of the lead to update the interest status of.

Example:

"test@test.com"

interest_value
number | null
required

Set this field to "null" to reset the lead value to "Lead". This is the same as moving the lead to the "Lead" status in the web app. Please check the lt_interest_status field for the list of possible values.

Example:

1

campaign_id
string

The ID of the campaign to update the interest status of.

Example:

"019cc043-e398-7985-aef5-99101bec3adf"

ai_interest_value
number

The AI interest value to set for the lead.

Example:

1

disable_auto_interest
boolean

Whether to disable the auto interest.

Example:

true

list_id
string

The ID of the list to update the interest status of.

Example:

"019cc043-e398-7985-aef5-991106989015"

Response

Default Response

message
string
Example:

"Lead interest status update background job submitted"