From 280474358b4c97c3251dbdbd876ce463e6056852 Mon Sep 17 00:00:00 2001 From: Abdelkader Bahgat Date: Thu, 19 Nov 2015 13:53:20 -0800 Subject: [PATCH] Revert "scope" This reverts commit 4e4f56ef8eace9e07c306a867f2dcf10e59ecb5b. --- api-reference/v1.0/api/attachment_delete.md | 6 +- api-reference/v1.0/api/attachment_get.md | 6 +- .../v1.0/api/calendar_post_calendarview.md | 85 +++++++++++++++++++ .../v1.0/api/calendar_post_events.md | 1 + api-reference/v1.0/api/event_accept.md | 3 +- api-reference/v1.0/api/event_decline.md | 3 +- api-reference/v1.0/api/event_delete.md | 3 +- .../v1.0/api/event_dismissreminder.md | 3 +- api-reference/v1.0/api/event_get.md | 3 +- .../v1.0/api/event_list_attachments.md | 3 +- .../v1.0/api/event_list_instances.md | 3 +- .../v1.0/api/event_post_attachments.md | 3 +- .../v1.0/api/event_post_instances.md | 3 +- .../v1.0/api/event_snoozereminder.md | 3 +- .../v1.0/api/event_tentativelyaccept.md | 3 +- api-reference/v1.0/api/event_update.md | 3 +- api-reference/v1.0/api/eventmessage_delete.md | 3 +- api-reference/v1.0/api/eventmessage_get.md | 3 +- .../v1.0/api/eventmessage_list_attachments.md | 3 +- .../v1.0/api/eventmessage_post_attachments.md | 3 +- api-reference/v1.0/api/eventmessage_update.md | 3 +- .../v1.0/api/fileattachment_delete.md | 4 +- api-reference/v1.0/api/fileattachment_get.md | 4 +- .../v1.0/api/itemattachment_delete.md | 4 +- api-reference/v1.0/api/itemattachment_get.md | 4 +- api-reference/v1.0/api/message_copy.md | 3 +- .../v1.0/api/message_createforward.md | 3 +- api-reference/v1.0/api/message_createreply.md | 3 +- .../v1.0/api/message_createreplyall.md | 3 +- api-reference/v1.0/api/message_delete.md | 3 +- api-reference/v1.0/api/message_forward.md | 3 +- api-reference/v1.0/api/message_get.md | 3 +- .../v1.0/api/message_list_attachments.md | 3 +- api-reference/v1.0/api/message_move.md | 3 +- .../v1.0/api/message_post_attachments.md | 3 +- api-reference/v1.0/api/message_reply.md | 3 +- api-reference/v1.0/api/message_replyall.md | 3 +- api-reference/v1.0/api/message_send.md | 3 +- api-reference/v1.0/api/message_update.md | 3 +- 39 files changed, 131 insertions(+), 76 deletions(-) create mode 100644 api-reference/v1.0/api/calendar_post_calendarview.md diff --git a/api-reference/v1.0/api/attachment_delete.md b/api-reference/v1.0/api/attachment_delete.md index eed06d2f88646..faaa916273890 100644 --- a/api-reference/v1.0/api/attachment_delete.md +++ b/api-reference/v1.0/api/attachment_delete.md @@ -4,9 +4,9 @@ Delete attachment. ### Prerequisites One of the following **scopes** is required to execute this API: -* If accessing attachments in Messages: *Mail.ReadWrite* -* If accessing attachments in Events: *Calendars.ReadWrite* -* If accessing attachments in Posts: *Groups.ReadWrite* +* If accessing attachments in Messages: _Mail.ReadWrite_ +* If accessing attachments in Events: _Calendars.ReadWrite_ +* If accessing attachments in Posts: _Groups.Read_ ### HTTP request diff --git a/api-reference/v1.0/api/attachment_get.md b/api-reference/v1.0/api/attachment_get.md index 50271c5fb91e5..f5db5acb18550 100644 --- a/api-reference/v1.0/api/attachment_get.md +++ b/api-reference/v1.0/api/attachment_get.md @@ -4,9 +4,9 @@ Retrieve the properties and relationships of attachment object. ### Prerequisites One of the following **scopes** is required to execute this API: -* If accessing attachments in Messages: *Mail.Read* -* If accessing attachments in Events: *Calendars.Read* -* If accessing attachments in Posts: *Groups.Read* +* If accessing attachments in Messages: _Mail.Read_ +* If accessing attachments in Events: _Calendars.Read_ +* If accessing attachments in Posts: _Groups.Read_ ### HTTP request diff --git a/api-reference/v1.0/api/calendar_post_calendarview.md b/api-reference/v1.0/api/calendar_post_calendarview.md new file mode 100644 index 0000000000000..88b9702817ca6 --- /dev/null +++ b/api-reference/v1.0/api/calendar_post_calendarview.md @@ -0,0 +1,85 @@ +# Create Event + +Use this API to create a new Event. +### Prerequisites +One of the following **scopes** is required to execute this API: _Calendars.ReadWrite_ +### HTTP request + +```http +POST /users//calendar/calendarView +POST /groups//calendar/calendarView +POST /drive/root/createdByUser/calendar/calendarView + +``` +### Request headers +| Name | Type | Description| +|:---------------|:--------|:----------| +| Authorization | string | Bearer . Required. | + +### Request body +In the request body, supply a JSON representation of [Event](../resources/event.md) object. + + +### Response +If successful, this method returns `201, Created` response code and [Event](../resources/event.md) object in the response body. + +### Example +##### Request +Here is an example of the request. + +```http +POST https://graph.microsoft.com/v1.0/me/calendar/calendarView +Content-type: application/json +Content-length: 285 + +{ + "originalStartTimeZone": "originalStartTimeZone-value", + "originalEndTimeZone": "originalEndTimeZone-value", + "responseStatus": { + "response": { + }, + "time": "datetime-value" + }, + "iCalUId": "iCalUId-value", + "reminderMinutesBeforeStart": 99, + "isReminderOn": true +} +``` +In the request body, supply a JSON representation of [event](../resources/event.md) object. +##### Response +Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call. + +```http +Content-type: application/json +Content-length: 285 + +{ + "originalStartTimeZone": "originalStartTimeZone-value", + "originalEndTimeZone": "originalEndTimeZone-value", + "responseStatus": { + "response": { + }, + "time": "datetime-value" + }, + "iCalUId": "iCalUId-value", + "reminderMinutesBeforeStart": 99, + "isReminderOn": true +} +``` + + + diff --git a/api-reference/v1.0/api/calendar_post_events.md b/api-reference/v1.0/api/calendar_post_events.md index 4d4ad8b70e9ea..fb83debdbbdd0 100644 --- a/api-reference/v1.0/api/calendar_post_events.md +++ b/api-reference/v1.0/api/calendar_post_events.md @@ -51,6 +51,7 @@ Content-length: 285 }, "time": "datetime-value" }, + "iCalUId": "iCalUId-value", "reminderMinutesBeforeStart": 99, "isReminderOn": true } diff --git a/api-reference/v1.0/api/event_accept.md b/api-reference/v1.0/api/event_accept.md index d0caab2bd4c75..645dc8781f133 100644 --- a/api-reference/v1.0/api/event_accept.md +++ b/api-reference/v1.0/api/event_accept.md @@ -2,8 +2,7 @@ ### Prerequisites -One of the following **scopes** is required to execute this API: -*Calendars.ReadWrite* +One of the following **scopes** is required to execute this API: _Calendars.ReadWrite_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/event_decline.md b/api-reference/v1.0/api/event_decline.md index 1e9b3e6fa6aaf..4d2b2512e3383 100644 --- a/api-reference/v1.0/api/event_decline.md +++ b/api-reference/v1.0/api/event_decline.md @@ -2,8 +2,7 @@ ### Prerequisites -One of the following **scopes** is required to execute this API: -*Calendars.ReadWrite* +One of the following **scopes** is required to execute this API: _Calendars.ReadWrite_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/event_delete.md b/api-reference/v1.0/api/event_delete.md index 2cd6a217443d4..6767e94efaf80 100644 --- a/api-reference/v1.0/api/event_delete.md +++ b/api-reference/v1.0/api/event_delete.md @@ -2,8 +2,7 @@ Delete event. ### Prerequisites -One of the following **scopes** is required to execute this API: -*Calendars.ReadWrite* +One of the following **scopes** is required to execute this API: _Calendars.ReadWrite_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/event_dismissreminder.md b/api-reference/v1.0/api/event_dismissreminder.md index 3db8ee37fb55b..6a1a12ecdb2e5 100644 --- a/api-reference/v1.0/api/event_dismissreminder.md +++ b/api-reference/v1.0/api/event_dismissreminder.md @@ -2,8 +2,7 @@ ### Prerequisites -One of the following **scopes** is required to execute this API: -*Calendars.ReadWrite* +One of the following **scopes** is required to execute this API: _Calendars.ReadWrite_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/event_get.md b/api-reference/v1.0/api/event_get.md index 2af1ae348f01b..21415119d965b 100644 --- a/api-reference/v1.0/api/event_get.md +++ b/api-reference/v1.0/api/event_get.md @@ -2,8 +2,7 @@ Retrieve the properties and relationships of event object. ### Prerequisites -One of the following **scopes** is required to execute this API: -*Calendars.Read* +One of the following **scopes** is required to execute this API: _Calendars.Read_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/event_list_attachments.md b/api-reference/v1.0/api/event_list_attachments.md index 3a61686ebe29d..19890896566cd 100644 --- a/api-reference/v1.0/api/event_list_attachments.md +++ b/api-reference/v1.0/api/event_list_attachments.md @@ -2,8 +2,7 @@ Retrieve a list of attachment objects. ### Prerequisites -One of the following **scopes** is required to execute this API: -*Calendars.Read* +One of the following **scopes** is required to execute this API: _Calendars.Read_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/event_list_instances.md b/api-reference/v1.0/api/event_list_instances.md index 6aef9f67c4cda..507a2cce5c634 100644 --- a/api-reference/v1.0/api/event_list_instances.md +++ b/api-reference/v1.0/api/event_list_instances.md @@ -2,8 +2,7 @@ Retrieve a list of event objects. ### Prerequisites -One of the following **scopes** is required to execute this API: -*Calendars.Read* +One of the following **scopes** is required to execute this API: _Calendars.Read_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/event_post_attachments.md b/api-reference/v1.0/api/event_post_attachments.md index 85593283f7afe..46b7c85729cc6 100644 --- a/api-reference/v1.0/api/event_post_attachments.md +++ b/api-reference/v1.0/api/event_post_attachments.md @@ -2,8 +2,7 @@ Use this API to create a new Attachment. ### Prerequisites -One of the following **scopes** is required to execute this API: -*Calendars.ReadWrite* +One of the following **scopes** is required to execute this API: _Calendars.ReadWrite_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/event_post_instances.md b/api-reference/v1.0/api/event_post_instances.md index 0a87b162155c0..cbfe0b1a3526c 100644 --- a/api-reference/v1.0/api/event_post_instances.md +++ b/api-reference/v1.0/api/event_post_instances.md @@ -2,8 +2,7 @@ Use this API to create a new Event. ### Prerequisites -One of the following **scopes** is required to execute this API: -*Calendars.ReadWrite* +One of the following **scopes** is required to execute this API: _Calendars.ReadWrite_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/event_snoozereminder.md b/api-reference/v1.0/api/event_snoozereminder.md index 406a437d92c28..c2eb7b89d549b 100644 --- a/api-reference/v1.0/api/event_snoozereminder.md +++ b/api-reference/v1.0/api/event_snoozereminder.md @@ -2,8 +2,7 @@ ### Prerequisites -One of the following **scopes** is required to execute this API: -*Calendars.ReadWrite* +One of the following **scopes** is required to execute this API: _Calendars.ReadWrite_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/event_tentativelyaccept.md b/api-reference/v1.0/api/event_tentativelyaccept.md index 6ee51e8da4c1a..9b0eefda06d17 100644 --- a/api-reference/v1.0/api/event_tentativelyaccept.md +++ b/api-reference/v1.0/api/event_tentativelyaccept.md @@ -2,8 +2,7 @@ ### Prerequisites -One of the following **scopes** is required to execute this API: -*Calendars.ReadWrite* +One of the following **scopes** is required to execute this API: _Calendars.ReadWrite_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/event_update.md b/api-reference/v1.0/api/event_update.md index 1fa3865ebb321..7b3ae9f9a9558 100644 --- a/api-reference/v1.0/api/event_update.md +++ b/api-reference/v1.0/api/event_update.md @@ -2,8 +2,7 @@ Update the properties of event object. ### Prerequisites -One of the following **scopes** is required to execute this API: -*Calendars.ReadWrite* +One of the following **scopes** is required to execute this API: _Calendars.ReadWrite_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/eventmessage_delete.md b/api-reference/v1.0/api/eventmessage_delete.md index b6ad509acebf4..8d62cfcfee893 100644 --- a/api-reference/v1.0/api/eventmessage_delete.md +++ b/api-reference/v1.0/api/eventmessage_delete.md @@ -2,8 +2,7 @@ Delete eventMessage. ### Prerequisites -One of the following **scopes** is required to execute this API: -*Mail.ReadWrite* +One of the following **scopes** is required to execute this API: _Mail.ReadWrite_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/eventmessage_get.md b/api-reference/v1.0/api/eventmessage_get.md index 2bd2a590c0a1c..08775c5a3d65e 100644 --- a/api-reference/v1.0/api/eventmessage_get.md +++ b/api-reference/v1.0/api/eventmessage_get.md @@ -2,8 +2,7 @@ Retrieve the properties and relationships of eventmessage object. ### Prerequisites -One of the following **scopes** is required to execute this API: -*Mail.Read* +One of the following **scopes** is required to execute this API: _Mail.Read_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/eventmessage_list_attachments.md b/api-reference/v1.0/api/eventmessage_list_attachments.md index 81b4f4bea616f..7b11981eb19d4 100644 --- a/api-reference/v1.0/api/eventmessage_list_attachments.md +++ b/api-reference/v1.0/api/eventmessage_list_attachments.md @@ -2,8 +2,7 @@ Retrieve a list of attachment objects. ### Prerequisites -One of the following **scopes** is required to execute this API: -*Mail.Read* +One of the following **scopes** is required to execute this API: _Mail.Read_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/eventmessage_post_attachments.md b/api-reference/v1.0/api/eventmessage_post_attachments.md index 9eff4edd64240..c2397e553d3aa 100644 --- a/api-reference/v1.0/api/eventmessage_post_attachments.md +++ b/api-reference/v1.0/api/eventmessage_post_attachments.md @@ -2,8 +2,7 @@ Use this API to create a new Attachment. ### Prerequisites -One of the following **scopes** is required to execute this API: -*Mail.ReadWrite* +One of the following **scopes** is required to execute this API: _Mail.ReadWrite_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/eventmessage_update.md b/api-reference/v1.0/api/eventmessage_update.md index dbc4cb02200bf..982b482e0324f 100644 --- a/api-reference/v1.0/api/eventmessage_update.md +++ b/api-reference/v1.0/api/eventmessage_update.md @@ -2,8 +2,7 @@ Update the properties of eventmessage object. ### Prerequisites -One of the following **scopes** is required to execute this API: -*Mail.ReadWrite* +One of the following **scopes** is required to execute this API: _Mail.ReadWrite_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/fileattachment_delete.md b/api-reference/v1.0/api/fileattachment_delete.md index e93954f64affc..e2591bce9b6b7 100644 --- a/api-reference/v1.0/api/fileattachment_delete.md +++ b/api-reference/v1.0/api/fileattachment_delete.md @@ -4,8 +4,8 @@ Delete fileAttachment. ### Prerequisites One of the following **scopes** is required to execute this API: -* If accessing attachments in Messages: *Mail.ReadWrite* -* If accessing attachments in Events: *Calendars.ReadWrite* +* If accessing attachments in Messages: _Mail.ReadWrite_ +* If accessing attachments in Events: _Calendars.ReadWrite_ ### HTTP request diff --git a/api-reference/v1.0/api/fileattachment_get.md b/api-reference/v1.0/api/fileattachment_get.md index 2b5465c81bd39..1dd23b70b3488 100644 --- a/api-reference/v1.0/api/fileattachment_get.md +++ b/api-reference/v1.0/api/fileattachment_get.md @@ -4,8 +4,8 @@ Retrieve the properties and relationships of fileattachment object. ### Prerequisites One of the following **scopes** is required to execute this API: -* If accessing attachments in Messages: *Mail.Read* -* If accessing attachments in Events: *Calendars.Read* +* If accessing attachments in Messages: _Mail.Read_ +* If accessing attachments in Events: _Calendars.Read_ ### HTTP request diff --git a/api-reference/v1.0/api/itemattachment_delete.md b/api-reference/v1.0/api/itemattachment_delete.md index 7fbb177c2924b..f3ff674d9fd8c 100644 --- a/api-reference/v1.0/api/itemattachment_delete.md +++ b/api-reference/v1.0/api/itemattachment_delete.md @@ -4,8 +4,8 @@ Delete itemAttachment. ### Prerequisites One of the following **scopes** is required to execute this API: -* If accessing attachments in Messages: *Mail.ReadWrite* -* If accessing attachments in Events: *Calendars.ReadWrite* +* If accessing attachments in Messages: _Mail.ReadWrite_ +* If accessing attachments in Events: _Calendars.ReadWrite_ ### HTTP request diff --git a/api-reference/v1.0/api/itemattachment_get.md b/api-reference/v1.0/api/itemattachment_get.md index b93f84cbcf5bd..99c07715efe2d 100644 --- a/api-reference/v1.0/api/itemattachment_get.md +++ b/api-reference/v1.0/api/itemattachment_get.md @@ -4,8 +4,8 @@ Retrieve the properties and relationships of itemattachment object. ### Prerequisites One of the following **scopes** is required to execute this API: -* If accessing attachments in Messages: *Mail.Read* -* If accessing attachments in Events: *Calendars.Read* +* If accessing attachments in Messages: _Mail.Read_ +* If accessing attachments in Events: _Calendars.Read_ ### HTTP request diff --git a/api-reference/v1.0/api/message_copy.md b/api-reference/v1.0/api/message_copy.md index 4fbd1c5a9932f..623cf27dfaaea 100644 --- a/api-reference/v1.0/api/message_copy.md +++ b/api-reference/v1.0/api/message_copy.md @@ -2,8 +2,7 @@ ### Prerequisites -One of the following **scopes** is required to execute this API: -*Mail.ReadWrite* +One of the following **scopes** is required to execute this API: _Mail.ReadWrite_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/message_createforward.md b/api-reference/v1.0/api/message_createforward.md index 194d87dc30916..a8b552b2ff3c9 100644 --- a/api-reference/v1.0/api/message_createforward.md +++ b/api-reference/v1.0/api/message_createforward.md @@ -2,8 +2,7 @@ ### Prerequisites -One of the following **scopes** is required to execute this API: -*Mail.ReadWrite* +One of the following **scopes** is required to execute this API: _Mail.ReadWrite_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/message_createreply.md b/api-reference/v1.0/api/message_createreply.md index 69b31484f03b1..626ed55a79861 100644 --- a/api-reference/v1.0/api/message_createreply.md +++ b/api-reference/v1.0/api/message_createreply.md @@ -2,8 +2,7 @@ ### Prerequisites -One of the following **scopes** is required to execute this API: -*Mail.ReadWrite* +One of the following **scopes** is required to execute this API: _Mail.Send_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/message_createreplyall.md b/api-reference/v1.0/api/message_createreplyall.md index 15ecf97b538c7..21fe08910e1fb 100644 --- a/api-reference/v1.0/api/message_createreplyall.md +++ b/api-reference/v1.0/api/message_createreplyall.md @@ -2,8 +2,7 @@ ### Prerequisites -One of the following **scopes** is required to execute this API: -*Mail.ReadWrite* +One of the following **scopes** is required to execute this API: _Mail.Send_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/message_delete.md b/api-reference/v1.0/api/message_delete.md index 7c746873697c6..edb692ee02120 100644 --- a/api-reference/v1.0/api/message_delete.md +++ b/api-reference/v1.0/api/message_delete.md @@ -2,8 +2,7 @@ Delete message. ### Prerequisites -One of the following **scopes** is required to execute this API: -*Mail.ReadWrite* +One of the following **scopes** is required to execute this API: _Mail.ReadWrite_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/message_forward.md b/api-reference/v1.0/api/message_forward.md index 1ba8e40093ddb..d9cdb936214b0 100644 --- a/api-reference/v1.0/api/message_forward.md +++ b/api-reference/v1.0/api/message_forward.md @@ -2,8 +2,7 @@ ### Prerequisites -One of the following **scopes** is required to execute this API: -*Mail.Send* +One of the following **scopes** is required to execute this API: _Mail.Send_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/message_get.md b/api-reference/v1.0/api/message_get.md index fd7238690fe1a..d9a64d1a1face 100644 --- a/api-reference/v1.0/api/message_get.md +++ b/api-reference/v1.0/api/message_get.md @@ -2,8 +2,7 @@ Retrieve the properties and relationships of message object. ### Prerequisites -One of the following **scopes** is required to execute this API: -*Mail.Read* +One of the following **scopes** is required to execute this API: _Mail.Read_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/message_list_attachments.md b/api-reference/v1.0/api/message_list_attachments.md index 7bc29ef0d0f01..4dabafc861f1a 100644 --- a/api-reference/v1.0/api/message_list_attachments.md +++ b/api-reference/v1.0/api/message_list_attachments.md @@ -2,8 +2,7 @@ Retrieve a list of attachment objects. ### Prerequisites -One of the following **scopes** is required to execute this API: \ -*Mail.Read* +One of the following **scopes** is required to execute this API: _Mail.Read_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/message_move.md b/api-reference/v1.0/api/message_move.md index 048f5e0281c5f..90956f4526abc 100644 --- a/api-reference/v1.0/api/message_move.md +++ b/api-reference/v1.0/api/message_move.md @@ -2,8 +2,7 @@ ### Prerequisites -One of the following **scopes** is required to execute this API: -*Mail.ReadWrite* +One of the following **scopes** is required to execute this API: _Mail.ReadWrite_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/message_post_attachments.md b/api-reference/v1.0/api/message_post_attachments.md index f316f05c34768..d04fadaa5f236 100644 --- a/api-reference/v1.0/api/message_post_attachments.md +++ b/api-reference/v1.0/api/message_post_attachments.md @@ -2,8 +2,7 @@ Use this API to create a new Attachment. ### Prerequisites -One of the following **scopes** is required to execute this API: -*Mail.ReadWrite* +One of the following **scopes** is required to execute this API: _Mail.ReadWrite_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/message_reply.md b/api-reference/v1.0/api/message_reply.md index 53762dd316555..f03673a45d662 100644 --- a/api-reference/v1.0/api/message_reply.md +++ b/api-reference/v1.0/api/message_reply.md @@ -2,8 +2,7 @@ ### Prerequisites -One of the following **scopes** is required to execute this API: -*Mail.Send* +One of the following **scopes** is required to execute this API: _Mail.Send_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/message_replyall.md b/api-reference/v1.0/api/message_replyall.md index dda50a7920513..29a16326c698f 100644 --- a/api-reference/v1.0/api/message_replyall.md +++ b/api-reference/v1.0/api/message_replyall.md @@ -2,8 +2,7 @@ ### Prerequisites -One of the following **scopes** is required to execute this API: -*Mail.Send* +One of the following **scopes** is required to execute this API: _Mail.Send_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/message_send.md b/api-reference/v1.0/api/message_send.md index c344bb9478f59..db00a7981566e 100644 --- a/api-reference/v1.0/api/message_send.md +++ b/api-reference/v1.0/api/message_send.md @@ -2,8 +2,7 @@ ### Prerequisites -One of the following **scopes** is required to execute this API: -*Mail.Send* +One of the following **scopes** is required to execute this API: _Mail.Send_ ### HTTP request ```http diff --git a/api-reference/v1.0/api/message_update.md b/api-reference/v1.0/api/message_update.md index fa965a01eed46..ddb1715fe638d 100644 --- a/api-reference/v1.0/api/message_update.md +++ b/api-reference/v1.0/api/message_update.md @@ -2,8 +2,7 @@ Update the properties of message object. ### Prerequisites -One of the following **scopes** is required to execute this API: -*Mail.ReadWrite* +One of the following **scopes** is required to execute this API: _Mail.ReadWrite_ ### HTTP request ```http