Delete a Wireless Blocklist
DELETE/wireless_blocklists/:id
Deletes the Wireless Blocklist.
Request
Path Parameters
id uuidrequired
Identifies the wireless blocklist.
Responses
200: Successful Response
- application/json
404: Resource not found
- application/json
default: Unexpected error
- application/json
Request samples
curl -L -X DELETE 'https://api.telnyx.com/v2/wireless_blocklists/:id' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Response samples
{
"data": {
"id": "6a09cdc3-8948-47f0-aa62-74ac943d6c58",
"record_type": "wireless_blocklist",
"created_at": "2018-02-02T22:25:27.521Z",
"updated_at": "2018-02-02T22:25:27.521Z",
"name": "My wireless blocklist.",
"type": "country",
"values": [
"CA",
"MX",
"US"
]
}
}
{
"code": "string",
"title": "string",
"detail": "string",
"source": {
"pointer": "string",
"parameter": "string"
},
"meta": {}
}
{
"errors": [
{
"code": "string",
"title": "string",
"detail": "string",
"source": {
"pointer": "string",
"parameter": "string"
},
"meta": {}
}
]
}