POST
/
lead-lists
/
{id}
/
leads
Add Leads to the Lead List
curl --request POST \
  --url https://api.amplemarket.com/lead-lists/{id}/leads \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "type": "linkedin",
  "leads": [
    {
      "linkedin_url": "<string>",
      "email": "jsmith@example.com",
      "title": "<string>",
      "company_name": "<string>",
      "company_domain": "<string>"
    }
  ]
}'
{
"total": 1,
"total_added_to_lead_list": 1
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Lead List id

Body

application/json

Leads to add to the list

The body is of type object.

Response

202
application/json

Lead List Leads accepted

The response is of type object.