Manage groups
Use this section to add/update/delete new groups of sites(devices).
Introduction
evalink talos allows you to group your sites (devices) according to your needs. You can create multiple groups within your company but each site (device) can belong to only one group.
get a list of your site (device) groups by company ID
GET
https://talos-app.io/api/device-service/device-groups/search/findByCompanyId
Use this endpoint to receiver a list of your site (device) groups for a particular company.
Query Parameters
companyId
string
The Company ID, as it is displayed on the evalink talos Web Interface.
Headers
Authorization
string
Use 'Bearer' followed by your API token.
create a new site (device) group
POST
https://talos-app.io/api/device-service/device-groups
Use this endpoint to create a new site (device) groups for a particular company.
Path Parameters
companyId
string
The Company ID, as it is displayed on the evalink talos Web Interface.
Headers
Authorization
string
Use 'Bearer' followed by your API token.
get a list of site (device) groups by site group IDs
GET
https://talos-app.io/api/device-service/device-groups/search/findByIdIn{ids}
Use this endpoint to receive a list of site (device) groups according to a collection of site group IDs
Query Parameters
ids
string
A collection of site group IDs.
Headers
Authorization
string
Use 'Bearer' followed by your API token.
get a site (device) group by site group ID
GET
https://talos-app.io/api/device-service/device-groups/{id}
Use this endpoint to receive a single site (device) group for a particular site group ID.
Path Parameters
id
string
The relevant device group ID.
Headers
Authorization
string
Use 'Bearer' followed by your API token.
delete a site (device) group
DELETE
https://talos-app.io/api/device-service/device-groups/{id}
Use this endpoint to delete a group of sites (devices). Note that the containing sites (devices) are not deleted.
Path Parameters
id
string
The relevant device group ID.
Headers
Authorization
string
Use 'Bearer' followed by your API token.
update an existing site (device) group
PATCH
https://talos-app.io/api/device-service/device-groups/{id}
Use this endpoint to update an existing site (device) group according to your needs.
Path Parameters
id
string
The relevant device group ID.
Headers
Authorization
string
Use 'Bearer' followed by your API token.
get a list of sites (devices) belonging to a particular site group
GET
https://talos-app.io/api/device-service/device-groups/{id}/devices
Use this endpoint to receive a list of sites (devices) in a particular device group.
Path Parameters
id
string
The relevant device group ID.
Headers
Authorization
string
Use 'Bearer' followed by your API token.
get a shareable link of the sites (devices) in a device group
GET
https://talos-app.io/api/device-service/device-groups/{id}/shareLinks
Use this endpoint to receive a shareable link of the sites withing a particular device group.
Path Parameters
id
string
The relevant device group ID.
Headers
Authorization
string
Use 'Bearer' followed by your API token.
create a new shareable link of the sites (devices) in a device group
POST
https://talos-app.io/api/device-service/device-groups/{id}/shareLinks
Use this endpoint to create a new shareable link of the sites (devices) in a particular site group.
Path Parameters
id
string
The relevant device group ID.
Headers
Authorization
string
Use 'Bearer' followed by your API token.
Last updated