Skip to main content

List all draft port requests

GET 
/origination/porting/draft_port_requests

Returns a list of your draft port requests.

Request

Query Parameters

    page integer

    Default value: 1

    Page number of results to load

    per_page integer

    Default value: 20

    Number of results per page

    search string

    Filter results by partial phone number

    status string

    Possible values: [pending, submitted]

    Filter results by status

    include_phone_numbers boolean

    Default value: true

    Include phone number objects in the results

    include_sub_requests boolean

    Include sub request objects in the results

Responses

200: Draft Port Requests Response

Response Headers

  • Total

    integer

    Total number of results

  • Total-Pages

    integer

    Total number of pages

401: Unauthorized

422: Unprocessable entity. Check message field in response for details.

Request samples


curl -L 'https://api.telnyx.com/origination/porting/draft_port_requests' \
-H 'Accept: application/json'

Response samples


[
{
"id": "string",
"created_at": "string",
"status": "pending",
"phone_number_count": 0,
"phone_numbers": [
{
"phone_number": "string",
"svtype": "string",
"carrier_name": "string",
"coverage_category": "nanp_generic",
"sub_request_id": "string",
"portability_status": "pending"
}
],
"sub_requests": [
{
"id": "string",
"complete": true,
"phone_numbers": [
{
"phone_number": "string",
"svtype": "string",
"carrier_name": "string",
"coverage_category": "nanp_generic",
"sub_request_id": "string",
"portability_status": "pending"
}
],
"foc_date_requested_by_user": "string",
"phone_number_count": 0,
"underlying_carrier_names": [
"string"
],
"person_or_company_name": "string",
"auth_person_name": "string",
"billing_phone_number": "string",
"street_address": "string",
"extended_address": "string",
"locality": "string",
"administrative_area": "string",
"postal_code": "string",
"country_code": "string",
"created_at": "string",
"default_connection_id": "string",
"default_message_profile_id": "string",
"porting_option": {
"type": "partial",
"remaining_numbers_action": "keep",
"new_billing_phone_number": "string"
},
"pin_passcode": "string",
"account_number": "string",
"description": "string",
"tax_identifier": "string",
"business_identifier": "string"
}
],
"port_request_id": "string"
}
]