Skip to content
Kristian Karl edited this page Sep 28, 2019 · 1 revision

GetData

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"
}
Clone this wiki locally