🚀 API 2.0 is now live! See our API Reference for details.
🚀 API 2.0 is now live! See our API Reference for details.
Deletes one or more leads associated with a specific outbound campaign.
curl --request DELETE \
--url https://api.nlpearl.ai/v1/Outbound/{outboundId}/Leads \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"leadIds": [
"<string>"
]
}
'trueDocumentation Index
Fetch the complete documentation index at: https://developers.nlpearl.ai/llms.txt
Use this file to discover all available pages before exploring further.
Specify the authorization token.
For more information, check out the Authorization Guide.
The unique identifier of the outbound campaign from which the leads should be deleted.
The request object containing the list of lead IDs to be deleted.
Represents the request object for deleting one or more leads associated with an outbound campaign.
A list of lead IDs to be deleted.
Returns a boolean indicating if the deletion was successful.
The response is of type boolean.
curl --request DELETE \
--url https://api.nlpearl.ai/v1/Outbound/{outboundId}/Leads \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"leadIds": [
"<string>"
]
}
'true