List Webhooks

List Webhooks

GET [environmentBaseUrl]/v1/webhooks

This API list your registered webhooks of your current integration.

Query Parameters

NameTypeDescription

page

object

Page limit and offset (please read below).

{
  "data": {
    "list": [
      {
        ...WebhookDocument // Check WebhookDocument page for the sample data
      }
    ],
    "total": 1
  }
}

Page Limit and Offset

Property

Type

Required

Description

limit

number

N

Size of retrieved data on each page.

offset

number

N

The page number.

Last updated