Appearance
Get the List of Webhooks
Authorization is required
Example Response
json
[
{
"id": "166d6ba4110:11:7c724450",
"type": "NewAnnotation",
"webhookURL": "",
"hasAuthorization": true,
"lastSuccessTimestamp": 1541459637275,
"lastResponseCode": 200,
"disabled": false,
"errorCount": 0
},
{
"id": "166e676a496:52:8c61af75",
"type": "NewEntrySaved",
"webhookURL": "",
"hasAuthorization": true,
"lastSuccessTimestamp": 1541464883092,
"resourceId": "enterprise/acme/tag/2a5a5470-982a-4f9e-a3c3-b72abdb1eb6d",
"disabled": false,
"errorCount": 1,
"lastErrorTimestamp": 1541466742223,
"lastErrorMessage": "Authorization required",
"lastResponseCode": 403
}
]| Object | Type | Description |
|---|---|---|
| id | String | The unique trigger id. |
| type | String | The trigger type (“NewEntrySaved” or “NewAnnotation”). |
| webhookURL | URL | The URL events will be sent to; it must use https, and point to a publicly available server. |
| hasAuthorization | Boolean | Returns true if this webhook has a configured authorization header. The actual header value is not returned. |
| lastSuccessTimestamp | Timestamp | (Optional) The timestamp of the last successful event (or test) request. |
| lastResponseCode | Timestamp | (Optional) The timestamp of the last successful event (or test) request. |
| lastErrorTimestamp | Timestamp | (Optional) The timestamp of the last unsuccessful event (or test) request. |
| lastErrorMessage | String | (Optional) If the last request failed, this field will contain the server response (if there was one), or an error message providing clues about the error. |
| errorCount | Number | The number of consecutive errors recorded. This count is reset to zero after each successful delivery. |
| disabled | Boolean | If true, this webhook is disabled. |
| templateId | String | (Optional) The template to be applied for 3rd party webhooks. Currently GoogleChat and MicrosoftTeams are supported. |
OpenAPI definition
json
{
"openapi": "3.1.0",
"info": {
"title": "Enterprise API",
"version": "1.0"
},
"servers": [
{
"url": "https://api.feedly.com/v3/enterprise"
}
],
"components": {
"securitySchemes": {
"sec0": {
"type": "apiKey",
"in": "header",
"name": "Authorization",
"x-bearer-format": "bearer"
}
}
},
"security": [
{
"sec0": []
}
],
"paths": {
"/triggers": {
"get": {
"summary": "Get the List of Webhooks",
"description": "",
"operationId": "get-the-list-of-webhooks",
"responses": {
"200": {
"description": "200",
"content": {
"application/json": {
"examples": {
"Result": {
"value": "{}"
}
},
"schema": {
"type": "object",
"properties": {}
}
}
}
},
"400": {
"description": "400",
"content": {
"application/json": {
"examples": {
"Result": {
"value": "{}"
}
},
"schema": {
"type": "object",
"properties": {}
}
}
}
}
},
"deprecated": false
}
}
},
"x-readme": {
"headers": [],
"explorer-enabled": true,
"proxy-enabled": true
},
"x-readme-fauxas": true,
"_id": "65492263c04b66000c5ce44c:654a7ab8f1f87d052e6cef0a"
}