The REST API provides access to search for and create custom object data.
Accessing Custom Object Data
- GET /data/customObject/{id}?count={count}&page={page}&search={search}&orderBy={orderBy}&lastUpdatedAt={lastUpdatedAt}
Response
The response for this call looks as follows :
{ "elements": [ { "type": "CustomObjectData", "id": "66409", "fieldValues": [ { "type": "FieldValue", "id": "896", "value": "fred.sakr@eloqua.com" }, { "type": "FieldValue", "id": "897", "value": "Event Name", }, ] }
Properties
Name | Type | Description | Notes | Validations |
type | "CustomObjectData" | |||
contactId | integer | The unique id of the contact linked to this Custom Object Data | IdRequirement | |
currentStatus | string | |||
fieldValues | List of FieldValue | A collection of field values stored in the Custom Object | ||
id | integer | The unique ID for this custom object data | IdRequirement |
Related Operations
- POST : /data/customObject/{id}