🚀 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 calls
curl --request DELETE \
--url https://api.nlpearl.ai/v1/Call \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"callIds": [
"<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 request object containing the list of call IDs to be deleted.
Represents the request object used to delete one or more calls.
The list of unique call IDs to delete.
Returns a boolean indicating if the deletion was successful.
The response is of type boolean.
curl --request DELETE \
--url https://api.nlpearl.ai/v1/Call \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"callIds": [
"<string>"
]
}
'true