action microsoft_list_site_drives { label: "List site drives" description: "List the document libraries of a SharePoint site. Use the returned drive ids with the drive item actions." provider: microsoft method: GET path: "/v1.0/sites/{site_id}/drives" scopes: ["Sites.Read.All"] input: @json { { "type": "object", "required": ["site_id"], "additionalProperties": false, "properties": { "site_id": { "type": "string", "description": "Site id." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "value": { "type": "array", "items": { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "driveType": { "type": "string" }, "webUrl": { "type": "string" } } } } } } } }