Skip to content
  • Auto
  • Light
  • Dark
Get Started

List

List
get/api/v1/webhooks

Invokes the c1.api.webhooks.v1.WebhooksService.List method.

Query Parameters
page_sizenumber
optional

The pageSize field.

formatint32
page_tokenstring
optional

The pageToken field.

Returns
listarray of idstringcreatedAtstringdeletedAtstringdescriptionstringdisplayNamestringupdatedAtstringurlstringWebhook
optional

The list field.

nextPageTokenstring
optional

The nextPageToken field.

Request example cURL
curl https://{tenantDomain}.conductor.one/api/v1/webhooks \
    -H "Authorization: Bearer $CONDUCTORONE_SDK_API_KEY"
200 Example
{
  "list": [
    {
      "id": "id",
      "description": "description",
      "displayName": "displayName",
      "url": "url"
    }
  ],
  "nextPageToken": "nextPageToken"
}