{ "opencollection": "1.0.0", "info": { "name": "Incognia Authentication API", "version": "v2" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Authentication", "type": "folder" }, "items": [ { "info": { "name": "Create an access token", "type": "http" }, "http": { "method": "POST", "url": "https://api.incognia.com/api/v2/token", "body": { "type": "form-urlencoded", "data": [ { "name": "grant_type", "value": "" } ] }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Exchange client_id and client_secret (sent via HTTP Basic auth) for a short-lived OAuth 2.0 bearer access token using the client_credentials grant. Send Content-Type application/x-www-form-urlencoded." } ] } ], "bundled": true }