BigCommerce · Capability

BigCommerce Storefront Checkouts — Checkout Billing Address

BigCommerce Storefront Checkouts — Checkout Billing Address. 2 operations. Lead operation: BigCommerce Add Checkout Billing Address. Self-contained Naftiko capability covering one Bigcommerce business surface.

Run with Naftiko BigcommerceCheckout Billing Address

What You Can Do

POST
Addcheckoutbillingaddress — BigCommerce Add Checkout Billing Address
/v1/checkouts/{checkoutid}/billing-address
PUT
Updatecheckoutbillingaddress — BigCommerce Update Checkout Billing Address
/v1/checkouts/{checkoutid}/billing-address/{addressid}

MCP Tools

bigcommerce-add-checkout-billing-address

BigCommerce Add Checkout Billing Address

bigcommerce-update-checkout-billing-address

BigCommerce Update Checkout Billing Address

idempotent

Capability Spec

storefront-checkouts-checkout-billing-address.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: BigCommerce Storefront Checkouts — Checkout Billing Address
  description: 'BigCommerce Storefront Checkouts — Checkout Billing Address. 2 operations. Lead operation: BigCommerce Add
    Checkout Billing Address. Self-contained Naftiko capability covering one Bigcommerce business surface.'
  tags:
  - Bigcommerce
  - Checkout Billing Address
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BIGCOMMERCE_API_KEY: BIGCOMMERCE_API_KEY
capability:
  consumes:
  - type: http
    namespace: storefront-checkouts-checkout-billing-address
    baseUri: https://{store_domain}/api/storefront
    description: BigCommerce Storefront Checkouts — Checkout Billing Address business capability. Self-contained, no shared
      references.
    resources:
    - name: checkouts-checkoutId-billing-address
      path: /checkouts/{checkoutId}/billing-address
      operations:
      - name: addcheckoutbillingaddress
        method: POST
        description: BigCommerce Add Checkout Billing Address
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: checkoutId
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: checkouts-checkoutId-billing-address-addressId
      path: /checkouts/{checkoutId}/billing-address/{addressId}
      operations:
      - name: updatecheckoutbillingaddress
        method: PUT
        description: BigCommerce Update Checkout Billing Address
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: checkoutId
          in: path
          type: string
          required: true
        - name: addressId
          in: path
          type: number
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
  exposes:
  - type: rest
    namespace: storefront-checkouts-checkout-billing-address-rest
    port: 8080
    description: REST adapter for BigCommerce Storefront Checkouts — Checkout Billing Address. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/checkouts/{checkoutid}/billing-address
      name: checkouts-checkoutid-billing-address
      description: REST surface for checkouts-checkoutId-billing-address.
      operations:
      - method: POST
        name: addcheckoutbillingaddress
        description: BigCommerce Add Checkout Billing Address
        call: storefront-checkouts-checkout-billing-address.addcheckoutbillingaddress
        with:
          checkoutId: rest.checkoutId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/checkouts/{checkoutid}/billing-address/{addressid}
      name: checkouts-checkoutid-billing-address-addressid
      description: REST surface for checkouts-checkoutId-billing-address-addressId.
      operations:
      - method: PUT
        name: updatecheckoutbillingaddress
        description: BigCommerce Update Checkout Billing Address
        call: storefront-checkouts-checkout-billing-address.updatecheckoutbillingaddress
        with:
          checkoutId: rest.checkoutId
          addressId: rest.addressId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: storefront-checkouts-checkout-billing-address-mcp
    port: 9090
    transport: http
    description: MCP adapter for BigCommerce Storefront Checkouts — Checkout Billing Address. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: bigcommerce-add-checkout-billing-address
      description: BigCommerce Add Checkout Billing Address
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: storefront-checkouts-checkout-billing-address.addcheckoutbillingaddress
      with:
        checkoutId: tools.checkoutId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: bigcommerce-update-checkout-billing-address
      description: BigCommerce Update Checkout Billing Address
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: storefront-checkouts-checkout-billing-address.updatecheckoutbillingaddress
      with:
        checkoutId: tools.checkoutId
        addressId: tools.addressId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.