Aerones Webhooks API

The webhooks API from Aerones — 5 operation(s) for webhooks.

Operations 5

POST /api/webhooks/pipedrive-sync Pipedrive Sync Webhook #
POST /api/webhooks/wrike/dates-changed Handle Wrike Dates Changed Webhook #
POST /api/webhooks/wrike/task-created Handle Wrike Task Created Webhook #
POST /api/webhooks/wrike/custom-field Handle Wrike Custom Field Changed #
POST /api/webhooks/wrike/sync-task Handle Wrike Sync Task Webhook #

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

aerones-webhooks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Operations Hub Webhooks API
  version: 0.1.1
  description: ''
servers: []
tags:
- name: Webhooks
paths:
  /api/webhooks/pipedrive-sync:
    post:
      operationId: webhooks_api_pipedrive_sync_webhook
      summary: Pipedrive Sync Webhook
      parameters: []
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Success'
      description: Webhook endpoint delegating all processing to the manager.
      tags:
      - Webhooks
  /api/webhooks/wrike/dates-changed:
    post:
      operationId: webhooks_api_handle_wrike_dates_changed_webhook
      summary: Handle Wrike Dates Changed Webhook
      parameters: []
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Success'
      description: Acknowledge and ignore Wrike dates-changed events (sync switched off).
      tags:
      - Webhooks
  /api/webhooks/wrike/task-created:
    post:
      operationId: webhooks_api_handle_wrike_task_created_webhook
      summary: Handle Wrike Task Created Webhook
      parameters: []
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Success'
      description: Acknowledge and ignore Wrike task-created events (sync switched off).
      tags:
      - Webhooks
  /api/webhooks/wrike/custom-field:
    post:
      operationId: webhooks_api_handle_wrike_custom_field_changed
      summary: Handle Wrike Custom Field Changed
      parameters: []
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Success'
      description: Acknowledge and ignore Wrike custom-field events (sync switched off).
      tags:
      - Webhooks
  /api/webhooks/wrike/sync-task:
    post:
      operationId: webhooks_api_handle_wrike_sync_task_webhook
      summary: Handle Wrike Sync Task Webhook
      parameters: []
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Success'
      description: Acknowledge and ignore Wrike sync-task events (sync switched off).
      tags:
      - Webhooks
components:
  schemas:
    Success:
      additionalProperties: false
      description: 'Schema returned for successful operations.


        The `success` field is always ``true`` in this schema. Failed operations are

        represented by the :class:`Error` schema instead, so a ``false`` value does

        not occur in practice. The field is included for consistency across responses

        and to make the contract explicit for clients.'
      properties:
        success:
          default: true
          description: Always true for this schema. Errors are represented by a separate Error schema, so false is never returned.
          title: Success
          type: boolean
      title: Success
      type: object
  securitySchemes:
    APIKeyAuth:
      type: http
      scheme: bearer
    CookieAuth:
      type: apiKey
      in: cookie
      name: opshub_prod_sessionid
    AuthBearer:
      type: http
      scheme: bearer