Skip to main content
PATCH
/
api
/
v1
/
groups
/
{groupUuid}
/
projects
/
{projectUuid}
cURL
curl --request PATCH \
  --url http://api/v1/groups/{groupUuid}/projects/{projectUuid} \
  --header 'Content-Type: application/json' \
  --data '
{
  "role_uuid": "<string>",
  "role": "viewer"
}
'
{
  "results": {
    "role": "viewer",
    "groupUuid": "<string>",
    "projectUuid": "<string>"
  },
  "status": "ok"
}

Path Parameters

groupUuid
string
required
projectUuid
string
required

Body

application/json
role
enum<string>
required
Available options:
viewer,
interactive_viewer,
editor,
developer,
admin
role_uuid
string | null

Response

Ok

results
object
required
status
enum<string>
required
Available options:
ok