Erply webhook-configuration API

The webhook-configuration API from Erply — 2 operation(s) for webhook-configuration.

Operations 4

GET /v1/webhook-configuration Get webhook configurations #
POST /v1/webhook-configuration Add webhook configuration #
PUT /v1/webhook-configuration/{id} Update existing webhook configuration #
DELETE /v1/webhook-configuration/{id} Remove existing webhook configuration #

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/erply-webhook-configuration-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

erply-webhook-configuration-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: "\n\n## Overview\n\n\n\nThis application offers an API for managing assignments and tasks.\n\n\n\nGraphQL endpoint for the same API is [also available](/graph)\n\n\n\n<details><summary>Authentication</summary>\n\n\n\n> \n\n> Authenticate using your Erply credentials and get a sessionKey. This sessionKey and your Erply clientCode must be provided in the HTTP headers of every request. You do not have to authenticate against this API - valid Erply sessionKey-s from other sources are also acceptable. To authenticate using this API, use the `POST /api/v1/auth` endpoint.\n\n>\n\n</details>\n\n"
  title: assignments Assortment Webhook Configuration API
  contact: {}
  version: 2.36.5
tags:
- name: webhook-configuration
paths:
  /v1/webhook-configuration:
    get:
      security:
      - ClientCode: []
      - SessionKey: []
      description: '# Get webhook configurations

        Get current authenticated users existing webhook configurations'
      tags:
      - webhook-configuration
      summary: Get webhook configurations
      operationId: getWebhookConfigurations
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/models.WebhookConfiguration'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.OutputError'
        '503':
          description: Service Unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.OutputError'
    post:
      security:
      - ClientCode: []
      - SessionKey: []
      description: '# Add new webhook configuration

        In action field use: insert, update, delete or confirm (only usable on items that support it)'
      tags:
      - webhook-configuration
      summary: Add webhook configuration
      operationId: addWebhookConfiguration
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.WebhookConfiguration'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.OutputError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.OutputError'
        '503':
          description: Service Unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.OutputError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/models.InputWebhookConfiguration'
        description: New webhook configuration data
        required: true
  /v1/webhook-configuration/{id}:
    put:
      security:
      - ClientCode: []
      - SessionKey: []
      description: '# Update existing webhook configuration

        Updates an existing webhook configuration by its id'
      tags:
      - webhook-configuration
      summary: Update existing webhook configuration
      operationId: updateWebhookConfiguration
      parameters:
      - description: ID of the webhook configuration
        name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.WebhookConfiguration'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.OutputError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.OutputError'
        '503':
          description: Service Unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.OutputError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/models.InputWebhookConfiguration'
        description: Edit webhook configuration data
        required: true
    delete:
      security:
      - ClientCode: []
      - SessionKey: []
      description: '# Remove existing webhook configuration

        Removes an existing webhook configuration by its id'
      tags:
      - webhook-configuration
      summary: Remove existing webhook configuration
      operationId: removeWebhookConfiguration
      parameters:
      - description: ID of the webhook configuration
        name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.OutputOK'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.OutputError'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.OutputError'
        '503':
          description: Service Unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.OutputError'
components:
  schemas:
    models.InputWebhookConfiguration:
      type: object
      required:
      - action
      - endpoint
      - secret
      - table
      properties:
        action:
          description: Action of the event insert, update, delete or confirm (only usable on items that support it)
          type: string
          example: insert
        disabled:
          description: Disabled optional input, can be used to create inactive configurations for later use - false by default
          type: boolean
          example: false
        endpoint:
          description: Endpoint full url of the server where the webhook will be sent to
          type: string
          example: https://my.receiver
        secret:
          description: Secret optional secret that can be used to authenticate the webhooks
          type: string
          example: mySecretWord
        table:
          description: Table references a database table or a custom event name
          type: string
          example: product
    models.OutputOK:
      type: object
      properties:
        message:
          type: string
          example: configuration removed
    models.WebhookConfiguration:
      type: object
      properties:
        action:
          type: string
          example: insert
        clientcode:
          type: string
          example: '000000'
        createdat:
          type: string
          example: '2019-11-21T14:01:13.471Z'
        disabled:
          type: boolean
          example: false
        endpoint:
          type: string
          example: https://test.receiver
        id:
          type: string
          example: 5dd63cc81810fd18722e23df
        secret:
          type: string
          example: mySecretWord
        table:
          type: string
          example: product
        updatedat:
          type: string
          example: '2019-11-21T14:01:13.471Z'
    models.OutputError:
      type: object
      properties:
        error:
          type: string
          example: Description of the failure
  securitySchemes:
    AccessToken:
      type: apiKey
      name: accessToken
      in: header
    ErplyClientCode:
      type: apiKey
      name: clientCode
      in: header
    ErplyJWT:
      type: apiKey
      name: jwt
      in: header
    ErplySession:
      type: apiKey
      name: sessionKey
      in: header
    RequestKey:
      type: apiKey
      name: requestKey
      in: header