StorageLocationDto
A group of selectable storage locations available through a connection
(e.g. a SharePoint site containing document libraries).
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Platform-specific identifier for this group (e.g. SharePoint site ID). |
Platform-specific identifier for this group (e.g. SharePoint site ID). | ||
| name | string | Display name of the group (e.g. "Client A Site"). |
Display name of the group (e.g. "Client A Site"). | ||
| items | array of StorageLocationItemDto | Selectable storage locations within this group. |
Selectable storage locations within this group. | ||
JSON Example
{
"id": "string",
"name": "string",
"items": [
{
"driveId": "...",
"name": "...",
"webUrl": "..."
}
]
}