Ready2order Webhook API

Webhooks push events to your application automatically — no polling required. **Available Events** | Event | Description | Payload | |-------|-------------|---------| | `coupon.created` | A new voucher or gift card is issued | Full object | | `coupon.updated` | A voucher's properties change (value, validity, linked customer, etc.) | Full object | | `couponTransaction.created` | A transaction is recorded on a voucher (charge, redeem, correction, bonus, payout) | Full transaction object | | `customer.created` | A new customer profile is added to the account | Full object | | `customer.updated` | A customer profile's details are updated (name, address, contact info, etc.) | Full object | | `customer.deleted` | A customer profile is deleted from the account | Resource ID | | `invoice.created` | An invoice or receipt is finalised — also fires for the storno document when an invoice is cancelled | Full object | | `invoice.cancelled` | Fired for the **original** invoice when it is cancelled — use this to mark the original as cancelled in your system; use `invoice.created` to receive the storno document | Full object | | `orderItem.created` | One or more items are placed on an open table order | Resource IDs | | `orderItem.cancelled` | One or more open table order items are voided before billing | Resource IDs | | `orderItem.transferred` | Open table order items are moved from one table to another | Transfer metadata (source/target table, order IDs) | | `product.created` | A new product is added to the catalogue | Full object | | `product.updated` | A product's details change — not triggered by `product_sortIndex` updates | Full object | | `product.deleted` | A product is removed from the catalogue | Resource ID | | `productGroup.created` | A new product category is created | Full object | | `productGroup.updated` | A product category's properties change (name, description, sort order, etc.) | Full object | | `productGroup.deleted` | A product category is removed | Resource ID | **Processing Webhooks** Respond to webhook requests with HTTP 202 and process the payload asynchronously in a background worker. This keeps your endpoint fast and avoids delivery failures from timeouts, which may trigger retries. **Setup** 1. [Register your webhook URL](#operation/webhookUpdateWebhookUrl) 2. [Subscribe to events](#operation/webhookUpdateWebhookEvent)

Operations 4

GET /webhook Find #
PUT /webhook Update Webhook Url #
GET /webhook/events Find Webhook Events #
PUT /webhook/events Update Webhook Event #

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/ready2order-webhook-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

ready2order-webhook-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: ready2order Public Webhook API
  contact:
    name: support@ready2order.com
  license:
    name: proprietary
  version: R2-2026.30.2
  description: '# First Steps


    ## Authorization


    The ready2order API uses a three-token flow to grant your integration access to a ready2order account.'
servers:
- url: https://api.ready2order.com/v1
tags:
- name: Webhook
  description: Webhooks push events to your application automatically — no polling required.
paths:
  /webhook:
    get:
      tags:
      - Webhook
      summary: Find
      description: ''
      operationId: webhookFind
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                properties:
                  webhookUrl:
                    type: string
                    example: https://ready2order.com
                type: object
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - Bearer: []
    put:
      tags:
      - Webhook
      summary: Update Webhook Url
      description: ''
      operationId: webhookUpdateWebhookUrl
      requestBody:
        content:
          application/json:
            schema:
              required:
              - webhookUrl
              properties:
                webhookUrl:
                  type: string
              type: object
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                properties:
                  webhookUrl:
                    type: string
                    example: https://ready2order.com
                type: object
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - Bearer: []
  /webhook/events:
    get:
      tags:
      - Webhook
      summary: Find Webhook Events
      description: ''
      operationId: webhookFindWebhookEvents
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                properties:
                  activeEvents:
                    type: array
                    items:
                      type: integer
                    example: invoice.created
                  availableEvents:
                    type: array
                    items:
                      type: integer
                    example: '[product.created, product.updated]'
                type: object
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - Bearer: []
    put:
      tags:
      - Webhook
      summary: Update Webhook Event
      description: ''
      operationId: webhookUpdateWebhookEvent
      requestBody:
        content:
          application/json:
            schema:
              properties:
                addEvent:
                  description: <br><br> _* Required if `removeEvent` is not provided._
                  type: string
                removeEvent:
                  description: <br><br> _* Required if `addEvent` is not provided._
                  type: string
              type: object
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                properties:
                  error:
                    type: boolean
                    example: true
                  success:
                    type: boolean
                    example: false
                  msg:
                    type: string
                    example: Your now receiving webhooks for the event <name>
                type: object
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - Bearer: []
components:
  securitySchemes:
    Bearer:
      type: apiKey
      description: Account Token obtained after completing the authorization flow. See First Steps for details.
      name: Authorization
      in: header
x-tagGroups:
- name: Essentials
  tags:
  - Product
  - Product Group
  - Bill
  - Storno
  - Payment Method
  - Payment Method Type
  - Coupon
  - Coupon Category
  - Discount
  - Discount Group
  - Customer
- name: Gastro
  tags:
  - Order
  - Table
  - Table Area
- name: POS
  tags:
  - Printer
  - Printer Profile
  - Print Job
  - Terminal Transaction
  - User
  - User Roles
- name: Reporting
  tags:
  - Daily Report
  - Accounting Financial Year
  - Export
- name: Reference Data
  tags:
  - Bill Type
  - Customer Group
  - Currency
  - Country
  - Device
  - Language
  - Legal Form
  - Units
  - Vat Rate
- name: Integration
  tags:
  - Account Token
  - Grant Access Token
  - Developer Token
  - Webhook
  - Job Status
- name: Internal
  tags:
  - Account
  - Admin
  - CashboxRegistration
  - ConfirmableAction
  - Constant
  - Item
  - License
  - MobileConstant
  - ReadyPaySellRate
  - Signup
  - Tss