Skip to content

Removes a phone number from the blacklist

Method delete.phone_number_from_blacklist
Description Removes a phone number from the blacklist
Who has access Agents and clients

Request parameters

Name Type Required Description
access_token string yes Session key used to authenticate the request
user_id number no Unique ID of the client user on whose behalf the request is made. Required when an agent makes the request. To retrieve a list of client users, call "get.customer_users".
id number yes Unique ID of the blacklist entry to delete

Example request

{
    "jsonrpc": "2.0",
    "id": "number",
    "method": "delete.phone_number_from_blacklist",
    "params": {
        "access_token": "string",
        "user_id": "number",
        "id": "number"
    }
}

Example response

{
    "jsonrpc": "2.0",
    "id": "number",
    "result": {
        "metadata": {},
        "data": {}
    }
}

List of returned errors

See the "List of errors for delete methods" section.