GET
/queries
Returns a list of queries available.
POST
/queries
Creates a named EPCIS events query.
GET
/queries/{queryName}
Returns the query definition.
DELETE
/queries/{queryName}
Removes a named query and forcibly unsubscribes all active subscriptions, whether by WebSockets or Webhooks
GET
/queries/{queryName}/subscriptions
Returns active subscriptions with the option to use pagination if needed.
POST
/queries/{queryName}/subscriptions
Creates a query subscription.
GET
/queries/{queryName}/subscriptions/{subscriptionID}
Returns the details of a subscription. This method is useful to verify if a subscription is still active.
DELETE
/queries/{queryName}/subscriptions/{subscriptionID}
Unsubscribes a client by deleting the query subscription.
#
GET
/queries/{queryName}/events
Returns EPCIS events with the option to use pagination if needed. This endpoint supports query subscriptions using WebSockets.
DELETE
/nextPageToken/{token}
Optional endpoint that allows on-demand release of any resources associated with `nextPageToken`.