POST

/snapshot

5 endpoints
POST/snapshot/save
save
Request Body
FieldTypeDescription
namestringResource or visualization name
syncboolWait for completion when true
Response200 OK
FieldTypeDescription
successboolWhether the call succeeded
msgstringStatus or error message
datanullPayload; shape depends on the endpoint
Request bodyJSON
{
  "name": "before_pick",
  "sync": true
}
Response200 OK
{
  "success": true,
  "msg": "ok",
  "data": null
}
POST/snapshot/restore
restore
Request Body
FieldTypeDescription
namestringResource or visualization name
syncboolWait for completion when true
Response200 OK
FieldTypeDescription
successboolWhether the call succeeded
msgstringStatus or error message
datanullPayload; shape depends on the endpoint
Request bodyJSON
{
  "name": "before_pick",
  "sync": true
}
Response200 OK
{
  "success": true,
  "msg": "ok",
  "data": null
}
POST/snapshot/delete
delete
Request Body
FieldTypeDescription
namestringResource or visualization name
syncboolWait for completion when true
Response200 OK
FieldTypeDescription
successboolWhether the call succeeded
msgstringStatus or error message
datanullPayload; shape depends on the endpoint
Request bodyJSON
{
  "name": "before_pick",
  "sync": true
}
Response200 OK
{
  "success": true,
  "msg": "ok",
  "data": null
}
POST/snapshot/clear
clear
Request Body
FieldTypeDescription
syncboolWait for completion when true
Response200 OK
FieldTypeDescription
successboolWhether the call succeeded
msgstringStatus or error message
datanullPayload; shape depends on the endpoint
Request bodyJSON
{
  "sync": true
}
Response200 OK
{
  "success": true,
  "msg": "ok",
  "data": null
}
POST/snapshot/list_snapshots
list_snapshots
Request Body
FieldTypeDescription
syncboolWait for completion when true
Response200 OK
FieldTypeDescription
successboolWhether the call succeeded
msgstringStatus or error message
dataarrayPayload; shape depends on the endpoint
Request bodyJSON
{
  "sync": true
}
Response200 OK
{
  "success": true,
  "msg": "ok",
  "data": ["before_pick", "after_grasp"]
}