Skip to main content
POST
/
v2
/
workspaces
/
{workspaceId}
/
users
Add users to a workspace
curl --request POST \
  --url https://api.pelanor.io/v2/workspaces/{workspaceId}/users \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "users": [
    {
      "email": "<string>"
    }
  ]
}
'
{}

Documentation Index

Fetch the complete documentation index at: https://docs.pelanor.io/llms.txt

Use this file to discover all available pages before exploring further.

Attaches an existing user to a workspace.
This endpoint will not invite or add users that are new to this organization. Use the Invite User endpoint instead.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workspaceId
string
required

Body

application/json
users
object[]

Response

A successful response.

The response is of type object.