List
List
client.webhooks.list(WebhookListParamsquery?, RequestOptionsoptions?): listunionnextPageTokenstringWebhookListResponse
get/api/v1/webhooks
Invokes the c1.api.webhooks.v1.WebhooksService.List method.
Parameters
querypage_sizenumberpage_tokenstringWebhookListParams
Returns
WebhookListResponse
The WebhooksServiceListResponse message.
Request example TypeScript
import ConductoroneSDK from 'conductorone-sdk';
const client = new ConductoroneSDK({
apiKey: 'My API Key',
});
const webhooks = await client.webhooks.list();
console.log(webhooks.list);200 Example
{
"list": [
{
"id": "id",
"description": "description",
"displayName": "displayName",
"url": "url"
}
],
"nextPageToken": "nextPageToken"
}