Skip to main content

List allowed FOC dates

GET 
/origination/porting/port_requests/:port_request_id/sub_requests/:id/allowed_foc_dates

Returns a list of allowed FOC dates for a sub request.

Request

Path Parameters

    port_request_id stringrequired

    Port Request id

    id stringrequired

    Sub Request id

Responses

200: Allowed FOC dates

401: Unauthorized

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

Request samples


curl -L 'https://api.telnyx.com/origination/porting/port_requests/:port_request_id/sub_requests/:id/allowed_foc_dates' \
-H 'Accept: application/json'

Response samples


[
{
"start": "string",
"end": "string"
}
]