Skip to main content
Infrastructure/Change Management
GETChangeManagementSince 1.0SynchronousAuth Required

GetChangeRequest

Retrieve a single change request by its ID

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Path Parameters

Request Inputs

Path Parameters

  • crIdStringRequired

    ID of the change request to retrieve

Responses

200 OK

On success, this API returns the following response structure.

  • idString

    Unique identifier of the change request

    Example: cr-a1b2c3d4-e5f6-7890-abcd-ef1234567890

  • titleString

    Short summary title of the change request

    Example: Upgrade database cluster to v14

  • descriptionString

    Detailed description of the change and its expected impact

    Example: Rolling upgrade of PostgreSQL from v13 to v14 with no downtime

  • changeTypeString

    Change type

    Example: CHANGE_TYPE_UNSPECIFIED

  • statusString

    Status for this resource

    Example: CHANGE_STATUS_UNSPECIFIED

  • plannedStartString

    Planned start

    Example: 2026-01-15T08:00:00Z

  • plannedEndString

    Planned end

    Example: 2026-01-15T08:00:00Z

  • impactScopeObject

    Impact scope

    • entityTypeString

      Resource type affected by this change, e.g. VmInstance or Network

      Example: VmInstance

    • entityIdsList

      Entity ids

      Example: item1,item2

  • expectedAlertsList

    Expected alerts

    Example: item1,item2

  • changeOwnerString

    Username or ID of the person responsible for this change

    Example: admin

  • approverIdsList

    Approver ids

    Example: item1,item2

  • silenceIdString

    ID of the alert silence associated with this change window

    Example: silence-abc123

  • createdAtString

    Created at

    Example: 2026-01-15T08:00:00Z

Endpoint

GET/api/v1/change-management/change-requests/{crId}

/api/v1/change-management/change-requests/{crId}

Operation ID

GetChangeRequest

Permalink

Request Example

curl -X GET '{host}/api/v1/change-management/change-requests/{crId}' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "id": "cr-a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "title": "Upgrade database cluster to v14",
  "description": "Rolling upgrade of PostgreSQL from v13 to v14 with no downtime",
  "changeType": {},
  "status": {},
  "plannedStart": "example",
  "plannedEnd": "example",
  "impactScope": {}
}

Change History

This API has no change history records yet.

View all change history