parcelLab · Arazzo Workflow

parcelLab Send Event and Refresh Status

Version 1.0.0

Push a warehouse or shop event into the timeline, then refresh the order status.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Post-PurchaseE-CommerceTrackingReturnsShippingDeliveryCustomer ExperienceLogisticsCommunicationsGermanyArazzoWorkflows

Provider

parcellab

Workflows

send-event-and-refresh
Add a custom event to a tracking and verify it on the refreshed order status.
Posts a shop or warehouse event for a courier+tracking pair and then fetches the live-refreshed order info to surface the updated checkpoint list.
2 steps inputs: account, authToken, courier, eventDetails, eventStatus, eventTimestamp, location, trackingNumber outputs: checkpoints, trackingStatus
1
sendEvent
Push the custom shop or warehouse event into the order timeline for the given courier and tracking number.
2
refreshStatus
Read the order info with a live refresh so the newly sent event appears in the tracking checkpoints.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: parcelLab Send Event and Refresh Status
  summary: Push a warehouse or shop event into the timeline, then refresh the order status.
  description: >-
    Warehouses and shops emit lifecycle milestones (pick, pack, dispatch) that
    belong in the parcelLab tracking timeline. This workflow sends a custom shop
    event identified by courier and tracking number, then reads back the order
    info so the caller can confirm the new checkpoint has landed on the tracking.
    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.10
  - 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.10
      capability_name: Event Capture and Status Management
      spec: parcellab-events-api-openapi.yml
      confidence: 0.7
    - capability_id: BC-2510.20
      capability_name: Shipment Tracking Management
      spec: parcellab-orders-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: eventsApi
  url: ../openapi/parcellab-events-api-openapi.yml
  type: openapi
- name: ordersApi
  url: ../openapi/parcellab-orders-api-openapi.yml
  type: openapi
workflows:
- workflowId: send-event-and-refresh
  summary: Add a custom event to a tracking and verify it on the refreshed order status.
  description: >-
    Posts a shop or warehouse event for a courier+tracking pair and then fetches
    the live-refreshed order info to surface the updated checkpoint list.
  inputs:
    type: object
    required:
    - authToken
    - account
    - courier
    - trackingNumber
    - eventTimestamp
    - eventStatus
    properties:
      authToken:
        type: string
        description: Authorization header value for the parcelLab API.
      account:
        type: integer
        description: The parcelLab account id that owns the tracking.
      courier:
        type: string
        description: Courier code identifying the shipment.
      trackingNumber:
        type: string
        description: Tracking number identifying the shipment.
      eventTimestamp:
        type: string
        description: ISO 8601 timestamp of the event.
      eventStatus:
        type: string
        description: Status label for the event (e.g. "OrderProcessed").
      eventDetails:
        type: string
        description: Free-text detail for the event.
      location:
        type: string
        description: Location where the event occurred.
  steps:
  - stepId: sendEvent
    description: >-
      Push the custom shop or warehouse event into the order timeline for the
      given courier and tracking number.
    operationId: sendShopEvent
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authToken
    requestBody:
      contentType: application/json
      payload:
        event_timestamp: $inputs.eventTimestamp
        event_status: $inputs.eventStatus
        event_details: $inputs.eventDetails
        location: $inputs.location
        account: $inputs.account
        courier: $inputs.courier
        tracking_number: $inputs.trackingNumber
    successCriteria:
    - condition: $statusCode == 204
    onSuccess:
    - name: accepted
      type: goto
      stepId: refreshStatus
      criteria:
      - condition: $statusCode == 204
  - stepId: refreshStatus
    description: >-
      Read the order info with a live refresh so the newly sent event appears in
      the tracking checkpoints.
    operationId: getOrderInfo
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authToken
    - name: account
      in: query
      value: $inputs.account
    - name: tracking_number
      in: query
      value: $inputs.trackingNumber
    - name: courier
      in: query
      value: $inputs.courier
    - name: live_refresh
      in: query
      value: true
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      trackingStatus: $response.body#/trackings/0/status
      checkpoints: $response.body#/trackings/0/checkpoints
      latestCheckpointStatus: $response.body#/trackings/0/checkpoints/0/status
  outputs:
    trackingStatus: $steps.refreshStatus.outputs.trackingStatus
    checkpoints: $steps.refreshStatus.outputs.checkpoints

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/parcellab-send-event-and-refresh-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.