History
Historical Data

Get History as of a Point-In-Time

POST {{host}}/api/rest/v4/data/entrydata/getHistoricalData
Authorization: Bearer {{token}}
Content-Type: application/json

Retrieves data as it existed at a specific point in time. If the entry ID refers to a deleted entry, the response will show the data as it was at the time of deletion. For calculated fields, the response always returns current value.

Params

NameParameter TypeData TypeValuesDescription
wrapIntoArraysQuery ParameterbooleantrueImproves consistency for multi-value fields
dateTimeBehaviorQuery Parameterint0 or 1Default setting of 0 returns date-time in UTC. 1 returns date-time values localized to user/client's time-zone settings
entryTypeIdBodystring/intcompany or 2011Object ID or APIName
fieldsBodystring[]["12","34"]A valid list of field IDs, example:
entriesBodyint[][1,2,3]A valid list of entries IDs
fromDateBodydate-time2021-04-26T11:16:10.955ZAny valid ISO 8601 date-time string.

Examples

{
  "entryTypeId": "int or string",
  "fields": [
    "string"
  ],
  "entries": [
    int
  ],
  "fromDate": "date-time"
}