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-14T05:48:42.931Z",
"description": "",
"disabled": false,
"filterTypes": [
"test_endpoint",
"sync.basic_policy_data.success",
"sync.full_policy_data.success"
],
"id": "ep_test",
"metadata": {},
"rateLimit": null,
"uid": null,
"updatedAt": "2023-02-14T05:51:46.900Z",
"url": "https://test.com",
"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"
}