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.
Adicionar Participante ao Evento
Adicionar um participante a um evento de calendário.
Endpoint
POST /api/v1/calendars/{calendar_id}/events/{event_id}/attendees
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
Nome de exibição do participante.
Exemplos
curl -X POST "https://app.talkover.ai/api/v1/calendars/calendar-uuid-1/events/event-uuid-1/attendees" \
-H "Authorization: Bearer talq_your_environment_token_here" \
-H "Content-Type: application/json" \
-d '{ "name": "Jane Doe", "email": "[email protected]" }'
Resposta
{
"success": true,
"data": {
"id": "att-uuid-1",
"name": "Jane Doe",
"email": "[email protected]"
}
}