Onfleet · Arazzo Workflow

Onfleet Register Task Webhook

Version 1.0.0

Register a webhook, fetch the signing secret, then confirm it is listed.

1 workflow 1 source API 1 provider
View Spec View on GitHub Last Mile DeliveryLogisticsFleet ManagementDispatchRoute OptimizationCouriersDriversTrackingGeocodingWebhookArtificial IntelligenceSoftware-as-a-ServiceArazzoWorkflows

Provider

onfleet

Workflows

register-task-webhook
Create a webhook, fetch the signing secret, and confirm it is registered.
Registers a webhook for a task trigger, retrieves the signing secret, and verifies the webhook appears in the webhook list.
3 steps inputs: name, threshold, trigger, url outputs: secret, webhookId, webhooks
1
createWebhook
Register the webhook bound to the supplied trigger and URL.
2
getSecret
Fetch the signing secret used to verify incoming webhook payloads.
3
confirmListed
List all webhooks to confirm the new registration is present.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Onfleet Register Task Webhook
  summary: Register a webhook, fetch the signing secret, then confirm it is listed.
  description: >-
    Sets up real-time event delivery for task lifecycle changes. The workflow
    creates a webhook bound to a single trigger id pointing at an HTTPS URL,
    fetches the organization's webhook signing secret so incoming payloads can be
    verified, and then lists all webhooks to confirm the new registration is
    present. Every step spells out its request inline so the flow can be read and
    executed without opening the underlying OpenAPI descriptions.
  version: 1.0.0
sourceDescriptions:
- name: webhooksApi
  url: ../openapi/onfleet-webhooks-api-openapi.yml
  type: openapi
workflows:
- workflowId: register-task-webhook
  summary: Create a webhook, fetch the signing secret, and confirm it is registered.
  description: >-
    Registers a webhook for a task trigger, retrieves the signing secret, and
    verifies the webhook appears in the webhook list.
  inputs:
    type: object
    required:
    - url
    - trigger
    properties:
      url:
        type: string
        description: The HTTPS URL Onfleet will POST event payloads to.
      name:
        type: string
        description: A human-readable name for the webhook.
      trigger:
        type: integer
        description: The trigger id (0-30) the webhook fires on.
      threshold:
        type: integer
        description: Threshold value for triggers that compare against one (e.g. taskEta).
  steps:
  - stepId: createWebhook
    description: Register the webhook bound to the supplied trigger and URL.
    operationId: createWebhook
    requestBody:
      contentType: application/json
      payload:
        url: $inputs.url
        name: $inputs.name
        trigger: $inputs.trigger
        threshold: $inputs.threshold
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      webhookId: $response.body#/id
      trigger: $response.body#/trigger
  - stepId: getSecret
    description: Fetch the signing secret used to verify incoming webhook payloads.
    operationId: getWebhookSecret
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      secret: $response.body#/secret
  - stepId: confirmListed
    description: List all webhooks to confirm the new registration is present.
    operationId: listWebhooks
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      webhooks: $response.body
  outputs:
    webhookId: $steps.createWebhook.outputs.webhookId
    secret: $steps.getSecret.outputs.secret
    webhooks: $steps.confirmListed.outputs.webhooks

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/onfleet-register-task-webhook-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.