v1

latestOpenAPI 3.0.02026-07-243339471.1 MB
Webhooks

List all Webhooks

This API endpoint retrieves a list of Webhooks and the details associated to the receiver such as the endpointURL and the authMechanism along with createdAt and updatedAt timestamps.

get/network-services/v1/webhooks

Response

Returns list of webhooks created by the customer.

totalCountinteger

The total number of webhooks available.

countinteger required

The number of webhooks in the current response.

Example response

{
  "items": [
    {
      "id": "65f1397c-1137-4f89-9a3b-123456789abc",
      "type": "webhook",
      "createdAt": "2023-02-14T12:23:00.000Z",
      "updatedAt": "2023-10-01T12:00:00Z"
    }
  ],
  "totalCount": 10,
  "count": 5
}