Get Data using Cells API
POST {{host}}/api/rest/v4/data/entrydata/get
Authorization: Bearer {{token}}
Content-Type: application/json
Params
Name | Parameter Type | Data Type | Values | Description |
---|---|---|---|---|
fillExtendedData | Query Parameter | boolean | true/false | Appends modified DataTime and Modified By to entry data |
resolveReferenceUrls | Query Parameter | boolean | false | If true, returns URL of entry for reference fields |
wrapIntoArrays | Query Parameter | boolean | true | Improves consistency for multi-value fields |
dateTimeBehavior | Query Parameter | int | 0 or 1 | Default 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
andfieldId
are required.- You're only able to retrieve 10,000 fields at a time
Examples
[
{
"entryId": 0, (required)
"fieldId": 0, (required)
"currencyCode": "string" (optional)
}
]