Application API
- DarkLight
Application API
- DarkLight
Article summary
Did you find this summary helpful?
Thank you for your feedback
Application State Synchronization
This API is used to synchronize the application with the state of the Acqueon Workspace ’s core component (Amazon core). It helps to get the latest application state.
Pre-requisite
The client application must be registered to a PubSub library.
Sequence Diagram
Message Structure
Request Parameters | Value |
channel | Amazon |
topic | App |
subtopic | StateSync |
source | «app-name-broadcasting-this-message» |
Response Parameters | Value |
channel | Amazon |
topic | Agent |
subtopic | StateSync |
message | Enum (InitState). Refer Enum |
Sample Request
{
"channel": "Amazon",
"topic": "Agent",
"subtopic": "StateSync",
"source": "myapp"
}
Sample Response
{
"channel": "Amazon",
"topic": "App"
"subtopic": "StateSync"
"message": {
"initState": "Loaded"
}
}
Was this article helpful?