com.atlassian.confluence.content.render.xhtml.migration.exceptions.UnknownMacroMigrationException: The macro 'next_previous_link3' is unknown.
Store APIs
Query records in Siddhi store
Overview
Description | Queries records in the Siddhi store. For more information, see Managing Stored Data via REST APIs. |
---|---|
API Context | /stores/query |
HTTP Method | POST |
Request/Response Format | application/json |
Authentication | Basic |
Username | admin |
Password | admin |
Runtime | Worker/ Editor |
curl command syntax
curl -X POST <protocol>://<host>:<port>/stores/query -H "content-type: application/json" -u "<username>:<password>" -d '{"appName" : "<SiddhiAppName>", "query" : "<Siddhi Select Query>" }'
Sample curl command for Worker profile
The following is a sample curl command to issue when the Siddhi application is deployed and run in the Worker profile. For more information, see WSO2 Stream Processor Profiles.
curl -X POST https://localhost:7443/stores/query -H "content-type: application/json" -u "admin:admin" -d '{"appName" : "RoomService", "query" : "select 10 as roomNumber, 1 as arrival update RoomTypeTable set RoomTypeTable.people = RoomTypeTable.people + arrival on RoomTypeTable.roomNo == roomNumber;" }' -k
Sample curl command for Editor profile
The following is a sample curl command to issue when the Siddhi application is deployed and run in the Editor profile. For more information, see WSO2 Stream Processor Profiles.
curl -X POST http://localhost:7370/stores/query -H "content-type: application/json" -d '{"appName" : "RoomService", "query" : "select 10 as roomNumber, 1 as arrival update RoomTypeTable set RoomTypeTable.people = RoomTypeTable.people + arrival on RoomTypeTable.roomNo == roomNumber;" }'
Sample output
{ records: [] }
Response
HTTP Status Code | 200 or 404 For descriptions of the HTTP status codes, see HTTP Status Codes. |
---|
com.atlassian.confluence.content.render.xhtml.migration.exceptions.UnknownMacroMigrationException: The macro 'next_previous_links2' is unknown.