Skip to main content
POST
/
api
/
v1
/
projects
/
{projectUuid}
/
spaces
/
{spaceUuid}
/
share
cURL
curl --request POST \
  --url http://api/v1/projects/{projectUuid}/spaces/{spaceUuid}/share \
  --header 'Content-Type: application/json' \
  --data '
{
  "spaceRole": "viewer",
  "userUuid": "<string>"
}
'
{
  "results": "<any>",
  "status": "ok"
}

Path Parameters

projectUuid
string
required

The uuid of the space's parent project

spaceUuid
string
required

Body

application/json
spaceRole
enum<string>
required
Available options:
viewer,
editor,
admin
userUuid
string
required

Response

Success

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