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"
}

core

Environment URLs & Endpoints

developmentCurrent
OpenAPI

Client Configuration

URL: $env.CORE_API_URL
Basic Auth: Bearer / $secrets.CORE_PASSWORD

OpenAPI Spec

URL: ./openapi.json
Basic Auth: Bearer / $secrets.CORE_PASSWORD
Base Configuration
{
  "basePath": "$env.CORE_API_URL",
  "client": {
    "basicAuth": {
      "password": "$secrets.CORE_PASSWORD",
      "username": "Bearer"
    }
  },
  "openApi": {
    "basicAuth": {
      "password": "$secrets.CORE_PASSWORD",
      "username": "Bearer"
    },
    "url": "./openapi.json"
  },
  "name": "core",
  "org": "stacc",
  "module": "integrations",
  "component": "core"
}

nexus-hub

Environment URLs & Endpoints

developmentCurrent
OpenAPI

Client Configuration

URL: $env.NEXUS_HUB_API_URL

OpenAPI Spec

URL: ./openapi.yaml
Base Configuration
{
  "basePath": "$env.NEXUS_HUB_API_URL",
  "client": {},
  "openApi": {
    "url": "./openapi.yaml"
  },
  "name": "nexus-hub",
  "org": "stacc",
  "module": "integrations",
  "component": "nexus-hub"
}