Manage webhooks
Use this section to add and configure webhooks in evalink talos.
WORK IN PROGRESS
Find all webhooks by Company ID
GET
https://talos-app.io/api/webhook-integration/web-hooks/search/findByCompanyId
Use this endpoint to find all the webhooks for a particular company.
Query Parameters
companyId
string
The Company ID, as it is displayed on the evalink talos Web Interface.
Headers
Authentication
string
Use 'Bearer' followed by your API token.
Find all webhooks by Device ID
GET
https://talos-app.io/api/webhook-integration/web-hooks/search/findByCompanyId
Use this endpoint to find all the webhooks for a particular device.
Query Parameters
deviceId
string
The relevant device ID.
Headers
Authentication
string
Use 'Bearer' followed by your API token.
create a new webhook
POST
https://talos-app.io/api/webhook-integration/web-hooks
Use this endpoint to create a new webhook.
Headers
Authentication
string
Use 'Bearer' followed by your API token.
Request Body
periodic
string
name
string
invocationInterval
string
deviceId
string
description
string
defaultTechnical
string
defaultAlarmCode
string
companyId
string
delete a webhook
DELETE
https://talos-app.io/api/webhook-integration/web-hooks/{id}
Use this endpoint to delete a new webhook.
Path Parameters
id
string
The relevant webhook id.
Headers
Authentication
string
Use 'Bearer' followed by your API token.
update a webhook
PUT
https://talos-app.io/api/webhook-integration/web-hooks/{id}
Use this endpoint to update a new webhook.
Path Parameters
id
string
The relevant webhook ID.
Headers
Authentication
string
Use 'Bearer' followed by your API token.
patch a webhook
PATCH
https://talos-app.io/api/webhook-integration/web-hooks/{id}
Use this endpoint to patch a new webhook.
Path Parameters
id
string
The relevant webhook ID.
Headers
Authentication
string
Use 'Bearer' followed by your API token.
activate a webhook endpoint
GET
https://talos-app.io/api/webhook-integration/incoming/{token}
Use this endpoint to activate a webhook endpoint and notify evalink talos for a particular event.
create a webhook endpoint
POST
https://talos-app.io/api/webhook-integration/incoming/{token}
Path Parameters
string
activate a periodic webhook endpoint
GET
https://talos-app.io/api/webhook-integration/periodic/{token}
Use this endpoint to activate a webhook with periodic invocation
Path Parameters
string
create a periodic webhook endpoint
POST
https://talos-app.io/api/webhook-integration/periodic/{token}
Use this endpoint to create a webhook with periodic invocation
Path Parameters
string
Last updated