Get Port Order information
Method
Path
port_orders/ID
where ID is the ID number of the fax
Request Parameters
None
Response
A JSON object with success
, message
, and data
attributes.
The data attribute holds a Port Order Object.
Sample Call
curl -u 'API_KEY:API_SECRET' https://api.paxio.com/v2.1/port_orders/1234
Sample Response
{
"success": true,
"message": "Retrieved port order",
"data": {
"id": 1234,
"contact_number": "+15551231234",
"contact_email": "alice@acme.com",
"account_identifier": "1234567",
"name_on_account": "Alice Acme",
"name_of_business": "Acme",
"provider_name": "Example Provider",
"port_type": "business",
"port_out_pin": "1234",
"billing_number": "+15551231234",
"billing_address1": "123 Test St.",
"billing_address2": null,
"billing_city": "Test City",
"billing_state": "IL",
"billing_zip": 12345,
"esig": "Alice Acme",
"status": "open",
"quantity": 1,
"created_at": "2021-07-07T18:56:04.590+00:00",
"updated_at": "2021-07-07T18:56:04.590+00:00",
"completed_at": null,
"requested_for": null,
"bill_received_at": null,
"port_numbers" [
{
"id": 1234,
"port_number": "+15551112222",
"status": "open"
},
{
"id": 5678,
"port_number": "+15553334444",
"status": "open"
}
]
}
}