Skip to content

Latest commit

 

History

History
112 lines (64 loc) · 2.16 KB

outlook-web.md

File metadata and controls

112 lines (64 loc) · 2.16 KB

Outlook live

Official documentation

There is no official documentation.

Basic URL

https://outlook.live.com/calendar/0/deeplink/compose https://outlook.office.com/calendar/0/deeplink/compose (for Office 365)

Add a test event

Parameters

path

required: yes

format: string

example: path=/calendar/action/compose

description: internal application path.

rru

required: yes

format: string (addevent)

example: rru=addevent

description: action name.

startdt

required: yes

format: datetime (YYYY-MM-DDTHH:mm:SSZ) or date (YYYY-MM-DD, for all-day events) in UTC

example: startdt=2020-12-31T19:30:00Z

description: The start date for the event. You can omit trailing Z, in this case script assumes that time specified in current user's timezone. To specify all-day events use the YYYY-MM-DD format.

enddt

required: yes

format: datetime (YYYY-MM-DDTHH:mm:SSZ) or date (YYYY-MM-DD, for all-day events) in UTC

example: enddt=2020-12-31T22:30:00Z

description: The end time of the event, format as for startdt.

subject

required: yes

format: string

example: subject=Birthday

description: event title.

allday

required: no

format: boolean (true/false)

example: allday=true

description: whether event is all-day or not.

body

required: no

format: text

example: body=With clowns and stuff

description: description of your event

location

required: no

format: string

example: location=North Pole

description: set location of the event.

online

required: no

format: boolean (any value means true)

description: toggle "Skype meeting" button.

example: online=1

to

required: no

format: string

description: A comma-separated list of emails of requered attendees.

example: [email protected],[email protected]

cc

format: string

description: A comma-separated list of emails of optional attendees.

example: [email protected],[email protected]