Skip to main content
POST
/
v1
/
workspaces
/
invite
Invite Member
curl --request POST \
  --url https://linkryse.com/v1/workspaces/invite \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "workspace_id": 123,
  "email": "<string>",
  "role": "<string>"
}
'
{
  "success": true
}

Body

workspace_id
integer
required
The ID of the workspace (must match the workspace you have admin rights to).
email
string
required
The email address of the user to invite.
role
string
required
The role to assign (linkryse_administrator, linkryse_editor, linkryse_viewer).

Response

success
boolean
Whether the invitation was sent successfully.