Retrieve the features for a list of numbers
POST/numbers_features
Retrieve the features for a list of numbers
Request
- application/json
Body
required
phone_numbers phone[]required
Responses
200: Successful response
- application/json
Request samples
curl -L 'https://api.telnyx.com/v2/numbers_features' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
-d '{
"phone_numbers": [
"string"
]
}'
Response samples
{
"data": [
{
"phone_number": "string",
"features": [
"string"
]
}
]
}