Voltus · Arazzo Workflow

Register a Voltus dispatch webhook and verify it

Version 1.0.0

Move from polling to push: register an HTTPS callback for dispatch.create and dispatch.update, confirm it is listed, then remove it. Delete is permanent.

1 workflow 1 source API 1 provider
View Spec View on GitHub EnergyUnited StatesElectricityDemand ResponseVirtual Power PlantDERGridEnergy MarketsFlexibilityEnergy StorageOpenADRTelemetryArazzoWorkflows

Provider

voltus

Workflows

register-webhook-and-verify
Create a webhook, list webhooks to confirm registration, then delete it.
3 steps inputs: apiKey, callbackUrl outputs: webhookId
1
create-webhook
Subscribe the listener to both dispatch events.
2
list-webhooks
Confirm the registration.
3
delete-webhook
Remove the webhook. This cannot be undone.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Register a Voltus dispatch webhook and verify it
  version: 1.0.0
  description: >-
    Move from polling to push: register an HTTPS callback for dispatch.create and
    dispatch.update, confirm it is listed, then remove it. Delete is permanent.
sourceDescriptions:
- name: webhooksApi
  url: ../openapi/voltus-webhooks-api-openapi.yml
  type: openapi
workflows:
- workflowId: register-webhook-and-verify
  summary: Create a webhook, list webhooks to confirm registration, then delete it.
  inputs:
    type: object
    required: [apiKey, callbackUrl]
    properties:
      apiKey:
        type: string
        default: secret
      callbackUrl:
        type: string
        description: Your publicly reachable HTTPS listener.
        default: https://example.com/listeners/voltus
  steps:
  - stepId: create-webhook
    description: Subscribe the listener to both dispatch events.
    operationId: 'voltus#post-webhook'
    parameters:
    - name: X-Voltus-API-Key
      in: header
      value: $inputs.apiKey
    requestBody:
      contentType: application/json
      payload:
        url: $inputs.callbackUrl
        events:
        - name: dispatch.create
        - name: dispatch.update
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      webhookId: $response.body#/id
  - stepId: list-webhooks
    description: Confirm the registration.
    operationId: 'voltus#get-webhooks'
    parameters:
    - name: X-Voltus-API-Key
      in: header
      value: $inputs.apiKey
    successCriteria:
    - condition: $statusCode == 200
  - stepId: delete-webhook
    description: Remove the webhook. This cannot be undone.
    operationId: 'voltus#delete-webhook'
    parameters:
    - name: id
      in: path
      value: $steps.create-webhook.outputs.webhookId
    - name: X-Voltus-API-Key
      in: header
      value: $inputs.apiKey
    successCriteria:
    - condition: $statusCode == 200
  outputs:
    webhookId: $steps.create-webhook.outputs.webhookId

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/voltus-register-webhook-and-verify"
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.