Sendcloud · Arazzo Workflow

Sendcloud Ship an Order Synchronously and Track It

Version 1.0.0

Request a label for an order synchronously, then pull its v3 tracking detail.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub ShippingLogisticsE-CommerceCarriersLabelsReturnsTrackingEuropeArazzoWorkflows

Provider

sendcloud

Workflows

ship-order-sync-track
Synchronously label an existing order and retrieve its tracking detail.
Requests a synchronous label for an order via a chosen integration and shipping option, captures the resulting tracking number, then retrieves the parcel tracking record for that tracking number.
2 steps inputs: contractId, integrationId, orderNumber, senderAddressId, shippingOptionCode outputs: events, parcelId, shipmentId, trackingNumber, trackingUrl
1
shipOrderSync
Request a label for the single order synchronously, returning the parcel id, tracking number, and the label file in the response.
2
trackParcel
Retrieve the v3 parcel tracking record by tracking number to surface the parcel's current status and recent tracking events.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Sendcloud Ship an Order Synchronously and Track It
  summary: Request a label for an order synchronously, then pull its v3 tracking detail.
  description: >-
    Uses the Ship an Order API to request a label for a single existing order
    synchronously, returning the parcel id, tracking number, and the label file
    in the same response, then queries the v3 Parcel Tracking API by tracking
    number to surface the parcel's current status and recent events. Every 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-2510.20
  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-2510.20
      capability_name: Shipment Tracking Management
      spec: sendcloud-parcel-tracking-api-openapi.yml
      confidence: 0.9
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: parcelTrackingApi
  url: ../openapi/sendcloud-parcel-tracking-api-openapi.yml
  type: openapi
- name: shipAnOrderApi
  url: ../openapi/sendcloud-ship-an-order-api-openapi.yml
  type: openapi
workflows:
- workflowId: ship-order-sync-track
  summary: Synchronously label an existing order and retrieve its tracking detail.
  description: >-
    Requests a synchronous label for an order via a chosen integration and
    shipping option, captures the resulting tracking number, then retrieves the
    parcel tracking record for that tracking number.
  inputs:
    type: object
    required:
    - integrationId
    - orderNumber
    properties:
      integrationId:
        type: integer
        description: The id of the integration the order belongs to.
      orderNumber:
        type: string
        description: The order number to request a label for.
      shippingOptionCode:
        type: string
        description: Shipping option code selecting carrier and method (e.g. postnl:standard).
      contractId:
        type: integer
        description: Optional direct carrier contract id to use.
      senderAddressId:
        type: integer
        description: Optional sender address id to ship from.
  steps:
  - stepId: shipOrderSync
    description: >-
      Request a label for the single order synchronously, returning the parcel
      id, tracking number, and the label file in the response.
    operationId: sc-public-v3-orders_labels-post-create_labels_sync
    requestBody:
      contentType: application/json
      payload:
        integration_id: $inputs.integrationId
        sender_address_id: $inputs.senderAddressId
        label_details:
          mime_type: application/pdf
          dpi: 72
        ship_with:
          type: shipping_option_code
          properties:
            contract_id: $inputs.contractId
            shipping_option_code: $inputs.shippingOptionCode
        order:
          order_number: $inputs.orderNumber
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      parcelId: $response.body#/data/0/parcel_id
      shipmentId: $response.body#/data/0/shipment_id
      trackingNumber: $response.body#/data/0/tracking_number
      trackingUrl: $response.body#/data/0/tracking_url
  - stepId: trackParcel
    description: >-
      Retrieve the v3 parcel tracking record by tracking number to surface the
      parcel's current status and recent tracking events.
    operationId: sc-public-v3-shipping_intelligence_engine-get-get_parcel_by_tracking_number
    parameters:
    - name: tracking_number
      in: path
      value: $steps.shipOrderSync.outputs.trackingNumber
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      events: $response.body#/events
      trackingNumbers: $response.body#/tracking_numbers
  outputs:
    parcelId: $steps.shipOrderSync.outputs.parcelId
    shipmentId: $steps.shipOrderSync.outputs.shipmentId
    trackingNumber: $steps.shipOrderSync.outputs.trackingNumber
    trackingUrl: $steps.shipOrderSync.outputs.trackingUrl
    events: $steps.trackParcel.outputs.events

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/sendcloud-ship-order-sync-track-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.