HomeCurrent environment: development
Run All TestsIntegrations SimulationMock Configurations

commerce

Environment URLs & Endpoints

developmentCurrent
TokenOpenAPI

Client Configuration

URL: $env.COMMERCE_API_URL

Token Configurations

URL: $env.COMMERCE_API_URL$secrets.COMMERCE_TOKEN_URL
Method: POST
Body:
client_id: $secrets.COMMERCE_CLIENT_ID
client_secret: $secrets.COMMERCE_CLIENT_SECRET
grant_type: client_credentials
scope: $secrets.COMMERCE_SCOPE

OpenAPI Spec

URL: ./openapi.json
Base Configuration
{
  "basePath": "$env.COMMERCE_API_URL",
  "openApi": {
    "url": "./openapi.json"
  },
  "token": {
    "body": {
      "client_id": "$secrets.COMMERCE_CLIENT_ID",
      "client_secret": "$secrets.COMMERCE_CLIENT_SECRET",
      "grant_type": "client_credentials",
      "scope": "$secrets.COMMERCE_SCOPE"
    },
    "url": "$secrets.COMMERCE_TOKEN_URL"
  },
  "name": "commerce",
  "org": "stacc",
  "module": "integrations",
  "component": "commerce"
}