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

FieldTypeDescription
target *Target (required: external_id)
object *object
idempotency_keystring
object
FieldTypeDescription
response *enum: accept | decline | tentative
commentstringOptional note included in the reply.
notify_organizerboolean (default true)

Result

FieldTypeDescription
external_idstring
response_recorded_atstring (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