action microsoft_get_site { label: "Get site" description: "Fetch a SharePoint site by its composite id (from search sites results)." provider: microsoft method: GET path: "/v1.0/sites/{site_id}" scopes: ["Sites.Read.All"] input: @json { { "type": "object", "required": ["site_id"], "additionalProperties": false, "properties": { "site_id": { "type": "string", "description": "Site id (composite id from search results)." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "displayName": { "type": "string" }, "name": { "type": "string" }, "webUrl": { "type": "string" }, "siteCollection": { "type": "object" } } } } }