action microsoft_get_drive { label: "Get drive" description: "Fetch the signed-in user's OneDrive metadata, including its id and storage quota." provider: microsoft method: GET path: "/v1.0/me/drive" scopes: ["Files.ReadWrite"] output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "driveType": { "type": "string" }, "owner": { "type": "object" }, "quota": { "type": "object" } } } } }