{ "opencollection": "1.0.0", "info": { "name": "Intralinks Authentication API", "version": "2.0.0" }, "items": [ { "info": { "name": "Authentication", "type": "folder" }, "items": [ { "info": { "name": "Intralinks Obtain OAuth Token", "type": "http" }, "http": { "method": "POST", "url": "https://api.intralinks.com/v2/oauth/token", "body": { "type": "form-urlencoded", "data": [ { "name": "grant_type", "value": "" }, { "name": "client_id", "value": "" }, { "name": "client_secret", "value": "" }, { "name": "code", "value": "" }, { "name": "redirect_uri", "value": "" }, { "name": "refresh_token", "value": "" } ] } }, "docs": "Authenticates and returns an OAuth access token and refresh token. The access token is valid for 60 minutes and the refresh token for 30 days." }, { "info": { "name": "Intralinks Revoke OAuth Token", "type": "http" }, "http": { "method": "POST", "url": "https://api.intralinks.com/v2/oauth/revoke", "body": { "type": "form-urlencoded", "data": [ { "name": "token", "value": "" } ] } }, "docs": "Revokes an access token or refresh token to log the user out." } ] } ], "bundled": true }