Skip to main content
PATCH
/
admin
/
v0
/
calendar_events
/
{calendar_event_id}
/
attendees
Update calendar event attendee
curl --request PATCH \
  --url https://api.tightknit.ai/admin/v0/calendar_events/{calendar_event_id}/attendees \
  --header 'Authorization: Bearer <token>' \
  --header 'content-type: <content-type>' \
  --data '
{
  "user": {
    "slack_user_id": "<string>"
  },
  "personal_join_link": "<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

calendar_event_id
string
required
Minimum string length: 1

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

Calendar event attendee updated

success
boolean
required