Skip to main content

EntrySheetUpdateBase

These are the updatable fields for an entry sheet. In general, you do not need to send most of the fields available in a sheet back to the server when creating or modifying it - just id_user and dates fields, plus the rows field if you wish to update the entry data. The rows field should contain the complete set of entry data for the sheet, not just the changes.

See the Entry Sheet API tutorial.

id_sheetstring

Sheet ID (must match path parameter if provided)

Example: 0B04998DCD0E45DF9D0EC97EC926D281
id_userstringrequired

Sheet owner user ID

Example: alice
datesstring[]required

Array of dates in the period (YYYYMMDD format)

Possible values: Value must match regular expression ^\d{8}$

Example: ["20251102","20251103","20251104","20251105","20251106","20251107","20251108"]
submitboolean

Whether to submit after saving

Default value: false
rowsobject[]

Current entry data to update/save the sheet.

See the complete Time Sheet schema for all of the available fields, including discussion of the important rows field.

See also the Entry Sheet API tutorial.

EntrySheetUpdateBase
{
"id_sheet": "0B04998DCD0E45DF9D0EC97EC926D281",
"id_user": "alice",
"dates": [
"20251102",
"20251103",
"20251104",
"20251105",
"20251106",
"20251107",
"20251108"
],
"submit": false,
"rows": [
{}
]
}