action microsoft_get_me { label: "Get my profile" description: "Fetch the signed-in user's profile." provider: microsoft method: GET path: "/v1.0/me" scopes: ["User.Read"] input: @json { { "type": "object", "additionalProperties": false, "properties": { "$select": { "type": "string", "description": "Comma-separated list of properties to return." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "displayName": { "type": "string" }, "mail": { "type": "string" }, "userPrincipalName": { "type": "string" }, "jobTitle": { "type": "string" } } } } }