PATCH
/
admin
/
v0
/
calendar_events
/
{calendar_event_id}
/
attendees
Update a calendar event attendee
curl --request PATCH \
  --url https://api.tightknit.dev/admin/v0/calendar_events/{calendar_event_id}/attendees \
  --header 'Authorization: Bearer <token>' \
  --header 'content-type: <content-type>' \
  --data '{
  "user": {
    "slack_user_id": "U1234567A"
  },
  "personal_join_link": "https://zoom.us/j/1234567890?pwd=AbCdEfGhIjK"
}'
{
  "success": true
}

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 length: 1
Example:

"8x38el2x6di9"

Body

application/json

Response

200
application/json

Updates a calendar event attendee

The response is of type object.