Skip to main content
POST
/
api
/
v1
/
projects
/
{projectUuid}
/
access
cURL
curl --request POST \
  --url http://api/v1/projects/{projectUuid}/access \
  --header 'Content-Type: application/json' \
  --data '
{
  "sendEmail": true,
  "role": "viewer",
  "email": "<string>"
}
'
{
  "results": "<any>",
  "status": "ok"
}

Path Parameters

projectUuid
string
required

Body

application/json
sendEmail
boolean
required
role
enum<string>
required
Available options:
viewer,
interactive_viewer,
editor,
developer,
admin
email
string
required

Response

Success

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