Contact Log in

Get Object

Retrieve an object from the CRM using its ID. It will have the original form that it was stored in, which may differ from the current version’s schema if that has changed.

The object data structure has the following fields:

id: int
objectTypeID: int
data: (underlying data, as defined by the object type)
customerID: int
createdAt: RFC3339 timestamp
version: int, based on the current version of the Object Type
         when this object was inserted or updated
byteSize: the size in bytes of the data field in this object

Thus an example object might look like this:

{
	"id": 1,
	"objectTypeID": 1,
	"data": {"name": "Bob Belcher", "favoriteFood": "burgers"},
	"customerID": 1,
	"createdAt": "2020-01-30T00:00:00Z",
	"version": 1,
	"byteSize": 48
}
Ask Support