List port-out rejections
GET/portout/rejections
List the predefined port-out rejections
Request
Query Parameters
filter[code] integer
Filter rejections of a specific code
filter[code][in] integer[]
Filter rejections in a list of codes
Responses
200: Successful response
- application/json
422: Unprocessable entity. Check message field in response for details.
500: Internal server error
Request samples
curl -L 'https://api.telnyx.com/v2/portout/rejections' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Response samples
{
"data": [
{
"code": 1002,
"description": "Invalid PIN",
"reason_required": false
}
]
}