For HTTP Status = 200
Property | Type | Description |
---|---|---|
createdAt | String | TimeStamp when application got created. |
id | String | Unique Id of newly created application. |
filterTypes | Array | Event Types subscribed in this webhook. |
url | String | Url of webhook endpoint. |
disabled | Boolean | Boolean value to indicate whether the webhook endpoint is active or not. |
rateLimit | Integer | Number of requests allowed per second. |
uid | String | Unique identifier for the endpoint |
updatedAt | String | Last updated timeStamp of the application. |
version | Integer | Latest version of the endpoint. |
metadata | Object | Addition information of the webhook endpoint. |
{
"data": {
"channels": null,
"createdAt": "2023-02-28T04:57:51.170Z",
"description": "Webhook for testclient",
"disabled": false,
"filterTypes": [
"sync.full_policy_data.success",
"test_endpoint",
"sync.policy_documents.success"
],
"id": "ep_dsfasdfs",
"metadata": {},
"rateLimit": null,
"uid": "5c8be93e-75be-41b6-9c73-ea0d37dd204c",
"updatedAt": "2023-02-28T04:57:51.171Z",
"url": "https://play/in/e_TfHLp33dsfasdw3zKK1KqmdXz/",
"version": 1
}
}
For HTTP Status != 200
Property | Type | Description |
---|---|---|
http_status_code | Integer | This property contains HTTP status code. Range: 100 - 199 or 201 - 599 |
message | String | Message containing error description. |
{
"http_status_code": 400,
"message": "Invalid client_id"
}