Get Data using Cells API

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

Params

NameParameter TypeData TypeValuesDescription
fillExtendedDataQuery Parameterbooleantrue/falseAppends modified DataTime and Modified By to entry data
resolveReferenceUrlsQuery ParameterbooleanfalseIf true, returns URL of entry for reference fields
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

If currency field, you can optionally pass a currency value. Passing RC will return the value in the recorded currency. Passing a valid currency string will convert the stored value into the currency specified in the response.

Query schema Entry Types and All Fields find the appropriate entryIds and fieldIds necessary.

Additional Requirements

  • entryId and fieldId are required.
  • You're only able to retrieve 10,000 fields at a time

Examples

[
  {
    "entryId": 0, (required)
    "fieldId": 0, (required)
    "currencyCode": "string" (optional)
  }
]