Skip to main content
POST
/
api
/
v1
/
calendars
/
{calendar_id}
/
members
curl -X POST "https://app.talkover.ai/api/v1/calendars/calendar-uuid-1/members" \
  -H "Authorization: Bearer talq_your_environment_token_here" \
  -H "Content-Type: application/json" \
  -d '{ "user_id": "user-uuid-2", "role": "editor" }'
{
  "success": true,
  "data": {
    "id": "member-uuid-2",
    "user_id": "user-uuid-2",
    "role": "editor"
  }
}

Documentation Index

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

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

Add Calendar Member

Grant a user access to a calendar with a specific role.

Endpoint

POST /api/v1/calendars/{calendar_id}/members

Path Parameters

calendar_id
string
required
Calendar UUID.

Request Headers

Authorization
string
required
Bearer token. Format: Bearer talq_your_environment_token_here
Content-Type
string
required
Must be application/json.

Request Body

user_id
string
required
UUID of the user to add.
role
string
required
Member role. Options: owner, editor, viewer.

Examples

curl -X POST "https://app.talkover.ai/api/v1/calendars/calendar-uuid-1/members" \
  -H "Authorization: Bearer talq_your_environment_token_here" \
  -H "Content-Type: application/json" \
  -d '{ "user_id": "user-uuid-2", "role": "editor" }'

Response

{
  "success": true,
  "data": {
    "id": "member-uuid-2",
    "user_id": "user-uuid-2",
    "role": "editor"
  }
}