API Docs / Schemas / StorageLocationDto

StorageLocationDto

A group of selectable storage locations available through a connection
(e.g. a SharePoint site containing document libraries).

Properties

Name Type Description
idstring

Platform-specific identifier for this group (e.g. SharePoint site ID).

Platform-specific identifier for this group (e.g. SharePoint site ID).

namestring

Display name of the group (e.g. "Client A Site").

Display name of the group (e.g. "Client A Site").

itemsarray of StorageLocationItemDto

Selectable storage locations within this group.

Selectable storage locations within this group.

JSON Example

{
  "id": "string",
  "name": "string",
  "items": [
    {
      "driveId": "...",
      "name": "...",
      "webUrl": "..."
    }
  ]
}