🚀 API 2.0 is now live! See our API Reference for details.
🚀 API 2.0 is now live! See our API Reference for details.
Retrieves the paginated blacklist phone numbers of the account.
curl --request POST \
--url https://api.nlpearl.ai/v2/Account/Blacklist/Search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"skip": 123,
"limit": 123,
"sortProp": "<string>",
"isAscending": true,
"search": "<string>"
}
'{
"count": 123,
"results": [
{
"phoneNumber": "<string>"
}
]
}Documentation 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.
curl --request POST \
--url https://api.nlpearl.ai/v2/Account/Blacklist/Search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"skip": 123,
"limit": 123,
"sortProp": "<string>",
"isAscending": true,
"search": "<string>"
}
'{
"count": 123,
"results": [
{
"phoneNumber": "<string>"
}
]
}