Retrieve bulk update status
GET/messaging_numbers_bulk_updates/:order_id
Retrieve bulk update status
Request
Path Parameters
order_id stringrequired
Order ID to verify bulk update status.
Responses
200: Successful response with details about messaging bulk update phone numbers.
- application/json
default: Unexpected error
- application/json
Request samples
curl -L 'https://api.telnyx.com/v2/messaging_numbers_bulk_updates/:order_id' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Response samples
{
"data": {
"record_type": "messaging_numbers_bulk_update",
"order_id": "00000000-0000-0000-0000-000000000000",
"success": [
"+18880000000",
"+18880000001",
"+18880000002"
],
"pending": [],
"failed": []
}
}
{
"errors": [
{
"code": "string",
"title": "string",
"detail": "string",
"source": {
"pointer": "string",
"parameter": "string"
},
"meta": {}
}
]
}