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

The UserContributor object

{
  "updatedAt": "2025-04-24T23:27:48.145Z",
  "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
Responseall of
get
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": "2025-04-24T23:27:48.145Z",
      "count": 1,
      "user": {
        "object": "user",
        "id": "text",
        "displayName": "text",
        "email": "text",
        "photoURL": "text",
        "urls": {
          "location": "https://example.com"
        }
      }
    }
  ]
}

Was this helpful?