Eventi
I Dispositivi inviano eventi al Cloud ogni volta che si connettono e ogni volta che viene chiamato Trackle.publish()
. E' possibile ricevere gli eventi dei dispositivi attraverso una tecnologia che sfrutta un flusso di dati HTTP chiamata Server-Sent Events (SSEs).
Ottieni un flusso di eventi pubblici
GET
https://api.trackle.io/v1/events/[:eventName]
Open a stream of Server Sent Events for all public events.
Path Parameters
eventPrefix
string
Filters the stream to only events starting with the specified prefix. Omit to get all events.
Ottieni un flusso di eventi dei tuoi dispositivi
GET
https://api.trackle.io/v1/devices/events/[:eventName]
Open a stream of Server Sent Events for all public and private events for your devices.
Path Parameters
eventPrefix
string
Filters the stream to only events starting with the specified prefix. Omit to get all events.
Ottieni un flusso di eventi per un dispositivo
GET
https://api.trackle.io/v1/devices/:deviceID/events/[:eventName]
Open a stream of Server Sent Events for all public and private events for the specified device.
Path Parameters
deviceID
string
Device ID
eventPrefix
string
Filters the stream to only events starting with the specified prefix. Omit to get all events.
Ottieni un flusso di eventi di un prodotto
GET
https://api.trackle.io/v1/products/:productIdOrSlug/devices/events/[:eventName]
Open a stream of Server Sent Events for all public and private events for a product.
Path Parameters
productIdOrSlug
string
Product ID or Slug
eventPrefix
string
Filters the stream to only events starting with the specified prefix. Omit to get all events
Ottieni un flusso di eventi di un dispositivo parte di un prodotto
GET
https://api.trackle.io/v1/products/:productIdOrSlug/devices/:deviceID/events/[:eventName]
Open a stream of Server Sent Events scoped to a particular device in a product
Path Parameters
productIdOrSlug
string
Product ID or Slug
deviceID
string
Device ID
eventPrefix
string
Filters the stream to only events starting with the specified prefix. Omit to get all events
Pubblica un evento
POST
https://api.trackle.io/v1/devices/events
Publish an event to your devices stream.
Request Body
name
string
Event name
data
string
Event data. Limited to a maximum of 622 bytes
private
boolean
Private or public
Pubblica un evento per un prodotto
POST
https://api.trackle.io/v1/products/:productIdOrSlug/events
Publish an event that is sent to the product's event stream.
Path Parameters
productIdOrSlug
string
Product ID or Slug
Request Body
name
string
Event name
data
string
Event data. Limited to a maximum of 622 bytes
private
boolean
Private or public
Last updated
Was this helpful?