Skip to main content
PUT
/
activeviam
/
pivot
/
rest
/
v9
/
database
/
branches
/
{branch}
Update the permissions of a branch.
curl --request PUT \
  --url http://localhost:9090/activeviam/pivot/rest/v9/database/branches/{branch} \
  --header 'Content-Type: application/json' \
  --data '
{
  "owners": [
    "<string>"
  ],
  "readers": [
    "<string>"
  ]
}
'
{}

Documentation Index

Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

branch
string
required

Desired branch name.

Body

application/json

Permissions to set for the branch.

owners
string[]
readers
string[]

Response

200 - application/json

Branch permissions updated successfully.

ResponseEntity<?>