v1

latestOpenAPI 3.0.3Lucid2026-07-14155181312.3 KB
Repositories

List Repository User Collaborators

List users with roles on a repository.

get/v1/repositories/{repositoryId}/users

Path parameters

repositoryIdstring required

Unique identifier for a repository folder, prefixed with repo_

Example:repo_1234321

The unique identifier of the repository

Response

OK. Returns a list of users and their roles on the repository.

repositoryIdstring

Unique identifier of the repository

userIdinteger

Unique identifier of the user

role'REPOSITORY_OWNER' | 'REPOSITORY_MEMBER'

Role of a user on a repository

createdstring date-time

Date and time when the user was added to the repository

Example response

[
  {
    "repositoryId": "repo_2000719",
    "userId": 1234567,
    "role": "REPOSITORY_OWNER",
    "created": "2026-01-21T01:10:41Z"
  }
]