Skip to main content
GET
/
porting_orders
/
{id}
JavaScript
import Telnyx from 'telnyx';

const client = new Telnyx({
  apiKey: 'My API Key',
});

const portingOrder = await client.portingOrders.retrieve('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e');

console.log(portingOrder.data);
{
  "data": {
    "id": "f1486bae-f067-460c-ad43-73a92848f902",
    "customer_reference": "Acct 123abc",
    "customer_group_reference": "Group-456",
    "created_at": "2021-03-19T10:07:15.527Z",
    "updated_at": "2021-03-19T10:07:15.527Z",
    "status": {
      "details": [
        {
          "code": "ENTITY_NAME_MISMATCH",
          "description": "Entity name does not match that on the CSR"
        }
      ],
      "value": "ported"
    },
    "support_key": "sr_123abc",
    "parent_support_key": "pr_123abc",
    "porting_phone_numbers_count": 1,
    "old_service_provider_ocn": "Unreal Communications",
    "documents": {
      "loa": "64ffb720-04c7-455b-92d6-20fcca92e935",
      "invoice": "ce74b771-d23d-4960-81ec-8741b3862146"
    },
    "misc": {
      "type": "full",
      "remaining_numbers_action": "disconnect",
      "new_billing_phone_number": "<string>"
    },
    "end_user": {
      "admin": {
        "entity_name": "Porter McPortersen",
        "auth_person_name": "Porter McPortersen II",
        "billing_phone_number": 13035551234,
        "account_number": "123abc",
        "tax_identifier": "1234abcd",
        "pin_passcode": 1234,
        "business_identifier": "abc123"
      },
      "location": {
        "street_address": "600 Congress Avenue",
        "extended_address": "14th Floor",
        "locality": "Austin",
        "administrative_area": "TX",
        "postal_code": "78701",
        "country_code": "US"
      }
    },
    "activation_settings": {
      "foc_datetime_requested": "2021-03-19T10:07:15.527Z",
      "foc_datetime_actual": "2021-03-19T10:07:15.527Z",
      "fast_port_eligible": true,
      "activation_status": "Active"
    },
    "phone_number_configuration": {
      "billing_group_id": "f1486bae-f067-460c-ad43-73a92848f902",
      "connection_id": "f1486bae-f067-460c-ad43-73a92848f902",
      "messaging_profile_id": "f1486bae-f067-460c-ad43-73a92848f901",
      "emergency_address_id": "f1486bae-f067-460c-ad43-73a92848f902",
      "tags": [
        "abc",
        "123"
      ]
    },
    "phone_number_type": "local",
    "description": "FP Telnyx",
    "requirements": [
      {
        "field_type": "document",
        "field_value": "9787fb5f-cbe5-4de4-b765-3303774ee9fe",
        "requirement_type_id": "59b0762a-b274-4f76-ac32-4d5cf0272e66",
        "record_type": "porting_requirement"
      }
    ],
    "requirements_met": false,
    "user_feedback": {
      "user_rating": 5,
      "user_comment": "I loved my experience porting numbers with Telnyx"
    },
    "user_id": "40d68ba2-0847-4df2-be9c-b0e0cb673e75",
    "webhook_url": "https://example.com/porting_webhooks",
    "record_type": "porting_order",
    "messaging": {
      "messaging_capable": true,
      "enable_messaging": true,
      "messaging_port_status": "pending",
      "messaging_port_completed": false
    },
    "additional_steps": [
      "associated_phone_numbers"
    ]
  },
  "meta": {
    "phone_numbers_url": "/v2/porting_phone_numbers?filter[porting_order_id]=eef10fb8-f3df-4c67-97c5-e18179723222"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

Porting Order id

Query Parameters

include_phone_numbers
boolean
default:true

Include the first 50 phone number objects in the results

Response

Successful response

data
object
meta
object