Change request reviewers
Assign or list requested reviewers for a change request.
Ensure quality by requesting and tracking reviewer feedback in your GitBook flow. This endpoint helps orchestrate the entire review cycle.
The ChangeRequestRequestedReviewer object
{ "object": "change-request-requested-reviewer", "revision": "text", "requestedBy": { "object": "user", "id": "text", "displayName": "text", "email": "text", "photoURL": "text", "urls": { "location": "https://example.com" } }, "createdAt": "2025-10-09T20:02:28.932Z", "kind": "user", "user": { "object": "user", "id": "text", "displayName": "text", "email": "text", "photoURL": "text", "urls": { "location": "https://example.com" } } }
The unique id of the space
The unique ID of the change request or its number identifier in the space
Identifier of the page results to fetch.
The number of results per page
A list of requested reviewers
GET /v1/spaces/{spaceId}/change-requests/{changeRequestId}/requested-reviewers HTTP/1.1 Host: api.gitbook.com Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
A list of requested reviewers
{ "next": { "page": "text" }, "count": 1, "items": [ { "object": "change-request-requested-reviewer", "revision": "text", "requestedBy": { "object": "user", "id": "text", "displayName": "text", "email": "text", "photoURL": "text", "urls": { "location": "https://example.com" } }, "createdAt": "2025-10-09T20:02:28.932Z", "kind": "user", "user": { "object": "user", "id": "text", "displayName": "text", "email": "text", "photoURL": "text", "urls": { "location": "https://example.com" } } } ] }
The unique id of the space
The unique ID of the change request or its number identifier in the space
An array of user ids that will be requested.
Optionally, update the subject of the change request when requesting reviewers.
The requests have successfully been sent.
POST /v1/spaces/{spaceId}/change-requests/{changeRequestId}/requested-reviewers HTTP/1.1 Host: api.gitbook.com Authorization: Bearer YOUR_SECRET_TOKEN Content-Type: application/json Accept: */* Content-Length: 269 { "users": [ "text" ], "subject": "text", "description": { "object": "document", "data": { "schemaVersion": 1, "ANY_ADDITIONAL_PROPERTY": "anything" }, "nodes": [ { "object": "block", "type": "paragraph", "key": "text", "nodes": [ "[Circular Reference]" ], "isVoid": false, "data": { "align": "start" } } ] } }
The requests have successfully been sent.
{ "users": [ { "object": "change-request-requested-reviewer", "revision": "text", "requestedBy": { "object": "user", "id": "text", "displayName": "text", "email": "text", "photoURL": "text", "urls": { "location": "https://example.com" } }, "createdAt": "2025-10-09T20:02:28.932Z", "kind": "user", "user": { "object": "user", "id": "text", "displayName": "text", "email": "text", "photoURL": "text", "urls": { "location": "https://example.com" } } } ] }
The unique id of the space
The unique ID of the change request or its number identifier in the space
The unique ID of the User
Reviewer was not found
No content
The reviewer has been removed from the change request
DELETE /v1/spaces/{spaceId}/change-requests/{changeRequestId}/requested-reviewers/{userId} HTTP/1.1 Host: api.gitbook.com Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
No content
Was this helpful?