Kaseya Webhook Delivery Log API

The WebhookDeliveryLog API from Kaseya — 3 operation(s) for webhookdeliverylog.

Operations 3

POST /v2/admin/webhooks/{webhookId}/logs/search #
GET /v2/admin/webhooks/logs/{logId} #
POST /v2/admin/webhooks/redeliver/{logId} #

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/kaseya-webhookdeliverylog-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

kaseya-webhookdeliverylog-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: BMS API 2.0 Webhook Delivery Log API
  description: Documentation of APIs Version 2.0
  version: '2.0'
servers:
- url: https://api.bms.kaseya.com
security:
- bearerAuth: []
tags:
- name: WebhookDeliveryLog
paths:
  /v2/admin/webhooks/{webhookId}/logs/search:
    post:
      tags:
      - WebhookDeliveryLog
      operationId: GetWebhookDeliveryLogsList
      parameters:
      - name: webhookId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      requestBody:
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/WebhookDeliveryLogListInputDto'
          application/json:
            schema:
              $ref: '#/components/schemas/WebhookDeliveryLogListInputDto'
          text/json:
            schema:
              $ref: '#/components/schemas/WebhookDeliveryLogListInputDto'
          application/*+json:
            schema:
              $ref: '#/components/schemas/WebhookDeliveryLogListInputDto'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/WebhookDeliveryLogListOutputDtoListPagedResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookDeliveryLogListOutputDtoListPagedResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/WebhookDeliveryLogListOutputDtoListPagedResponse'
  /v2/admin/webhooks/logs/{logId}:
    get:
      tags:
      - WebhookDeliveryLog
      operationId: GetWebhookDeliveryLog
      parameters:
      - name: logId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/WebhookDeliveryLogOutputDtoResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookDeliveryLogOutputDtoResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/WebhookDeliveryLogOutputDtoResponse'
  /v2/admin/webhooks/redeliver/{logId}:
    post:
      tags:
      - WebhookDeliveryLog
      operationId: PostWebhookDeliveryLogsRedelivery
      parameters:
      - name: logId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/StringResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/StringResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/StringResponse'
components:
  schemas:
    WebhookDeliveryLogListOutputDto:
      type: object
      properties:
        Id:
          type: string
          format: uuid
        IsReDelivered:
          type: boolean
        WebhookId:
          type: integer
          format: int32
        EventId:
          type: integer
          format: int32
        IsDelivered:
          type: boolean
        DeliveryDate:
          type: string
          format: date-time
        CreatedOn:
          type: string
          format: date-time
        CreatedBy:
          type: integer
          format: int32
        ParentLogId:
          type: string
          format: uuid
      additionalProperties: false
    WebhookDeliveryLogListOutputDtoListPagedResponse:
      type: object
      properties:
        Success:
          type: boolean
          readOnly: true
        Error:
          $ref: '#/components/schemas/ErrorInfo'
        Result:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/WebhookDeliveryLogListOutputDto'
        TotalRecords:
          type: integer
          format: int32
      additionalProperties: false
    ErrorInfo:
      type: object
      properties:
        Code:
          type: integer
          format: int32
        Message:
          type:
          - string
          - 'null'
        Details:
          type:
          - string
          - 'null'
        StackStrace:
          type:
          - string
          - 'null'
        SubErrors:
          type:
          - array
          - 'null'
          items:
            type: string
      additionalProperties: false
    WebhookDeliveryLogListInputDto:
      type: object
      properties:
        PageSize:
          type: integer
          format: int32
        PageNumber:
          type: integer
          format: int32
        StartRowIndex:
          type: integer
          format: int32
          readOnly: true
        EndRowIndex:
          type: integer
          format: int32
          readOnly: true
        Sort:
          type:
          - string
          - 'null'
        Exclude:
          type:
          - string
          - 'null'
        Filter:
          $ref: '#/components/schemas/WebhookDeliveryLogListFilterDto'
      additionalProperties: false
    WebhookDeliveryLogOutputDto:
      type: object
      properties:
        Id:
          type: string
          format: uuid
        RequestHeader:
          type:
          - object
          - 'null'
          additionalProperties:
            type:
            - string
            - 'null'
        RequestPayload:
          type:
          - string
          - 'null'
        ResponseStatusCode:
          type: integer
          format: int32
        ResponseHeaders:
          type:
          - object
          - 'null'
          additionalProperties:
            type:
            - string
            - 'null'
        ResponseBody:
          type:
          - string
          - 'null'
        WebhookId:
          type: integer
          format: int32
        DeliveryDate:
          type: string
          format: date-time
        IsReDelivered:
          type: boolean
        IsDelivered:
          type: boolean
        CreatedOn:
          type: string
          format: date-time
        CreatedBy:
          type: integer
          format: int32
        ParentLogId:
          type:
          - string
          - 'null'
          format: uuid
      additionalProperties: false
    StringResponse:
      type: object
      properties:
        Success:
          type: boolean
          readOnly: true
        Error:
          $ref: '#/components/schemas/ErrorInfo'
        Result:
          type:
          - string
          - 'null'
      additionalProperties: false
    WebhookDeliveryLogListFilterDto:
      type: object
      properties:
        State:
          type:
          - array
          - 'null'
          items:
            type: integer
            format: int32
        Id:
          type:
          - string
          - 'null'
          format: uuid
        Events:
          type:
          - array
          - 'null'
          items:
            type: integer
            format: int32
        FromDeliveryDate:
          type:
          - string
          - 'null'
          format: date-time
        ToDeliveryDate:
          type:
          - string
          - 'null'
          format: date-time
      additionalProperties: false
    WebhookDeliveryLogOutputDtoResponse:
      type: object
      properties:
        Success:
          type: boolean
          readOnly: true
        Error:
          $ref: '#/components/schemas/ErrorInfo'
        Result:
          $ref: '#/components/schemas/WebhookDeliveryLogOutputDto'
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      description: JWT Authorization header using the Bearer scheme.
      scheme: bearer
      bearerFormat: JWT