Skip to main content

Retrieves number of project change requests in each state

GET <your-unleash-url>/api/admin/projects/:projectId/change-requests/count

Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API

This endpoint will retrieve the number of project change requests that are: approved, applied, rejected, scheduled or awaiting review

Request

Path Parameters

  • projectId string required
Responses

changeRequestsCountSchema

Schema
  • total number required

    The number of total change requests in this project

  • applied number required

    The number of applied change requests

  • rejected number required

    The number of rejected change requests

  • reviewRequired number required

    The number of change requests awaiting the review

  • approved number required

    The number of approved change requests

  • scheduled number required

    The number of scheduled change requests

Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API

Request

Base URL
<your-unleash-url>
Security Scheme
apiKey
projectId — path required
curl / cURL
curl -L -X GET '<your-unleash-url>/api/admin/projects/:projectId/change-requests/count' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'