v1

latestOpenAPI 3.0.3Lucid2026-07-14155181312.3 KB
Repositories

Add Groups as Members on Repository

Add Groups to a repository. Users in the Group will have repository member access to the specified repository.

post/v1/repositories/{repositoryId}/groups/add

Path parameters

repositoryIdstring required

Unique identifier for a repository folder, prefixed with repo_

Example:repo_1234321

The unique identifier of the repository

Request body

groupsinteger[] required

Array of group IDs.

Example request

{
  "groups": [
    123456,
    789123
  ]
}

Response

No Content. Groups have been successfully added.