{ "opencollection": "1.0.0", "info": { "name": "Avalara Authentication API", "version": "1.0" }, "items": [ { "info": { "name": "Authentication", "type": "folder" }, "items": [ { "info": { "name": "Avalara Get Authentication Token", "type": "http" }, "http": { "method": "POST", "url": "https://api.certcapture.com/v2/auth/token", "body": { "type": "json", "data": "{}" } }, "docs": "Generates an authentication token for API access." }, { "info": { "name": "Avalara Obtain an Access Token", "type": "http" }, "http": { "method": "POST", "url": "https://api.certcapture.com/v2/connect/token", "body": { "type": "form-urlencoded", "data": [ { "name": "grant_type", "value": "" }, { "name": "client_id", "value": "" }, { "name": "client_secret", "value": "" }, { "name": "scope", "value": "" }, { "name": "code", "value": "" }, { "name": "redirect_uri", "value": "" }, { "name": "assertion", "value": "" } ] } }, "docs": "Obtains an OAuth 2.0 access token using client credentials, authorization code, or SAML assertion grant types." }, { "info": { "name": "Avalara Authorization Endpoint", "type": "http" }, "http": { "method": "GET", "url": "https://api.certcapture.com/v2/connect/authorize", "params": [ { "name": "response_type", "value": "", "type": "query" }, { "name": "client_id", "value": "", "type": "query" }, { "name": "redirect_uri", "value": "", "type": "query" }, { "name": "scope", "value": "", "type": "query" }, { "name": "state", "value": "", "type": "query" } ] }, "docs": "Initiates the OAuth 2.0 authorization code flow by redirecting the user to the Avalara login page." }, { "info": { "name": "Avalara Revoke a Token", "type": "http" }, "http": { "method": "POST", "url": "https://api.certcapture.com/v2/connect/revocation", "body": { "type": "form-urlencoded", "data": [ { "name": "token", "value": "" }, { "name": "token_type_hint", "value": "" }, { "name": "client_id", "value": "" }, { "name": "client_secret", "value": "" } ] } }, "docs": "Revokes an active access or refresh token." } ] } ], "bundled": true }