Change request contributors
See who’s participating in the change request.
Quickly access the full list of collaborators and their contributions within a change request for better traceability and communication.
updatedAtstring · date-timerequired
Get all contribors of a change request
get
spaceIdstringrequired
The unique id of the space
changeRequestIdstringrequired
The unique ID of the change request or its number identifier in the space
curl -L \
--url 'https://api.gitbook.com/v1/spaces/{spaceId}/change-requests/{changeRequestId}/contributors' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"next": {
"page": "text"
},
"count": 1,
"items": [
{
"updatedAt": "2025-04-18T23:28:25.051Z",
"count": 1,
"user": {
"object": "user",
"id": "text",
"displayName": "text",
"email": "text",
"photoURL": "text",
"urls": {
"location": "https://example.com"
}
}
}
]
}