Voltus Webhooks API

The Webhooks API from Voltus — 2 operation(s) for webhooks.

Operations 3

GET /2022-04-15/webhooks Voltus#get webhooks #
POST /2022-04-15/webhooks Voltus#post webhook #
DELETE /2022-04-15/webhooks/{id} Voltus#delete webhook #

Documentation

Specifications

Other Resources

🔗
Tutorials
https://api.voltus.co/docs/tutorials/create-a-dispatch-integration
🔗
Tutorials
https://api.voltus.co/docs/tutorials/get-sandbox-dispatches
🔗
Tutorials
https://api.voltus.co/docs/tutorials/test-your-dispatch-integration
🔗
Sandbox
https://api.voltus.co/docs/concepts/public-credentials
🔗
ChangeLog
https://api.voltus.co/docs/changelog
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/voltus/refs/heads/main/examples/voltus-get-dispatches-200.json
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/voltus/refs/heads/main/arazzo/voltus-poll-dispatches-and-curtail.yml
🔗
Tutorials
https://api.voltus.co/docs/tutorials/first-api-request-get-sites
🔗
ChangeLog
https://api.voltus.co/docs/changelog/meter-asset-type
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/voltus/refs/heads/main/examples/voltus-get-sites-200.json
🔗
DataModel
https://raw.githubusercontent.com/api-evangelist/voltus/refs/heads/main/data-model/voltus-data-model.yml
🔗
Tutorials
https://api.voltus.co/docs/tutorials/get-telemetry
🔗
Tutorials
https://api.voltus.co/docs/tutorials/send-telemetry
🔗
ChangeLog
https://api.voltus.co/docs/changelog/telemetry-controllable-load
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/voltus/refs/heads/main/arazzo/voltus-report-and-read-telemetry.yml
🔗
Webhooks
https://api.voltus.co/docs/openapi/webhooks
🔗
Webhooks
https://raw.githubusercontent.com/api-evangelist/voltus/refs/heads/main/asyncapi/voltus-webhooks.yml
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/voltus/refs/heads/main/examples/voltus-dispatch-webhook-payload.json
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/voltus/refs/heads/main/arazzo/voltus-register-webhook-and-verify.yml

Work with this as data

Every API 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 apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • 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 API
curl "https://apis.io/api/v1/apis/voltus-webhooks-api"
All apis
curl "https://apis.io/api/v1/apis?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.

OpenAPI Specification

voltus-webhooks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Voltus API Reference Webhooks API
  description: Welcome to the Voltus API Reference.
  version: '2022-04-15'
servers:
- url: https://api.voltus.co
security:
- X-Voltus-API-Key: []
tags:
- name: Webhooks
paths:
  /2022-04-15/webhooks:
    get:
      tags:
      - Webhooks
      description: 'Returns a list of all webhooks that have been created.


        All webhooks will be returned in a single request. The values of `page` and `per_page` have been reserved for future use, but should be ignored at present.'
      operationId: voltus#get-webhooks
      parameters:
      - name: X-Voltus-API-Key
        in: header
        description: API key used to perform authorization
        allowEmptyValue: true
        required: true
        schema:
          type: string
          description: API key used to perform authorization
          example: API_KEY
        example: API_KEY
      responses:
        '200':
          description: OK response.
          content:
            application/json:
              schema:
                type: object
                properties:
                  page:
                    type: integer
                    description: Page number. Reserved for future use, should ignore for now.
                    example: 1
                    format: int64
                  perPage:
                    type: integer
                    description: Number of items per page. Reserved for future use, should ignore for now.
                    example: 50
                    format: int64
                  webhooks:
                    type: array
                    items:
                      type: object
                      properties:
                        events:
                          type: array
                          items:
                            type: object
                            properties:
                              name:
                                type: string
                                description: Name of the event
                                example: dispatch.create
                            example:
                              name: dispatch.create
                            required:
                            - name
                            title: WebhookEvent
                          description: List of events that will be posted to this webhook. Currently only `dispatch.create` and `dispatch.update` are supported.
                          example:
                          - name: dispatch.create
                          - name: dispatch.update
                        id:
                          type: string
                          description: Unique identifier for this webhook
                          example: dsft58ga
                        url:
                          type: string
                          description: URL that this webhook will send requests to
                          example: https://example.com/listeners/voltus
                      example:
                        events:
                        - name: dispatch.create
                        - name: dispatch.update
                        id: dsft58ga
                        url: https://example.com/listeners/voltus
                      required:
                      - url
                      - events
                      - id
                      title: Webhook
                    example:
                    - events:
                      - name: dispatch.create
                      - name: dispatch.update
                      id: dsft58ga
                      url: https://example.com/listeners/voltus
                    - events:
                      - name: dispatch.create
                      - name: dispatch.update
                      id: dsft58ga
                      url: https://example.com/listeners/voltus
                    - events:
                      - name: dispatch.create
                      - name: dispatch.update
                      id: dsft58ga
                      url: https://example.com/listeners/voltus
                example:
                  page: 0
                  perPage: 0
                  webhooks: []
                required:
                - webhooks
                - page
                - perPage
                title: GetWebhooksResponseBody
              example:
                page: 0
                perPage: 0
                webhooks: []
        '400':
          description: 'Bad Request: Bad Request response.'
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: A human-readable message providing more details about the error.
                    example: Do not pass go, do not collect $100.
                  type:
                    type: string
                    description: The error type. One of `Unauthorized`, `Bad Request`, `Content Too Large`, `Internal Server Error`, `Too Many Requests` or `Not Found`.
                    example: Too Many Requests
                example:
                  message: Do not pass go, do not collect $100.
                  type: Too Many Requests
                required:
                - message
                - type
                title: Error
              example:
                message: Do not pass go, do not collect $100.
                type: Too Many Requests
        '403':
          description: 'Unauthorized: Forbidden response.'
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: A human-readable message providing more details about the error.
                    example: Do not pass go, do not collect $100.
                  type:
                    type: string
                    description: The error type. One of `Unauthorized`, `Bad Request`, `Content Too Large`, `Internal Server Error`, `Too Many Requests` or `Not Found`.
                    example: Too Many Requests
                example:
                  message: Do not pass go, do not collect $100.
                  type: Too Many Requests
                required:
                - message
                - type
                title: Error
              example:
                message: Do not pass go, do not collect $100.
                type: Too Many Requests
        '404':
          description: 'Not Found: Not Found response.'
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: A human-readable message providing more details about the error.
                    example: Do not pass go, do not collect $100.
                  type:
                    type: string
                    description: The error type. One of `Unauthorized`, `Bad Request`, `Content Too Large`, `Internal Server Error`, `Too Many Requests` or `Not Found`.
                    example: Too Many Requests
                example:
                  message: Do not pass go, do not collect $100.
                  type: Too Many Requests
                required:
                - message
                - type
                title: Error
              example:
                message: Do not pass go, do not collect $100.
                type: Too Many Requests
        '413':
          description: 'Content Too Large: Request Entity Too Large response.'
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: A human-readable message providing more details about the error.
                    example: Do not pass go, do not collect $100.
                  type:
                    type: string
                    description: The error type. One of `Unauthorized`, `Bad Request`, `Content Too Large`, `Internal Server Error`, `Too Many Requests` or `Not Found`.
                    example: Too Many Requests
                example:
                  message: Do not pass go, do not collect $100.
                  type: Too Many Requests
                required:
                - message
                - type
                title: Error
              example:
                message: Do not pass go, do not collect $100.
                type: Too Many Requests
        '429':
          description: 'Too Many Requests: Too Many Requests response.'
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: A human-readable message providing more details about the error.
                    example: Do not pass go, do not collect $100.
                  type:
                    type: string
                    description: The error type. One of `Unauthorized`, `Bad Request`, `Content Too Large`, `Internal Server Error`, `Too Many Requests` or `Not Found`.
                    example: Too Many Requests
                example:
                  message: Do not pass go, do not collect $100.
                  type: Too Many Requests
                required:
                - message
                - type
                title: Error
              example:
                message: Do not pass go, do not collect $100.
                type: Too Many Requests
        '500':
          description: 'Internal Server Error: Internal Server Error response.'
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: A human-readable message providing more details about the error.
                    example: Do not pass go, do not collect $100.
                  type:
                    type: string
                    description: The error type. One of `Unauthorized`, `Bad Request`, `Content Too Large`, `Internal Server Error`, `Too Many Requests` or `Not Found`.
                    example: Too Many Requests
                example:
                  message: Do not pass go, do not collect $100.
                  type: Too Many Requests
                required:
                - message
                - type
                title: Error
              example:
                message: Do not pass go, do not collect $100.
                type: Too Many Requests
      security:
      - X-Voltus-API-Key: []
      summary: Voltus#get webhooks
      x-summary-source: derived
    post:
      tags:
      - Webhooks
      description: 'Create a webhook by providing the events you''d like to listen for, and the URL where you''d like to receive notifications. When a webhook is created, we will send a test request to the provided URL with this payload:


        ```json

        {

        "event": {

        "name": ""

        },

        "resource": ""

        }

        ```


        Your handler should respond with a 2xx status code. If it does not succeed, the webhook creation request will fail.'
      operationId: voltus#post-webhook
      parameters:
      - name: X-Voltus-API-Key
        in: header
        description: API key used to perform authorization
        allowEmptyValue: true
        required: true
        schema:
          type: string
          description: API key used to perform authorization
          example: API_KEY
        example: API_KEY
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                events:
                  type: array
                  items:
                    type: object
                    properties:
                      name:
                        type: string
                        description: Name of the event
                        example: dispatch.create
                    example:
                      name: dispatch.create
                    required:
                    - name
                    title: WebhookEvent
                  description: List of events that will be posted to this webhook. Currently only `dispatch.create` and `dispatch.update` are supported.
                  example:
                  - name: dispatch.create
                  - name: dispatch.update
                url:
                  type: string
                  description: URL that this webhook will send requests to
                  example: https://example.com/listeners/voltus
              example:
                events:
                - name: dispatch.create
                - name: dispatch.update
                url: https://example.com/listeners/voltus
              required:
              - url
              - events
              title: PostWebhookRequestBody
            example:
              events:
              - name: dispatch.create
              - name: dispatch.update
              url: https://example.com/listeners/voltus
      responses:
        '200':
          description: OK response.
          content:
            application/json:
              schema:
                type: object
                properties:
                  events:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                          description: Name of the event
                          example: dispatch.create
                      example:
                        name: dispatch.create
                      required:
                      - name
                      title: WebhookEvent
                    description: List of events that will be posted to this webhook. Currently only `dispatch.create` and `dispatch.update` are supported.
                    example:
                    - name: dispatch.create
                    - name: dispatch.update
                  id:
                    type: string
                    description: Unique identifier for this webhook
                    example: dsft58ga
                  url:
                    type: string
                    description: URL that this webhook will send requests to
                    example: https://example.com/listeners/voltus
                example:
                  events:
                  - name: dispatch.create
                  - name: dispatch.update
                  id: dsft58ga
                  url: https://example.com/listeners/voltus
                required:
                - url
                - events
                - id
                title: Webhook
              example:
                events:
                - name: dispatch.create
                - name: dispatch.update
                id: dsft58ga
                url: https://example.com/listeners/voltus
        '400':
          description: 'Bad Request: Bad Request response.'
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: A human-readable message providing more details about the error.
                    example: Do not pass go, do not collect $100.
                  type:
                    type: string
                    description: The error type. One of `Unauthorized`, `Bad Request`, `Content Too Large`, `Internal Server Error`, `Too Many Requests` or `Not Found`.
                    example: Too Many Requests
                example:
                  message: Do not pass go, do not collect $100.
                  type: Too Many Requests
                required:
                - message
                - type
                title: Error
              example:
                message: Do not pass go, do not collect $100.
                type: Too Many Requests
        '403':
          description: 'Unauthorized: Forbidden response.'
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: A human-readable message providing more details about the error.
                    example: Do not pass go, do not collect $100.
                  type:
                    type: string
                    description: The error type. One of `Unauthorized`, `Bad Request`, `Content Too Large`, `Internal Server Error`, `Too Many Requests` or `Not Found`.
                    example: Too Many Requests
                example:
                  message: Do not pass go, do not collect $100.
                  type: Too Many Requests
                required:
                - message
                - type
                title: Error
              example:
                message: Do not pass go, do not collect $100.
                type: Too Many Requests
        '404':
          description: 'Not Found: Not Found response.'
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: A human-readable message providing more details about the error.
                    example: Do not pass go, do not collect $100.
                  type:
                    type: string
                    description: The error type. One of `Unauthorized`, `Bad Request`, `Content Too Large`, `Internal Server Error`, `Too Many Requests` or `Not Found`.
                    example: Too Many Requests
                example:
                  message: Do not pass go, do not collect $100.
                  type: Too Many Requests
                required:
                - message
                - type
                title: Error
              example:
                message: Do not pass go, do not collect $100.
                type: Too Many Requests
        '413':
          description: 'Content Too Large: Request Entity Too Large response.'
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: A human-readable message providing more details about the error.
                    example: Do not pass go, do not collect $100.
                  type:
                    type: string
                    description: The error type. One of `Unauthorized`, `Bad Request`, `Content Too Large`, `Internal Server Error`, `Too Many Requests` or `Not Found`.
                    example: Too Many Requests
                example:
                  message: Do not pass go, do not collect $100.
                  type: Too Many Requests
                required:
                - message
                - type
                title: Error
              example:
                message: Do not pass go, do not collect $100.
                type: Too Many Requests
        '429':
          description: 'Too Many Requests: Too Many Requests response.'
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: A human-readable message providing more details about the error.
                    example: Do not pass go, do not collect $100.
                  type:
                    type: string
                    description: The error type. One of `Unauthorized`, `Bad Request`, `Content Too Large`, `Internal Server Error`, `Too Many Requests` or `Not Found`.
                    example: Too Many Requests
                example:
                  message: Do not pass go, do not collect $100.
                  type: Too Many Requests
                required:
                - message
                - type
                title: Error
              example:
                message: Do not pass go, do not collect $100.
                type: Too Many Requests
        '500':
          description: 'Internal Server Error: Internal Server Error response.'
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: A human-readable message providing more details about the error.
                    example: Do not pass go, do not collect $100.
                  type:
                    type: string
                    description: The error type. One of `Unauthorized`, `Bad Request`, `Content Too Large`, `Internal Server Error`, `Too Many Requests` or `Not Found`.
                    example: Too Many Requests
                example:
                  message: Do not pass go, do not collect $100.
                  type: Too Many Requests
                required:
                - message
                - type
                title: Error
              example:
                message: Do not pass go, do not collect $100.
                type: Too Many Requests
      security:
      - X-Voltus-API-Key: []
      summary: Voltus#post webhook
      x-summary-source: derived
  /2022-04-15/webhooks/{id}:
    delete:
      tags:
      - Webhooks
      description: Permanently deletes a webhook. It cannot be undone.
      operationId: voltus#delete-webhook
      parameters:
      - name: id
        in: path
        description: Unique identifier for this webhook
        required: true
        schema:
          type: string
          description: Unique identifier for this webhook
          example: dsft58ga
        example: dsft58ga
      - name: X-Voltus-API-Key
        in: header
        description: API key used to perform authorization
        allowEmptyValue: true
        required: true
        schema:
          type: string
          description: API key used to perform authorization
          example: API_KEY
        example: API_KEY
      responses:
        '200':
          description: OK response.
          content:
            application/json:
              schema:
                type: object
                properties:
                  events:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                          description: Name of the event
                          example: dispatch.create
                      example:
                        name: dispatch.create
                      required:
                      - name
                      title: WebhookEvent
                    description: List of events that will be posted to this webhook. Currently only `dispatch.create` and `dispatch.update` are supported.
                    example:
                    - name: dispatch.create
                    - name: dispatch.update
                  id:
                    type: string
                    description: Unique identifier for this webhook
                    example: dsft58ga
                  url:
                    type: string
                    description: URL that this webhook will send requests to
                    example: https://example.com/listeners/voltus
                example:
                  events:
                  - name: dispatch.create
                  - name: dispatch.update
                  id: dsft58ga
                  url: https://example.com/listeners/voltus
                required:
                - url
                - events
                - id
                title: Webhook
              example:
                events:
                - name: dispatch.create
                - name: dispatch.update
                id: dsft58ga
                url: https://example.com/listeners/voltus
        '400':
          description: 'Bad Request: Bad Request response.'
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: A human-readable message providing more details about the error.
                    example: Do not pass go, do not collect $100.
                  type:
                    type: string
                    description: The error type. One of `Unauthorized`, `Bad Request`, `Content Too Large`, `Internal Server Error`, `Too Many Requests` or `Not Found`.
                    example: Too Many Requests
                example:
                  message: Do not pass go, do not collect $100.
                  type: Too Many Requests
                required:
                - message
                - type
                title: Error
              example:
                message: Do not pass go, do not collect $100.
                type: Too Many Requests
        '403':
          description: 'Unauthorized: Forbidden response.'
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: A human-readable message providing more details about the error.
                    example: Do not pass go, do not collect $100.
                  type:
                    type: string
                    description: The error type. One of `Unauthorized`, `Bad Request`, `Content Too Large`, `Internal Server Error`, `Too Many Requests` or `Not Found`.
                    example: Too Many Requests
                example:
                  message: Do not pass go, do not collect $100.
                  type: Too Many Requests
                required:
                - message
                - type
                title: Error
              example:
                message: Do not pass go, do not collect $100.
                type: Too Many Requests
        '404':
          description: 'Not Found: Not Found response.'
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: A human-readable message providing more details about the error.
                    example: Do not pass go, do not collect $100.
                  type:
                    type: string
                    description: The error type. One of `Unauthorized`, `Bad Request`, `Content Too Large`, `Internal Server Error`, `Too Many Requests` or `Not Found`.
                    example: Too Many Requests
                example:
                  message: Do not pass go, do not collect $100.
                  type: Too Many Requests
                required:
                - message
                - type
                title: Error
              example:
                message: Do not pass go, do not collect $100.
                type: Too Many Requests
        '413':
          description: 'Content Too Large: Request Entity Too Large response.'
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: A human-readable message providing more details about the error.
                    example: Do not pass go, do not collect $100.
                  type:
                    type: string
                    description: The error type. One of `Unauthorized`, `Bad Request`, `Content Too Large`, `Internal Server Error`, `Too Many Requests` or `Not Found`.
                    example: Too Many Requests
                example:
                  message: Do not pass go, do not collect $100.
                  type: Too Many Requests
                required:
                - message
                - type
                title: Error
              example:
                message: Do not pass go, do not collect $100.
                type: Too Many Requests
        '429':
          description: 'Too Many Requests: Too Many Requests response.'
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: A human-readable message providing more details about the error.
                    example: Do not pass go, do not collect $100.
                  type:
                    type: string
                    description: The error type. One of `Unauthorized`, `Bad Request`, `Content Too Large`, `Internal Server Error`, `Too Many Requests` or `Not Found`.
                    example: Too Many Requests
                example:
                  message: Do not pass go, do not collect $100.
                  type: Too Many Requests
                required:
                - message
                - type
                title: Error
              example:
                message: Do not pass go, do not collect $100.
                type: Too Many Requests
        '500':
          description: 'Internal Server Error: Internal Server Error response.'
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: A human-readable message providing more details about the error.
                    example: Do not pass go, do not collect $100.
                  type:
                    type: string
                    description: The error type. One of `Unauthorized`, `Bad Request`, `Content Too Large`, `Internal Server Error`, `Too Many Requests` or `Not Found`.
                    example: Too Many Requests
                example:
                  message: Do not pass go, do not collect $100.
                  type: Too Many Requests
                required:
                - message
                - type
                title: Error
              example:
                message: Do not pass go, do not collect $100.
                type: Too Many Requests
      security:
      - X-Voltus-API-Key: []
      summary: Voltus#delete webhook
      x-summary-source: derived
components:
  securitySchemes:
    X-Voltus-API-Key:
      type: apiKey
      name: X-Voltus-API-Key
      in: header