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.

The UserContributor object

Attributes

Contributor towards content.

updatedAtstring · date-timerequired
countintegerrequired
userobjectrequired

The UserContributor object

{
  "updatedAt": "2025-04-12T21:04:01.285Z",
  "count": 1,
  "user": {
    "object": "user",
    "id": "text",
    "displayName": "text",
    "email": "text",
    "photoURL": "text",
    "urls": {
      "location": "https://example.com"
    }
  }
}

Get all contribors of a change request

get
Authorizations
Path parameters
spaceIdstringrequired

The unique id of the space

changeRequestIdstringrequired

The unique ID of the change request or its number identifier in the space

Responses
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-12T21:04:01.285Z",
      "count": 1,
      "user": {
        "object": "user",
        "id": "text",
        "displayName": "text",
        "email": "text",
        "photoURL": "text",
        "urls": {
          "location": "https://example.com"
        }
      }
    }
  ]
}

Was this helpful?