Sendcloud · Arazzo Workflow

Sendcloud Bulk Print Labels for Recent Parcels

Version 1.0.0

List parcels filtered by status, then request a single bulk PDF of their labels.

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

Provider

sendcloud

Workflows

bulk-print-labels
List ready-to-send parcels and bulk print their labels in one PDF.
Lists parcels matching a given parcel status, collects the first few parcel ids, and requests a bulk label PDF for that set of parcels.
2 steps inputs: parcelId1, parcelId2, parcelId3, parcelStatus outputs: firstParcelId, labelPrinterUrl, normalPrinterUrls
1
listParcels
Retrieve a list of parcels filtered by the requested parcel status so the caller can confirm which parcels are ready before printing.
2
bulkPrintLabels
Request a single bulk PDF containing the labels for the supplied parcel ids, returning the normal-printer and label-printer download URLs.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Sendcloud Bulk Print Labels for Recent Parcels
  summary: List parcels filtered by status, then request a single bulk PDF of their labels.
  description: >-
    Retrieves a list of parcels filtered by parcel status, captures the parcel
    ids of the first parcels, then calls the bulk label endpoint with those ids
    to obtain a single combined PDF of all their shipping labels for both normal
    and label printers. 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
sourceDescriptions:
- name: labelsApi
  url: ../openapi/sendcloud-labels-api-openapi.yml
  type: openapi
- name: parcelsApi
  url: ../openapi/sendcloud-parcels-api-openapi.yml
  type: openapi
workflows:
- workflowId: bulk-print-labels
  summary: List ready-to-send parcels and bulk print their labels in one PDF.
  description: >-
    Lists parcels matching a given parcel status, collects the first few parcel
    ids, and requests a bulk label PDF for that set of parcels.
  inputs:
    type: object
    required:
    - parcelStatus
    properties:
      parcelStatus:
        type: integer
        description: The parcel status code to filter the parcel list by (e.g. 1000 for ready to send).
      parcelId1:
        type: integer
        description: First parcel id to include in the bulk label request.
      parcelId2:
        type: integer
        description: Second parcel id to include in the bulk label request.
      parcelId3:
        type: integer
        description: Third parcel id to include in the bulk label request.
  steps:
  - stepId: listParcels
    description: >-
      Retrieve a list of parcels filtered by the requested parcel status so the
      caller can confirm which parcels are ready before printing.
    operationId: sc-public-v2-scp-get-all_parcels
    parameters:
    - name: parcel_status
      in: query
      value: $inputs.parcelStatus
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstParcelId: $response.body#/parcels/0/id
  - stepId: bulkPrintLabels
    description: >-
      Request a single bulk PDF containing the labels for the supplied parcel
      ids, returning the normal-printer and label-printer download URLs.
    operationId: sc-public-v2-scp-post-label_by_parcel_ids
    requestBody:
      contentType: application/json
      payload:
        label:
          parcels:
          - $inputs.parcelId1
          - $inputs.parcelId2
          - $inputs.parcelId3
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      normalPrinterUrls: $response.body#/label/normal_printer
      labelPrinterUrl: $response.body#/label/label_printer
  outputs:
    firstParcelId: $steps.listParcels.outputs.firstParcelId
    normalPrinterUrls: $steps.bulkPrintLabels.outputs.normalPrinterUrls
    labelPrinterUrl: $steps.bulkPrintLabels.outputs.labelPrinterUrl

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-bulk-print-labels-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.