curl --request POST \
--url https://app.prontohq.com/api/v2/lists \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '{
"name": "<string>",
"webhook_url": "<string>",
"companies": [
{
"name": "Pronto",
"country_code": "FR",
"domain": "prontohq.com",
"linkedin_url": "https://www.linkedin.com/company/prontohq"
},
{
"name": "Google",
"country_code": "US",
"domain": "google.com",
"linkedin_url": "https://www.linkedin.com/company/google"
}
]
}'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"linkedin_list_id": 123
}
Creates a new list in the system.
curl --request POST \
--url https://app.prontohq.com/api/v2/lists \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '{
"name": "<string>",
"webhook_url": "<string>",
"companies": [
{
"name": "Pronto",
"country_code": "FR",
"domain": "prontohq.com",
"linkedin_url": "https://www.linkedin.com/company/prontohq"
},
{
"name": "Google",
"country_code": "US",
"domain": "google.com",
"linkedin_url": "https://www.linkedin.com/company/google"
}
]
}'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"linkedin_list_id": 123
}
Your API key
List object that needs to be added
The body is of type object
.
List created successfully
The response is of type object
.