Create Webhooks
Search
post/api/v1/search/webhooks
Invokes the c1.api.webhooks.v1.WebhooksSearch.Search method.
Body Parameters
pageSizenumber
optional
The pageSize field.
formatint32
pageTokenstring
optional
The pageToken field.
querystring
optional
The query field.
refsarray of object
optional
The refs field.
Returns
listarray of idstringcreatedAtstringdeletedAtstringdescriptionstringdisplayNamestringupdatedAtstringurlstringWebhook
optional
The list field.
nextPageTokenstring
optional
The nextPageToken field.
Request example cURL
curl https://{tenantDomain}.conductor.one/api/v1/search/webhooks \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $CONDUCTORONE_SDK_API_KEY"200 Example
{
"list": [
{
"id": "id",
"description": "description",
"displayName": "displayName",
"url": "url"
}
],
"nextPageToken": "nextPageToken"
}