action linkedin_get_me { label: "Get current member" description: "Returns the LinkedIn member profile for the authorized token (OpenID userinfo)." provider: linkedin method: GET path: "/v2/userinfo" scopes: ["openid", "profile", "email"] input: @json { { "type": "object", "additionalProperties": false, "properties": {} } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "sub": { "type": "string" }, "name": { "type": "string" }, "given_name": { "type": "string" }, "family_name": { "type": "string" }, "email": { "type": "string" }, "picture": { "type": "string" } } } } }