POST /api/v3/webhooks

Create Webhook Subscription

Request Path

POST /api/v3/webhooks

Request Payload

{
  "accountId": "string",
  "projectId": "string",
  "callbackUrl": "string",
  "name": "string",
  "description": "string",
  "events": [
    "string"
  ]
}

Parameters

None

Response Example

{
  "id": "string",
  "creatorId": "string",
  "creatorEmail": "string",
  "accountId": "string",
  "projectId": "string",
  "callbackUrl": "string",
  "isActive": true,
  "name": "string",
  "description": "string",
  "createdOn": "2022-07-06T13:53:11.477Z",
  "events": [
    "string"
  ]
}