cURL
curl --request POST \ --url https://api.example.com/api/v1/calendar/events/{event_id}/respond \ --header 'Content-Type: application/json' \ --data ' { "status": "<string>" } '
Respond to an event invitation.
"accepted"
"declined"
curl -X POST https://api.ama2.me/api/v1/calendar/events/{event_id}/respond \ -H "Authorization: Bearer YOUR_JWT_TOKEN" \ -H "Content-Type: application/json" \ -d '{"status": "accepted"}'