action microsoft_forward_event { label: "Forward event" description: "Forward a meeting to other recipients." provider: microsoft method: POST path: "/v1.0/me/events/{event_id}/forward" scopes: ["Calendars.ReadWrite"] input: @json { { "type": "object", "required": ["event_id", "ToRecipients"], "additionalProperties": false, "properties": { "event_id": { "type": "string", "description": "Id of the event to forward." }, "ToRecipients": { "type": "array", "description": "Recipients to forward the event to.", "items": { "type": "object", "properties": { "emailAddress": { "type": "object", "properties": { "address": { "type": "string" }, "name": { "type": "string" } } } } } }, "Comment": { "type": "string", "description": "Message included with the forward." } } } } }