Manage schedules
Use this section to add/update/delete schedules in evalink talos.
Introduction
Schedules can be set to define a timeslot. You can define workflows based on these schedules.
Example: You can define, that in case of an alarm the call is sent to a different recipient, based on the schedule. Through opening hours it’s sent to your in-house security, through closed hours it,s sent to a private ARC.
create new schedules
POST
https://talos-app.io/api/schedule-service/schedules
Use this endpoint to create a new schedule in a service.
Headers
Authorization
string
Use "Bearer" followed by your API Token.
list the schedules by device ID
GET
https://talos-app.io/api/schedule-service/schedules/search/findByDeviceId{deviceId}
Use this endpoint to list the schedules by their device id.
Query Parameters
deviceId
string
The ID of the device you want to access.
Headers
Authorization
string
Use "Bearer" followed by your API Token.
delete the schedules
DELETE
https://talos-app.io/api/schedule-service/schedules/{id}
Use this endpoint to delete the schedules.
Path Parameters
id
string
The relevant schedule ID.
Headers
Authorization
string
Use "Bearer" followed by your API Token.
list the special days by companyId
GET
https://talos-app.io/api/schedule-service/special-days/search/findByCompanyId{companyId}
Use this endpoint to list the special days.
Query Parameters
companyId
string
The company Id of the required company.
Headers
Authorization
string
Use "Bearer" followed by your API Token.
create new special days
POST
https://talos-app.io/api/schedule-service/special-days
Use this endpoint to create new special days within the scheduled service.
Headers
Authorization
string
Use "Bearer" followed by your API Token.
delete the special days
DELETE
https://talos-app.io/api/schedule-service/special-days/{id}
Use this endpoint to delete the special days from the scheduled service.
Path Parameters
id
string
The required special days ID.
Headers
Authorization
string
Use "Bearer" followed by your API Token.
Last updated
Was this helpful?