Skip to main content
POST
/
admin
/
v0
/
groups
/
{group_id}
/
members
Add user to group
curl --request POST \
  --url https://api.tightknit.ai/admin/v0/groups/{group_id}/members \
  --header 'Authorization: Bearer <token>' \
  --header 'content-type: <content-type>' \
  --data '
{
  "user": {
    "slack_user_id": "<string>"
  }
}
'
{
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.tightknit.ai/llms.txt

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

Authorizations

Authorization
string
header
required

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

Headers

content-type
enum<string>
required
Available options:
application/json

Path Parameters

group_id
string<uuid>
required

Body

application/json
user
object
required

The user identifier, which must be exactly one of the following: Slack user ID, email, or Tightknit profile ID

Response

User is already a member of the group

success
boolean
required