BigCommerce · Capability

BigCommerce Channels — Site Checkout URL

BigCommerce Channels — Site Checkout URL. 2 operations. Lead operation: BigCommerce Upsert a Siteʼs Checkout URL. Self-contained Naftiko capability covering one Bigcommerce business surface.

Run with Naftiko BigcommerceSite Checkout URL

What You Can Do

PUT
Updatecheckouturl — BigCommerce Upsert a Siteʼs Checkout URL
/v1/channels/{channel-id}/site/checkout-url
DELETE
Deletecheckouturl — BigCommerce Delete a Siteʼs Checkout URL
/v1/channels/{channel-id}/site/checkout-url

MCP Tools

bigcommerce-upsert-site-s-checkout-url

BigCommerce Upsert a Siteʼs Checkout URL

idempotent
bigcommerce-delete-site-s-checkout-url

BigCommerce Delete a Siteʼs Checkout URL

idempotent

Capability Spec

channels-site-checkout-url.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: BigCommerce Channels — Site Checkout URL
  description: 'BigCommerce Channels — Site Checkout URL. 2 operations. Lead operation: BigCommerce Upsert a Siteʼs Checkout
    URL. Self-contained Naftiko capability covering one Bigcommerce business surface.'
  tags:
  - Bigcommerce
  - Site Checkout URL
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BIGCOMMERCE_API_KEY: BIGCOMMERCE_API_KEY
capability:
  consumes:
  - type: http
    namespace: channels-site-checkout-url
    baseUri: https://api.bigcommerce.com/stores/{store_hash}/v3
    description: BigCommerce Channels — Site Checkout URL business capability. Self-contained, no shared references.
    resources:
    - name: channels-channel_id-site-checkout-url
      path: /channels/{channel_id}/site/checkout-url
      operations:
      - name: updatecheckouturl
        method: PUT
        description: BigCommerce Upsert a Siteʼs Checkout URL
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: deletecheckouturl
        method: DELETE
        description: BigCommerce Delete a Siteʼs Checkout URL
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: X-Auth-Token
      value: '{{env.BIGCOMMERCE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: channels-site-checkout-url-rest
    port: 8080
    description: REST adapter for BigCommerce Channels — Site Checkout URL. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/channels/{channel-id}/site/checkout-url
      name: channels-channel-id-site-checkout-url
      description: REST surface for channels-channel_id-site-checkout-url.
      operations:
      - method: PUT
        name: updatecheckouturl
        description: BigCommerce Upsert a Siteʼs Checkout URL
        call: channels-site-checkout-url.updatecheckouturl
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletecheckouturl
        description: BigCommerce Delete a Siteʼs Checkout URL
        call: channels-site-checkout-url.deletecheckouturl
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: channels-site-checkout-url-mcp
    port: 9090
    transport: http
    description: MCP adapter for BigCommerce Channels — Site Checkout URL. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: bigcommerce-upsert-site-s-checkout-url
      description: BigCommerce Upsert a Siteʼs Checkout URL
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: channels-site-checkout-url.updatecheckouturl
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: bigcommerce-delete-site-s-checkout-url
      description: BigCommerce Delete a Siteʼs Checkout URL
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: channels-site-checkout-url.deletecheckouturl
      outputParameters:
      - type: object
        mapping: $.