PersistIQ Webhook Plugin API

The Webhook Plugin API from PersistIQ — 1 operation(s) for webhook plugin.

Operations 2

GET /v1/webhook_plugin Get webhook plugin settings
PUT /v1/webhook_plugin Update webhook plugin settings

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/persistiq-webhook-plugin-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

persistiq-webhook-plugin-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: PersistIQ API V1 Webhook Plugin API
  version: v1
  description: Public REST API for PersistIQ. Authenticate with your API key in the `x-api-key` header.
servers:
- url: https://api.persistiq.com
  description: Production
security:
- api_key: []
tags:
- name: Webhook Plugin
paths:
  /v1/webhook_plugin:
    get:
      summary: Get webhook plugin settings
      tags:
      - Webhook Plugin
      responses:
        '200':
          description: webhook settings returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/webhook_plugin_type'
    put:
      summary: Update webhook plugin settings
      tags:
      - Webhook Plugin
      parameters: []
      responses:
        '200':
          description: webhook settings updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/webhook_plugin_type'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                post_new_prospect:
                  type: boolean
                  description: Enable webhook for new prospects
                post_new_prospect_url:
                  type: string
                  description: Webhook URL for new prospects
                post_updated_prospect:
                  type: boolean
                  description: Enable webhook for updated prospects
                post_updated_prospect_url:
                  type: string
                  description: Webhook URL for updated prospects
                raw_events:
                  type: boolean
                  description: Enable webhook for raw events
                raw_events_url:
                  type: string
                  description: Webhook URL for raw events
                post_email_reply:
                  type: boolean
                  description: Enable webhook for email reply received
                post_email_reply_url:
                  type: string
                  description: Webhook URL for email reply received
                post_email_opened:
                  type: boolean
                  description: Enable webhook for email opened
                post_email_opened_url:
                  type: string
                  description: Webhook URL for email opened
components:
  schemas:
    webhook_plugin_type:
      type: object
      properties:
        post_new_prospect:
          type: boolean
        post_new_prospect_url:
          type:
          - string
          - 'null'
        post_updated_prospect:
          type: boolean
        post_updated_prospect_url:
          type:
          - string
          - 'null'
        raw_events:
          type: boolean
        raw_events_url:
          type:
          - string
          - 'null'
        post_email_reply:
          type: boolean
        post_email_reply_url:
          type:
          - string
          - 'null'
        post_email_opened:
          type: boolean
        post_email_opened_url:
          type:
          - string
          - 'null'
  securitySchemes:
    api_key:
      type: apiKey
      name: x-api-key
      in: header
      description: API key found in Settings > Integrations > API Key