v1

latestOpenAPI 3.0.3Lucid2026-07-14155181312.3 KB
Repositories

List Repositories

Retrieves basic information for all repositories the authenticated user has permission to view.

get/v1/repositories

Response

OK. Returns a list of repositories the user has access to.

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"
  }
]