v52

OpenAPI 3.1.0raw.githubusercontent.com2026-07-311,1941,9384.1 MB
Porting Orders

Update a porting activation job

Updates the activation time of a porting activation job.

patch/porting_orders/{id}/activation_jobs/{activationJobId}

Path parameters

idstring uuid required

Porting Order id

activationJobIdstring uuid required

Activation Job Identifier

Request body

activate_atstring date-time

The desired activation time. The activation time should be between any of the activation windows.

Example request

{
  "activate_at": "2019-01-01T00:00:00Z"
}

Response

Successful response

Example response

{
  "data": {
    "activate_at": "2021-03-19T10:07:15.527Z",
    "activation_windows": [
      {
        "end_at": "2021-03-19T10:07:15.527Z",
        "start_at": "2021-03-19T10:07:15.527Z"
      }
    ],
    "created_at": "2021-03-19T10:07:15.527Z",
    "id": "f1486bae-f067-460c-ad43-73a92848f902",
    "record_type": "porting_activation_job",
    "updated_at": "2021-03-19T10:07:15.527Z"
  }
}