列出 NamedItemCollectionList NamedItemCollection
检索 nameditem 对象的列表。Retrieve a list of nameditem objects.
权限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) | Files.ReadWriteFiles.ReadWrite |
委派(个人 Microsoft 帐户)Delegated (personal Microsoft account) | 不支持。Not supported. |
应用程序Application | 不支持。Not supported. |
HTTP 请求HTTP request
GET /workbook/names
可选的查询参数Optional query parameters
此方法支持 OData 查询参数 来帮助自定义响应。This method supports the OData Query Parameters to help customize the response.
请求标头Request headers
名称Name | 说明Description |
---|---|
AuthorizationAuthorization | Bearer {token}。必需。Bearer {token}. Required. |
Workbook-Session-IdWorkbook-Session-Id | 确定是否保留更改的工作簿会话 ID。可选。Workbook session Id that determines if changes are persisted or not. Optional. |
请求正文Request body
请勿提供此方法的请求正文。Do not supply a request body for this method.
响应Response
如果成功, 此方法在响应200 OK
正文中返回响应代码和WorkbookNamedItem对象集合。If successful, this method returns a 200 OK
response code and collection of WorkbookNamedItem objects in the response body.
示例Example
请求Request
下面是一个请求示例。Here is an example of the request.
GET https://graph.microsoft.com/v1.0/me/drive/items/{id}/workbook/names
响应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 200 OK
Content-type: application/json
Content-length: 136
{
"value": [
{
"name": "name-value",
"type": "type-value",
"value": {
},
"visible": true
}
]
}