v7

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-013764062.2 MB
Change Requests

Retrieves change request configuration for a project

Enterprise feature

Given a projectId, this endpoint will retrieve change request configuration for the project

get/api/admin/projects/{projectId}/change-requests/config

Path parameters

projectIdstring required

Response

changeRequestConfigSchema

environmentstring required

The environment that this configuration applies to.

typestring required

The type of the environment listed in environment.

changeRequestEnabledboolean required

true if this environment has change requests enabled, otherwise false.

requiredApprovalsnumber nullable required

The number of approvals that are required for a change request to be fully approved and ready to be applied in this environment.

Example response

[
  {
    "environment": "my-dev-environment",
    "type": "development",
    "changeRequestEnabled": true,
    "requiredApprovals": 2
  }
]