v1

latestOpenAPI 3.0.3Lucid2026-07-14155181312.3 KB
Repositories

Get Repository

Retrieves basic information for the requested repository, provided the user has at least read-only access.

get/v1/repositories/{repositoryId}

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 the repository object.

repositoryIdstring

Unique identifier for a repository folder, prefixed with repo_

namestring

Display name of the repository

accessType'UNRESTRICTED' | 'RESTRICTED'

Determines repository visibility. UNRESTRICTED repositories are visible to all users on the account, RESTRICTED are visible to specific authorized groups and individuals.

createdstring date-time

The date and time the repository was created

Example response

{
  "repositoryId": "repo_1234321",
  "name": "My Business Process Repository",
  "accessType": "UNRESTRICTED",
  "created": "2022-11-11T21:48:35.293Z"
}