BigCommerce · Capability

BigCommerce Checkouts — Checkout Billing Address

BigCommerce 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

checkouts-checkout-billing-address.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: BigCommerce Checkouts — Checkout Billing Address
  description: 'BigCommerce 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: checkouts-checkout-billing-address
    baseUri: https://api.bigcommerce.com/stores/{store_hash}/v3
    description: BigCommerce 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: 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: addressId
          in: path
          type: integer
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: X-Auth-Token
      value: '{{env.BIGCOMMERCE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: checkouts-checkout-billing-address-rest
    port: 8080
    description: REST adapter for BigCommerce 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: checkouts-checkout-billing-address.addcheckoutbillingaddress
        with:
          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: checkouts-checkout-billing-address.updatecheckoutbillingaddress
        with:
          addressId: rest.addressId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: checkouts-checkout-billing-address-mcp
    port: 9090
    transport: http
    description: MCP adapter for BigCommerce 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: checkouts-checkout-billing-address.addcheckoutbillingaddress
      with:
        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: checkouts-checkout-billing-address.updatecheckoutbillingaddress
      with:
        addressId: tools.addressId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.