Swell · Arazzo Workflow

Swell Create Cart and Apply Coupon

Version 1.0.0

Create a backend cart with items and apply a coupon code to it.

1 workflow 1 source API 1 provider
View Spec View on GitHub CommerceHeadless CommerceAPI-FirstB2CB2BSubscriptionMarketplacesWholesaleStorefrontCheckoutPaymentsCartOrderCatalogInternationalizationArazzoWorkflows

Provider

swell-io

Workflows

create-cart-and-apply-coupon
Create a cart with items, then apply a coupon code.
Posts a cart with line items, then updates the cart to set a coupon code.
2 steps inputs: account_id, coupon_code, currency, items outputs: cartId, couponCode, grandTotal
1
createCartStep
Create a cart for the account with the supplied line items.
2
applyCouponStep
Update the cart to set the coupon code so the discount applies.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Swell Create Cart and Apply Coupon
  summary: Create a backend cart with items and apply a coupon code to it.
  description: >-
    A back-office cart-building flow with discounting. The workflow creates a
    cart for an account with line items, captures its id, and then updates that
    cart to set a coupon code so the discount is reflected in the cart totals.
    Each step spells out its request inline so the flow can be read and executed
    without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: cartsApi
  url: ../openapi/swell-io-carts-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-cart-and-apply-coupon
  summary: Create a cart with items, then apply a coupon code.
  description: >-
    Posts a cart with line items, then updates the cart to set a coupon code.
  inputs:
    type: object
    required:
    - account_id
    - items
    - coupon_code
    properties:
      account_id:
        type: string
        description: The account the cart belongs to.
      items:
        type: array
        description: Line items to place in the cart.
        items:
          type: object
      coupon_code:
        type: string
        description: The coupon code to apply to the cart.
      currency:
        type: string
        description: ISO 4217 currency code.
  steps:
  - stepId: createCartStep
    description: Create a cart for the account with the supplied line items.
    operationId: createCart
    requestBody:
      contentType: application/json
      payload:
        account_id: $inputs.account_id
        items: $inputs.items
        currency: $inputs.currency
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      cartId: $response.body#/id
      subTotal: $response.body#/sub_total
  - stepId: applyCouponStep
    description: Update the cart to set the coupon code so the discount applies.
    operationId: updateCart
    parameters:
    - name: id
      in: path
      value: $steps.createCartStep.outputs.cartId
    requestBody:
      contentType: application/json
      payload:
        coupon_code: $inputs.coupon_code
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      cartId: $response.body#/id
      couponCode: $response.body#/coupon_code
      discountTotal: $response.body#/discount_total
      grandTotal: $response.body#/grand_total
  outputs:
    cartId: $steps.applyCouponStep.outputs.cartId
    couponCode: $steps.applyCouponStep.outputs.couponCode
    grandTotal: $steps.applyCouponStep.outputs.grandTotal

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/swell-io-apply-coupon-to-cart-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.