Repositories
Create Repository
Creates a new repository on the account.
post/v1/repositories
Request body
Example request
{
"name": "Example Process Repository",
"accessType": "UNRESTRICTED",
"users": [
{
"userId": 1234567,
"role": "REPOSITORY_OWNER"
}
],
"groups": [
123456,
789123
]
}Response
Created. Returns the newly created repository.
Example response
{
"repositoryId": "repo_1234321",
"name": "My Business Process Repository",
"accessType": "UNRESTRICTED",
"created": "2022-11-11T21:48:35.293Z"
}