创建日历Create Calendar
命名空间:microsoft.graphNamespace: microsoft.graph
此 API 可用于新建用户日历。Use this API to create a new calendar for a user.
权限Permissions
要调用此 API,需要以下权限之一。要了解详细信息,包括如何选择权限的信息,请参阅权限。One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
权限类型Permission type | 权限(从最低特权到最高特权)Permissions (from least to most privileged) |
---|---|
委派(工作或学校帐户)Delegated (work or school account) | Calendars.ReadWriteCalendars.ReadWrite |
委派(个人 Microsoft 帐户)Delegated (personal Microsoft account) | Calendars.ReadWriteCalendars.ReadWrite |
应用程序Application | Calendars.ReadWriteCalendars.ReadWrite |
HTTP 请求HTTP request
POST /me/calendars
POST /users/{id | userPrincipalName}/calendars
请求标头Request headers
标头Header | 值Value |
---|---|
AuthorizationAuthorization | Bearer {token}。必需。Bearer {token}. Required. |
Content-TypeContent-Type | application/jsonapplication/json |
请求正文Request body
在请求正文中,提供 calendar 对象的 JSON 表示形式。In the request body, supply a JSON representation of calendar object.
响应Response
如果成功,此方法在响应正文中返回 201 Created
响应代码和 calendar 对象。If successful, this method returns 201 Created
response code and calendar object in the response body.
示例Example
请求Request
下面是一个请求示例。Here is an example of the request.
POST https://graph.microsoft.com/v1.0/me/calendars
Content-type: application/json
{
"name": "Volunteer"
}
在请求正文中,提供 calendar 对象的 JSON 表示形式。In the request body, supply a JSON representation of calendar 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/1.1 201 Created
Content-type: application/json
{
"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#me/calendars/$entity",
"@odata.id":"https://graph.microsoft.com/v1.0/users('266efe5a-0fd7-4edd-877b-b2d1e561f193@ae01a323-3934-4475-a32d-af1274312bb0')/calendars('AAMkADJmMVAAA=')",
"id":"AAMkADJmMVAAA=",
"name":"Volunteer",
"color":"auto",
"changeKey":"DxYSthXJXEWwAQSYQnXvIgAAIxGttg==",
"canShare":true,
"canViewPrivateItems":true,
"hexColor": "",
"canEdit":true,
"allowedOnlineMeetingProviders": [
"teamsForBusiness"
],
"defaultOnlineMeetingProvider": "teamsForBusiness",
"isTallyingResponses": true,
"isRemovable": false,
"owner":{
"name":"Samantha Booth",
"address":"samanthab@adatum.onmicrosoft.com"
}
}