POST
/
api
/
v1
/
workspaces
/
{uuid}
/
link
curl --request POST \
  --url https://app.snitcher.com/api/v1/workspaces/{uuid}/link \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "parent_workspace_uuid": "550e8400-e29b-41d4-a716-446655440000"
}'
{
  "success": true,
  "message": "Workspace linked"
}

Authorizations

Authorization
string
header
required

Enter your personal access token (PAT) to authenticate

Path Parameters

uuid
string
required

UUID of the child workspace

Example:

"550e8400-e29b-41d4-a716-446655440000"

Body

application/json
parent_workspace_uuid
string
Example:

"550e8400-e29b-41d4-a716-446655440000"

Response

200
application/json
Workspace linked
success
boolean
Example:

true

message
string
Example:

"Workspace linked"