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.
Atualizar Membro do Calendário
Alterar a função de um membro do calendário.
Endpoint
PUT /api/v1/calendars/{calendar_id}/members/{member_id}
Parâmetros de Caminho
Cabeçalhos da Requisição
Token Bearer para autenticação. Formato: Bearer talq_your_environment_token_here
Deve ser application/json.
Corpo da Requisição
Nova função. Opções: owner, editor, viewer.
Exemplos
curl -X PUT "https://app.talkover.ai/api/v1/calendars/calendar-uuid-1/members/member-uuid-2" \
-H "Authorization: Bearer talq_your_environment_token_here" \
-H "Content-Type: application/json" \
-d '{ "role": "viewer" }'
Resposta
{
"success": true,
"data": {
"id": "member-uuid-2",
"role": "viewer"
}
}