Webhooks
Use this endpoint to obtain details on Adaptix's webhooks. Implemented in Adaptix 2.8.0.
Get Webhook
HTTP Request
GET /hooks/ID
Response
Expected Response Code: 200
See JSON code example.
Webhook Properties
Name | Type | Description |
---|---|---|
id | int | ID of the webhook |
name | string | Title of the webhook |
description | string | Description of the webhook |
webhookUrl | string | Url to send the webhook payload to |
secret | string | Secret key used for authenticity verification |
eventsOrderbyDir | Order direction for queued events in one webhook. Can be "DESC" or "ASC" | |
isPublished | bool | Published state |
publishUp | datetime/null | Date/time when the webhook should be published |
publishDown | datetime/null | Date/time the webhook should be un published |
dateAdded | datetime | Date/time webhook was created |
createdBy | int | ID of the user that created the webhook |
createdByUser | string | Name of the user that created the webhook |
dateModified | datetime/null | Date/time webhook was last modified |
modifiedBy | int | ID of the user that last modified the webhook |
modifiedByUser | string | Name of the user that last modified the webhook |
category | null/object | Category |
triggers | array | List of triggers available in Adaptix |
List Webhooks
HTTP Request
GET /hooks
Query Parameters
Name | Description |
---|---|
search | String or search command to filter entities by. |
start | Starting row for the entities returned. Defaults to 0. |
limit | Limit number of entities to return. Defaults to the system configuration for pagination (30). |
orderBy | Column to sort by. Can use any column listed in the response. |
orderByDir | Sort direction: asc or desc. |
publishedOnly | Only return currently published entities. |
minimal | Return only array of entities without additional lists in it. |
Response
Expected Response Code: 200
See JSON code example.
Properties
Same as Get Webhook.
Create Webhook
HTTP Request
POST /hooks/new
Post Parameters
Name | Type | Description |
---|---|---|
id | int | ID of the webhook |
name | string | Title of the webhook |
description | string | Description of the webhook |
webhookUrl | string | URL to send the webhook payload to |
secret | string | (Optional) Secret key used for authenticity verification |
eventsOrderbyDir | Order direction for queued events in one webhook. Can be "DESC" or "ASC" | |
isPublished | bool | Published state |
Response
Expected Response Code: 201
Properties
Same as Get Webhook.
Edit Webhook
PUT creates a webhook if the given ID does not exist and clears all the webhook information, adds the information from the request. PATCH fails if the webhook with the given ID does not exist and updates the webhook field values with the values form the request.
HTTP Request
To edit a webhook and return a 404 if the webhook is not found:
PATCH /hooks/ID/edit
To edit a webhook and create a new one if the webhook is not found:
PUT /hooks/ID/edit
Post Parameters
Name | Type | Description |
---|---|---|
id | int | ID of the webhook |
name | string | Title of the webhook |
description | string | Description of the webhook |
webhookUrl | string | Url to send the webhook payload to |
secret | string | Secret key used for authenticity verification |
eventsOrderbyDir | Order direction for queued events in one webhook. Can be "DESC" or "ASC" | |
isPublished | bool | Published state |
Response
If PUT
, the expected response code is 200
if the webhook was edited or 201
if created.
If PATCH
, the expected response code is 200
.
Properties
Same as Get Webhook.
Delete Webhook
Delete a webhook.HTTP Request
DELETE /hooks/ID/delete
Response
Expected Response Code: 200
Same as Get Webhook.
List available webhook triggers
List webhook triggersHTTP Request
GET /hooks/triggers
Response
Expected Response Code: 200