action intellifi_get_events { label: "Get all events" provider: intellifi method: GET path: "/events" encoding: json input: { type: "object" properties: { after: { type: "string" format: "date-time" } after_id: { type: "string" } before: { type: "string" format: "dateTime" } before_id: { type: "string" } from: { type: "string" format: "dateTime" } from_id: { type: "string" } id: { type: "string" description: "Unique identifier for resource." } id_only: { type: "boolean" } limit: { type: "integer" } populate: { type: "string" } results_only: { type: "boolean" } sort: { type: "string" } time_created: { type: "string" format: "dateTime" description: "[ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) formatted string for when this resource was created." } time_event: { type: "string" format: "dateTime" description: "[ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) formatted string for when this resource is going to be deleted." } time_expire: { type: "string" format: "dateTime" description: "[ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) formatted string for when this resource is going to be deleted." } timeout_s: { type: "number" } "topic.action": { type: "string" description: "Indicates the kind of event that was executed. In most cases it's a verb. I.e. 'connected', 'created' etc..." enum: ["created", "updated", "deleted", "disappeared", "connection-rssi-changed"] } "topic.resource": { type: "string" description: "Unique identifier for resource." } "topic.resource_type": { type: "string" description: "The The available event topic resources types on the API. Is written in its plural form." enum: ["blobs", "items", "keys", "kvpairs", "locations", "presences", "services", "spots", "subscriptions", "users"] } until: { type: "string" format: "dateTime" } until_id: { type: "string" } } additionalProperties: false } output: { type: "object" } }