POST
/
organizations
/
{organizationId}
/
invites
curl --request POST \
  --url https://api.tally.so/organizations/{organizationId}/invites \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "workspaceIds": [
    "<string>"
  ],
  "emails": "<string>"
}'

Authorizations

Authorization
string
header
required

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

Path Parameters

organizationId
string
required

The ID of the organization

Body

application/json

Response

204

Invites created successfully. Existing users were added to workspaces and new users received invitation emails.