Skip to main content
GET
/
2023-11
/
admin
/
webhooks
List
curl --request GET \
  --url https://api-staging.genuka.com/2023-11/admin/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "created_at": "2025-10-10T14:55:27.000000Z",
      "description": null,
      "events": [
        "order.created"
      ],
      "failure_count": 0,
      "id": "01k779x9jv4cdpca6zjzgdatj3",
      "is_active": true,
      "last_triggered_at": null,
      "metadata": null,
      "secret": "c2EmRyAUY0uND8qvv2px5iOUbYHDpAtz",
      "updated_at": "2025-10-10T14:55:27.000000Z",
      "url": "https://genuka-api.test/admin"
    }
  ],
  "links": {
    "first": "http://genuka-api.test/2023-11/admin/webhooks?page=1",
    "last": "http://genuka-api.test/2023-11/admin/webhooks?page=1",
    "next": null,
    "prev": null
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 1,
    "links": [
      {
        "active": false,
        "label": "&laquo; Previous",
        "page": null,
        "url": null
      },
      {
        "active": true,
        "label": "1",
        "page": 1,
        "url": "http://genuka-api.test/2023-11/admin/webhooks?page=1"
      },
      {
        "active": false,
        "label": "Next &raquo;",
        "page": null,
        "url": null
      }
    ],
    "path": "http://genuka-api.test/2023-11/admin/webhooks",
    "per_page": 15,
    "to": 1,
    "total": 1
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-company
string
Example:

"{{companyId}}"

Query Parameters

Example:

"confirmed"

Response

200 - application/json

200

data
object[]
Example:
[
  {
    "created_at": "2025-10-10T14:55:27.000000Z",
    "description": null,
    "events": ["order.created"],
    "failure_count": 0,
    "id": "01k779x9jv4cdpca6zjzgdatj3",
    "is_active": true,
    "last_triggered_at": null,
    "metadata": null,
    "secret": "c2EmRyAUY0uND8qvv2px5iOUbYHDpAtz",
    "updated_at": "2025-10-10T14:55:27.000000Z",
    "url": "https://genuka-api.test/admin"
  }
]
meta
object