Infrastructure/Change Management
POSTChangeManagementSince 1.0SynchronousAuth Required
CreateChangeRequest
Create a new change request with planned schedule and impact scope
Execution Availability
Try It Out
Submit a mock request using the current auth context and example-driven inputs.
Request Inputs
Body Fields
titleStringRequiredShort summary title for the new change request
Example: Upgrade database cluster to v14
descriptionStringRequiredDetailed description of the change and its expected outcome
Example: Rolling upgrade of PostgreSQL from v13 to v14 with no downtime
changeTypeStringRequiredChange type
Example: CHANGE_TYPE_UNSPECIFIED
plannedStartStringRequiredPlanned start
Example: 2026-01-15T08:00:00Z
plannedEndStringRequiredPlanned end
Example: 2026-01-15T08:00:00Z
Responses
Endpoint
POST/api/v1/change-management/change-requests
/api/v1/change-management/change-requests
Request Example
curl -X POST '{host}/api/v1/change-management/change-requests' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{"title":"Upgrade database cluster to v14","description":"Rolling upgrade of PostgreSQL from v13 to v14 with no downtime","changeType":"CHANGE_TYPE_UNSPECIFIED","plannedStart":"2026-01-15T08:00:00Z","plannedEnd":"2026-01-15T08:00:00Z","impactScope":{"entityType":"VmInstance","entityIds":"item1,item2"},"expectedAlerts":"item1,item2","changeOwner":"admin","approverIds":"item1,item2"}'
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.
