Get an Object

Get an existing object resource.

HTTP GET

GET /api/2013-12-01/Object/[Agency ID]/[Object ID]
Returns information for the given Object ID in the given Agency ID

Example Request

$ curl -G https://[Site Name].readyop.com/api/2013-12-01/Object/[Agency ID]/[Object ID] \
-u "[API Account ID]:[API Token]"

Request Result

{
    "code": 0,
    "status": 200,
    "detail": "Success",
    "timestamp": "2015-09-21T16:08:10+00:00",
    "object": {
        "Object ID": 497,
        "Tab ID": 1,
        "Contact ID": null,
        "Created": 1351641718,
        "Status": "Active",
        "Type": "Role",
        "Name": "Orlando Police Dept",
        "Subtitle": "",
        "Tags": "",
        "Color": "Black",
        "Indicator": "Green",
        "Weblink": "http://www.google.com"
    }
}