Salla · Arazzo Workflow

Salla Order Fulfillment

Version 1.0.0

Read an order, create its shipment, and advance the order status.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub ArabicE-CommerceGCCHeadless CommerceMerchantMENAOnline StoresRetailSaudi ArabiaSMBStorefrontArazzoWorkflows

Provider

salla

Workflows

fulfill-order
Create a shipment for an order and advance its status.
Reads an order and its items, creates a shipment against it, and updates the order status to reflect that fulfillment has started.
4 steps inputs: orderId, shipmentPayload, statusNote, statusSlug outputs: orderId, previousStatus
1
getOrder
Read the order in full to confirm it exists and is in a fulfillable state.
2
listItems
List the order line items to confirm what is being shipped.
3
createShipment
Create a shipment against the order with the supplied courier and tracking details.
4
advanceStatus
Advance the order status to reflect that fulfillment has started.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Salla Order Fulfillment
  summary: Read an order, create its shipment, and advance the order status.
  description: >-
    The core fulfillment flow for a Salla merchant. The order is read in full,
    its line items are listed to confirm what is being shipped, a shipment is
    created against the order with a courier and tracking number, and finally
    the order status is advanced to reflect that it has shipped. 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
  x-realizes-capability-ids:
  - BC-520.50
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-520.50
      capability_name: Logistics Operations Management
      spec: salla-shipments-api-openapi.yml
      confidence: 0.72
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: ordersApi
  url: ../openapi/salla-orders-api-openapi.yml
  type: openapi
- name: shipmentsApi
  url: ../openapi/salla-shipments-api-openapi.yml
  type: openapi
workflows:
- workflowId: fulfill-order
  summary: Create a shipment for an order and advance its status.
  description: >-
    Reads an order and its items, creates a shipment against it, and updates
    the order status to reflect that fulfillment has started.
  inputs:
    type: object
    required:
    - orderId
    - shipmentPayload
    - statusSlug
    properties:
      orderId:
        type: integer
        description: The order to fulfill.
      shipmentPayload:
        type: object
        description: The shipment body (courier, tracking, packages) to create against the order.
      statusSlug:
        type: string
        description: The order status slug to advance to (e.g. "in_progress", "shipped").
      statusNote:
        type: string
        description: Optional note recorded with the status change.
  steps:
  - stepId: getOrder
    description: >-
      Read the order in full to confirm it exists and is in a fulfillable
      state.
    operationId: getOrder
    parameters:
    - name: order_id
      in: path
      value: $inputs.orderId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      currentStatus: $response.body#/data/status/slug
      canCancel: $response.body#/data/can_cancel
  - stepId: listItems
    description: >-
      List the order line items to confirm what is being shipped.
    operationId: listOrderItems
    parameters:
    - name: order_id
      in: path
      value: $inputs.orderId
    successCriteria:
    - condition: $statusCode == 200
  - stepId: createShipment
    description: >-
      Create a shipment against the order with the supplied courier and
      tracking details.
    operationId: createShipment
    requestBody:
      contentType: application/json
      payload: $inputs.shipmentPayload
    successCriteria:
    - condition: $statusCode == 201
  - stepId: advanceStatus
    description: >-
      Advance the order status to reflect that fulfillment has started.
    operationId: updateOrderStatus
    parameters:
    - name: order_id
      in: path
      value: $inputs.orderId
    requestBody:
      contentType: application/json
      payload:
        slug: $inputs.statusSlug
        note: $inputs.statusNote
    successCriteria:
    - condition: $statusCode == 200
  outputs:
    orderId: $inputs.orderId
    previousStatus: $steps.getOrder.outputs.currentStatus

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/salla-order-fulfillment-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.