Skip to content
  • Auto
  • Light
  • Dark
Get Started

Create

Create
post/api/v1/webhooks

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

Body Parameters
displayNamestring

The displayName field.

urlstring

The url field.

descriptionstring
optional

The description field.

Returns
webhookidstringcreatedAtstringdeletedAtstringdescriptionstringdisplayNamestringupdatedAtstringurlstringWebhook
optional

The Webhook message.

Request example cURL
curl https://{tenantDomain}.conductor.one/api/v1/webhooks \
    -H 'Content-Type: application/json' \
    -H "Authorization: Bearer $CONDUCTORONE_SDK_API_KEY" \
    -d '{
      "displayName": "displayName",
      "url": "url"
    }'
200 Example
{
  "webhook": {
    "id": "id",
    "description": "description",
    "displayName": "displayName",
    "url": "url"
  }
}