Skip to main content

PagedWebhookResponse

meta objectrequired

meta data

skipnumber

number of skip records

Default value: 0
Example: 0
limitnumber

number of maximum return records

Default value: 10
Example: 10
totalCountnumberrequired

total number of records

Example: 100
timestampstring<date-time>required

the time of the query result

data object[]required

records

  • Array [
  • endpointstringrequired

    endpoint of the webhook

    Example: https://yourdomain/webhooks
    eventsWebhookEventTypes[]required

    Possible values: [DEPOSIT, PAYMENT, CLIENT]

    Examples:
    Example: DEPOSIT
    idstringrequired

    id of the webhook

    Example: 401f4647-8372-495f-8de0-aafb3e1eaf93
    createdTimestring<date-time>required

    The time when the webhook was created

    Example: 2023-12-12T01:23:33Z
    updatedTimestring<date-time>required

    The time when the webhook was last updated

    Example: 2023-12-12T01:23:33Z
  • ]
  • PagedWebhookResponse
    {
    "meta": {
    "skip": 0,
    "limit": 10,
    "totalCount": 100,
    "timestamp": "2024-07-29T15:51:28.071Z"
    },
    "data": [
    {
    "endpoint": "https://yourdomain/webhooks",
    "events": "DEPOSIT",
    "id": "401f4647-8372-495f-8de0-aafb3e1eaf93",
    "createdTime": "2023-12-12T01:23:33Z",
    "updatedTime": "2023-12-12T01:23:33Z"
    }
    ]
    }