Create

  • POST
  • /workspaces
  • /:domain
  • /permissions

Creates a custom permission set. Restricted to admins only.

Request

REQUIRED SCOPES
WORKSPACE
URL PARAMETERS
domainrequired string
The workspace domain.
POST PARAMETERS
descriptionstring
The description of the permission set.
namerequired string
The name of the permission set.
pipeline_access_levelrequired string
Can be one of DENIED, READ_ONLY, RUN_ONLY, or READ_WRITE.
repository_access_levelrequired string
Can be one of READ_ONLY, READ_WRITE, or MANAGE.
sandbox_access_levelrequired string
Can be one of DENIED, READ_ONLY, or READ_WRITE.
project_team_access_levelstring
Can be READ_ONLYor MANAGE.

Last modified on Sep 27, 2024

Example:

curl -X POST "https://api.buddy.works/workspaces/:domain/permissions" \
  -H "Authorization: Bearer <YOUR-TOKEN>" \
  -H "Content-Type: application/json" \
  -d '{
  "name": "Artist",
  "description": "Artists can only view source",
  "repository_access_level": "READ_ONLY",
  "pipeline_access_level": "DENIED",
  "sandbox_access_level": "DENIED"
}'
EXAMPLE RESPONSE
{ "url": "https://api.buddy.works/workspaces/buddy/permissions/4", "html_url": "https://app.buddy.works/buddy/permissions/edit/4", "id": 4, "name": "Artist", "description": "Artists can access view source", "type": "CUSTOM", "repository_access_level": "READ_ONLY", "pipeline_access_level": "DENIED", "sandbox_access_level": "DENIED", "project_team_access_level": "READ_ONLY" }
STATUS
201 Created
LIMITS
X-Rate-Limit-Limit: 1 X-Rate-Limit-Remaining: 999