NinjaOne webhooks API

Webhook Endpoints

Operations 2

PUT /v2/webhook Update API Webhook configuration #
DELETE /v2/webhook Remove Webhook API channel #

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/ninjaone-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

ninjaone-webhooks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: NinjaOne Public API 2.0 Asset Tags Webhooks API
  description: NinjaOne Public API documentation.
  contact:
    email: api@ninjarmm.com
  version: 2.0.9-draft
servers:
- url: https://app.ninjarmm.com/v2
  description: Base URL declared by the provider in apis.yml (roadmap#122).
security:
- oauth2:
  - monitoring
  - management
  - control
- sessionKey:
  - monitoring
  - management
  - control
tags:
- name: webhooks
  description: Webhook Endpoints
paths:
  /v2/webhook:
    put:
      tags:
      - webhooks
      summary: Update API Webhook configuration
      description: Creates or updates Webhook configuration for current application/client
      operationId: configureWebhook
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WebhookConfiguration'
      responses:
        '204':
          description: No Content
        '403':
          description: Only system administrators can configure webhooks
    delete:
      tags:
      - webhooks
      summary: Remove Webhook API channel
      description: Disables Webhook configuration for current application/client
      operationId: disableWebhook
      responses:
        '204':
          description: No Content
        '403':
          description: Different PSA is already configured
        '500':
          description: Failed to disable PSA
components:
  schemas:
    HTTPHeader:
      type: object
      properties:
        name:
          type: string
          description: Header name
        value:
          type: string
          description: Header value
      description: Custom HTTP Headers (i.e. Authorization)
    WebhookConfiguration:
      type: object
      properties:
        url:
          type: string
          description: Callback (WebHook) URL for activity notifications
        activities:
          type: object
          additionalProperties:
            type: array
            description: Activity filter
            items:
              type: string
              description: Activity filter
          description: Activity filter
        expand:
          type: array
          description: Which references to expand in payloads
          items:
            type: string
            description: Which references to expand in payloads
        headers:
          type: array
          description: Custom HTTP Headers (i.e. Authorization)
          items:
            $ref: '#/components/schemas/HTTPHeader'
        organizationIds:
          uniqueItems: true
          type: array
          description: List of organization id to be filtered
          items:
            type: integer
            description: List of organization id to be filtered
            format: int32
  securitySchemes:
    oauth2:
      type: http
      scheme: bearer
      bearerFormat: bearer
    sessionKey:
      type: apiKey
      name: sessionKey
      in: cookie