Retrieve the pinned object with a given ID.
URL: /objects/{id}
Method: GET
Code : 200 OK
Content: object
defined as:
{
"id": "string",
"class": "string",
"hasNamedSlots": "boolean",
"hasIndexedSlots": "boolean",
"size": "number",
"printString": "string"
}
Example:: get the object with the ID 1
, GET /objects/1
:
{
"id": "1",
"class": "Rectangle",
"hasNamedSlots": true,
"hasIndexedSlots": false,
"size": 0,
"printString": "1 @ 2 rightBottom: 11 @ 12"
}