List all users who have made edits to a change request
get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
spaceIdstringRequiredPattern:
A unique entity identifier
^[a-zA-Z0-9_-]+$changeRequestIdstringRequiredPattern:
A unique entity identifier
^[a-zA-Z0-9_-]+$Responses
200
Contributors on the change request
application/json
countnumberOptional
Total count of objects in the list
404
The change request could not be found.
application/json
get/spaces/{spaceId}/change-requests/{changeRequestId}/contributors
GET /v1/spaces/{spaceId}/change-requests/{changeRequestId}/contributors HTTP/1.1
Host: api.gitbook.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"next": {
"page": "text"
},
"count": 1,
"items": [
{
"updatedAt": "2026-01-01T00:00:00.000Z",
"count": 1,
"user": {
"object": "user",
"id": "text",
"displayName": "text",
"email": "text",
"photoURL": "text",
"urls": {
"location": "https://example.com"
}
},
"actionType": "edit"
}
]
}Last updated
Was this helpful?