{ "opencollection": "1.0.0", "info": { "name": "LinkedIn Profile API", "version": "2.0" }, "request": { "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://www.linkedin.com/oauth/v2/authorization", "accessTokenUrl": "https://www.linkedin.com/oauth/v2/accessToken", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Profile", "type": "folder" }, "items": [ { "info": { "name": "Get current member profile", "type": "http" }, "http": { "method": "GET", "url": "https://api.linkedin.com/v2/me", "params": [ { "name": "projection", "value": "", "type": "query", "description": "Fields to return" } ] }, "docs": "Returns the profile of the authenticated member." }, { "info": { "name": "Get member by ID", "type": "http" }, "http": { "method": "GET", "url": "https://api.linkedin.com/v2/people/(id::personId)", "params": [ { "name": "personId", "value": "", "type": "path", "description": "Member person ID" } ] }, "docs": "Returns the profile of a member by their person ID." } ] } ], "bundled": true }