Skip to main content

List allowed FOC dates

GET 
/porting_orders/:id/allowed_foc_windows

Returns a list of allowed FOC dates for a porting order.

Request

Path Parameters

    id uuidrequired

    Porting Order id

Responses

200: Successful response

401: Unauthorized

Request samples


curl -L 'https://api.telnyx.com/v2/porting_orders/:id/allowed_foc_windows' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'

Response samples


{
"data": [
{
"started_at": "2021-03-19T10:07:15.527Z",
"ended_at": "2021-03-19T10:07:15.527Z",
"record_type": "porting_order"
}
],
"meta": {
"total_pages": 3,
"total_results": 55,
"page_number": 2,
"page_size": 25
}
}