Respond to calendar invite
org.intentschema.productivity.calendar.invite.respond.v1
JSON: bare · @sha256:77e6f2365eb6…
Hash: sha256:77e6f2365eb6242280a6200bafb3f5bc1ff50a0356e9a4e7cf856c8480e75114
Responds to a received calendar invite with accept, decline, or tentative.
Payload
| Field | Type | Description |
target * | Target (required: external_id) | |
object * | object | |
idempotency_key | string | |
object
| Field | Type | Description |
response * | enum: accept | decline | tentative | |
comment | string | Optional note included in the reply. |
notify_organizer | boolean (default true) | |
Result
| Field | Type | Description |
external_id | string | |
response_recorded_at | string (date-time) | |
Examples
accept
{
"target": {
"system": "google_calendar",
"external_id": "evt_abc123"
},
"object": {
"response": "accept"
}
}
decline with a note
{
"target": {
"system": "google_calendar",
"external_id": "evt_abc123"
},
"object": {
"response": "decline",
"comment": "Traveling that week."
}
}
Profiles