Get all possible wireless blocklist values
GET/wireless_blocklist_values
Retrieve all wireless blocklist values for a given blocklist type.
Request
Query Parameters
type stringrequired
Possible values: [country
, mcc
, plmn
]
The Wireless Blocklist type for which to list possible values (e.g., country
, mcc
, plmn
).
Responses
200: A list of possible wireless blocklist values
- application/json
404: Resource not found
- application/json
default: Unexpected error
- application/json
Request samples
curl -L 'https://api.telnyx.com/v2/wireless_blocklist_values' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Response samples
{
"data": [
null
],
"meta": {
"total_pages": 3,
"total_results": 55,
"page_number": 2,
"page_size": 25
}
}
{
"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": {}
}
]
}