Skip to main content
GET
/
api
/
v2
/
orders
/
webhooks
/
{webhookId}
/
events
cURL
curl -X GET "https://api.bizmori.com/api/v2/orders/webhooks/WEBHOOK_ID/events?page=1&limit=20" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
{
  "data": {
    "events": [
      {
        "id": 123,
        "eventId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "eventType": "order.antiAi.completed",
        "retries": 123,
        "lastSentAt": "2023-11-07T05:31:56Z",
        "createdAt": "2023-11-07T05:31:56Z"
      }
    ],
    "pagination": {
      "page": 123,
      "limit": 123,
      "total": 123,
      "totalPages": 123
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.bizmori.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API Key for external client access

Path Parameters

webhookId
integer
required

Webhook ID

Query Parameters

page
integer
default:1

Page number

Required range: x >= 1
limit
integer
default:20

Items per page

Required range: 1 <= x <= 100

Response

Success

data
object