Get the count of pending upload requests
GET/external_connections/:id/uploads/status
Returns the count of all pending upload requests for the given external connection.
Request
Path Parameters
id int64required
Identifies the resource.
Responses
200: Successful response
- application/json
401: Unauthorized
404: Not found
Request samples
curl -L 'https://api.telnyx.com/v2/external_connections/:id/uploads/status' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Response samples
{
"data": {
"pending_numbers_count": 0,
"pending_orders_count": 0
}
}