{ "opencollection": "1.0.0", "info": { "name": "Epic Online Services Web Achievements Auth API", "version": "1.0.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://api.epicgames.dev/auth/v1/oauth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Auth", "type": "folder" }, "items": [ { "info": { "name": "Get an OAuth 2.0 access token", "type": "http" }, "http": { "method": "POST", "url": "https://api.epicgames.dev/auth/v1/oauth/token", "body": { "type": "form-urlencoded", "data": [ { "name": "grant_type", "value": "" }, { "name": "code", "value": "" }, { "name": "refresh_token", "value": "" }, { "name": "deployment_id", "value": "" }, { "name": "scope", "value": "" } ] } }, "docs": "Exchange client credentials, an authorization code, an exchange code, a refresh token, or a device-code grant for an EOS access token." }, { "info": { "name": "Verify an OAuth access token", "type": "http" }, "http": { "method": "GET", "url": "https://api.epicgames.dev/auth/v1/oauth/verify" }, "docs": "Verify an OAuth access token" }, { "info": { "name": "Revoke an OAuth token", "type": "http" }, "http": { "method": "POST", "url": "https://api.epicgames.dev/auth/v1/oauth/revoke", "body": { "type": "form-urlencoded", "data": [ { "name": "token", "value": "" } ] } }, "docs": "Revoke an OAuth token" }, { "info": { "name": "Get Epic account info", "type": "http" }, "http": { "method": "GET", "url": "https://api.epicgames.dev/auth/v1/accounts/:accountId", "params": [ { "name": "accountId", "value": "", "type": "path" } ] }, "docs": "Get Epic account info" } ] } ], "bundled": true }