Response Properties | Add Endpoint

For HTTP Status = 200

PropertyTypeDescription
createdAtStringTimeStamp when application got created.
idStringUnique Id of newly created application.
filterTypesArrayEvent Types subscribed in this webhook.
urlStringUrl of webhook endpoint.
disabledBooleanBoolean value to indicate whether the webhook endpoint is active or not.
rateLimitIntegerNumber of requests allowed per second.
uidStringUnique identifier for the endpoint
updatedAtStringLast updated timeStamp of the application.
versionIntegerLatest version of the endpoint.
metadataObjectAddition 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

PropertyTypeDescription
http_status_codeIntegerThis property contains HTTP status code. Range: 100 - 199 or 201 - 599
messageStringMessage containing error description.
{
    "http_status_code": 400,
    "message": "Invalid client_id"
}