Veem webhook-controller API

Webhook Controller

Operations 5

POST /veem/v1.2/webhooks Create webhook #
GET /veem/v1.2/webhooks Get webhooks #
DELETE /veem/v1.2/webhooks/{webhookId} Delete webhook #
GET /veem/v1.2/webhooks/{webhookId} Get webhook #
PATCH /veem/v1.2/webhooks/{webhookId} Update 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/veem-webhook-controller-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

veem-webhook-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Veem REST API
  title: Veem API v1.2 attachment-controller Webhook Controller API
  version: v1.2.1
servers:
- url: //sandbox-api.veem.com
tags:
- description: Webhook Controller
  name: webhook-controller
paths:
  /veem/v1.2/webhooks:
    post:
      deprecated: false
      description: Creates a webhook configuration for the account and platform associated with the provided authorization token
      operationId: createWebhookUsingPOST_2
      requestBody:
        $ref: '#/components/requestBodies/WebhookRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookResponse'
          description: Success, the webhook configuration was created and returned.
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookResponse'
          description: Created
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VeemErrorResponse'
          description: Invalid request body
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VeemErrorResponse'
          description: Unauthorized, the token is invalid or expired
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VeemErrorResponse'
          description: Forbidden, the token owner doesn't have permission to operate this API
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VeemErrorResponse'
          description: Internal Server Error, see the error code and API doc for reference
      summary: Create webhook
      tags:
      - webhook-controller
    get:
      deprecated: false
      description: Gets all active webhook configurations for the account and platform associated with the provided authorization token.
      operationId: getWebhooksUsingGET_2
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/WebhookResponse'
                type: array
          description: Success, all active webhook configurations were returned.
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VeemErrorResponse'
          description: Unauthorized, the token is invalid or expired
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VeemErrorResponse'
          description: Forbidden, the token owner doesn't have permission to operate this API
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VeemErrorResponse'
          description: Internal Server Error, see the error code and API doc for reference
      summary: Get webhooks
      tags:
      - webhook-controller
  /veem/v1.2/webhooks/{webhookId}:
    delete:
      deprecated: false
      description: Deletes the webhook configuration with the specified ID if it is owned by the account and platform associated with the provided authorization token
      operationId: deleteWebhookUsingDELETE_2
      parameters:
      - description: webhookId
        in: path
        name: webhookId
        required: true
        schema:
          format: int64
          type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookResponse'
          description: Success, the webhook configuration was deleted and returned.
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VeemErrorResponse'
          description: Unauthorized, the token is invalid or expired
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VeemErrorResponse'
          description: Forbidden, the token owner doesn't have permission to operate this API
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VeemErrorResponse'
          description: A webhook configuration with the specified ID was not found
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VeemErrorResponse'
          description: Internal Server Error, see the error code and API doc for reference
      summary: Delete webhook
      tags:
      - webhook-controller
    get:
      deprecated: false
      description: Gets the webhook configuration with the specified ID if it is owned by the account and platform associated with the provided authorization token.
      operationId: getWebhookUsingGET_2
      parameters:
      - description: webhookId
        in: path
        name: webhookId
        required: true
        schema:
          format: int64
          type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookResponse'
          description: Success, the webhook configuration was returned.
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VeemErrorResponse'
          description: Unauthorized, the token is invalid or expired
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VeemErrorResponse'
          description: Forbidden, the token owner doesn't have permission to operate this API
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VeemErrorResponse'
          description: A webhook configuration with the specified ID was not found
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VeemErrorResponse'
          description: Internal Server Error, see the error code and API doc for reference
      summary: Get webhook
      tags:
      - webhook-controller
    patch:
      deprecated: false
      description: Updates the webhook configuration with the specified ID if it is owned by the account and platform associated with the provided authorization token
      operationId: updateWebhookUsingPATCH_2
      parameters:
      - description: webhookId
        in: path
        name: webhookId
        required: true
        schema:
          format: int64
          type: integer
      requestBody:
        $ref: '#/components/requestBodies/WebhookRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookResponse'
          description: Success, the webhook configuration was updated and returned.
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VeemErrorResponse'
          description: Invalid request body
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VeemErrorResponse'
          description: Unauthorized, the token is invalid or expired
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VeemErrorResponse'
          description: Forbidden, the token owner doesn't have permission to operate this API
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VeemErrorResponse'
          description: A webhook configuration with the specified ID was not found
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VeemErrorResponse'
          description: Internal Server Error, see the error code and API doc for reference
      summary: Update webhook
      tags:
      - webhook-controller
components:
  schemas:
    WebhookRequest:
      properties:
        callbackURL:
          type: string
        event:
          enum:
          - INBOUND_PAYMENT_STATUS_UPDATED
          - OUTBOUND_PAYMENT_STATUS_UPDATED
          type: string
      title: WebhookRequest
      type: object
    WebhookResponse:
      properties:
        callbackUrl:
          type: string
        event:
          enum:
          - INBOUND_PAYMENT_STATUS_UPDATED
          - OUTBOUND_PAYMENT_STATUS_UPDATED
          type: string
        id:
          format: int64
          type: integer
        status:
          enum:
          - Active
          - Deleted
          - Inactive
          - Inactiving
          - Closed
          type: string
      title: WebhookResponse
      type: object
    VeemErrorResponse:
      properties:
        code:
          description: The error code, different than HTTP status codes
          format: int32
          type: integer
        fileName:
          description: The filename where the exception was thrown
          type: string
        lineNumber:
          description: The line number where the exception was thrown
          format: int32
          type: integer
        logTag:
          description: Request log tag
          type: string
        message:
          description: The detailed, developer friendly message
          type: string
        timestamp:
          description: The timestamp recorded when the error occurred
          type: string
      required:
      - code
      - logTag
      - message
      title: VeemErrorResponse
      type: object
  requestBodies:
    WebhookRequest:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/WebhookRequest'
      description: request
      required: true