Upload file required for a messaging hosted number order
POST/messaging_hosted_number_orders/:id/actions/file_upload
Upload file required for a messaging hosted number order
Request
Path Parameters
id stringrequired
Identifies the type of resource.
- multipart/form-data
Body
Message payload
loa binary
Must be a signed LOA for the numbers in the order in PDF format.
bill binary
Must be the last month's bill with proof of ownership of all of the numbers in the order in PDF format.
Responses
200: Successful response with details about a messaging hosted number order.
- application/json
default: Unexpected error
- application/json
Request samples
curl -L -X POST 'https://api.telnyx.com/v2/messaging_hosted_number_orders/:id/actions/file_upload' \
-H 'Content-Type: multipart/form-data' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Response samples
{
"data": {
"id": "86f58db9-0fe3-4adc-9d1f-46e66e6e9323",
"record_type": "messaging_hosted_number_order",
"messaging_profile_id": "dc8f39ac-953d-4520-b93b-786ae87db0da",
"status": "pending",
"phone_numbers": [
{
"record_type": "messaging_hosted_number",
"id": "bf6307bd-884d-4c1f-b6ea-c62b8c495d3c",
"phone_number": "+18665550001",
"status": "pending"
},
{
"record_type": "messaging_hosted_number",
"id": "464bd54e-a328-4b11-a131-28e6793cb6f2",
"phone_number": "+18665550002",
"status": "pending"
}
]
}
}
{
"errors": [
{
"code": "string",
"title": "string",
"detail": "string",
"source": {
"pointer": "string",
"parameter": "string"
},
"meta": {}
}
]
}