-
Notifications
You must be signed in to change notification settings - Fork 116
Websocket: getData
Kristian Karl edited this page Sep 28, 2019
·
1 revision
The Websocket message command getData
is used to ask GraphWalker for the current data values of the current model.
Request
{
"command":"getData"
}
Response
If the request was successful "success" will be "true".
This is an example of a getData response.
{
"data":{
"x":"1",
"y":"2"
},
"success":true,
"command":"getData"
}