Edit

fileStorageContainer: getByUser

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Get a list of fileStorageContainer objects that are owned by a user (either as owner or as principalOwner). You can also filter the results to only list containers for which the user is the principalOwner.

Important

  • Only supported for delegated admin requests. Requests made without a user context (app-only authentication) or in a non-admin context aren't currently supported.

Permissions

Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.

Permission type Least privileged permissions Higher privileged permissions
Delegated (work or school account) FileStorageContainer.Selected FileStorageContainer.Manage.All
Delegated (personal Microsoft account) FileStorageContainer.Selected Not available.
Application FileStorageContainer.Selected Not available.

HTTP request

GET /storage/fileStorage/containers/getByUser(userPrincipalName='{userPrincipalName}')
GET /storage/fileStorage/containers/getByUser(userPrincipalName='{userPrincipalName}', role='{role}')

Function parameters

In the request URL, provide the following query parameters with values.

Parameter Type Description
userPrincipalName String The user principal name of the user whose containers are being fetched. Required.
role String The user's role in the container. Allowed values are owner and principalOwner. Optional.

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.

Request body

Don't supply a request body for this method.

Response

If successful, this function returns a 200 OK response code and a fileStorageContainer collection in the response body.

Examples

Request

The following example shows a request.

GET https://graph.microsoft.com/beta/storage/fileStorage/containers/getByUser(userPrincipalName='user@contoso.onmicrosoft.com', role='owner')

Response

The following example shows the response.

HTTP/1.1 200 OK
Content-Type: application/json

{
  "@odata.context": "https://graph.microsoft.com/beta/$metadata#storage/fileStorage/containers",
  "@odata.count": 1,
  "value": [
    {
      "@odata.type": "#microsoft.graph.fileStorageContainer",
      "id": "b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_5Z",
      "displayName": "My File Storage Container",
      "containerTypeId": "e2756c4d-fa33-4452-9c36-2325686e1082",
      "createdDateTime": "2021-11-24T15:41:52.347Z",
      "ownershipType": "userOwned",
      "settings": {
        "isOcrEnabled": false
      }
    }
  ]
}