EntryCell
A cell represents the intersection of a row and a date, containing the actual entry data (hours/amount) and associated metadata for that specific combination.
Date in F8 format (YYYYMMDD)
Possible values: Value must match regular expression ^\d{8}$
20251103The entry amount for this cell:
- For time: hours (e.g., 8.0)
- For expense: monetary amount or mileage
- For custom: distance
8Array of entry record IDs that contribute to this cell's total. Multiple IDs indicate multiple entries for the same row/date combination.
["time_rec_12345","time_rec_67890"]attachments object[]
File attachments associated with this cell
Encoded unique identifier for the attachment. Used to retrieve or delete the attachment.
This can be provided to the
getAttachmentByEncodedId
legacy API method to retrieve the file.
dGltZV9hdHRhY2htZW50czoxMjM0NQ==User ID of the person who uploaded the attachment
aliceUnix timestamp when the attachment was uploaded
1762196180Optional description or note about the attachment
Receipt for client lunch meetingOriginal filename of the uploaded file
receipt_2025-11-03.pdfMIME type of the file
application/pdfFile size in bytes
524288notes object[]
Diary notes associated with this cell
Unique identifier for the note
note_12345The note text content
Worked on bug fixes for the login moduleWhether the note has been modified since creation
falselocations object[]
GPS locations recorded for entries in this cell
coords objectrequired
Geographic coordinates
Latitude in decimal degrees
30.0613632Longitude in decimal degrees
-99.1363072Altitude in meters above sea level (when available).
nullHorizontal accuracy in meters. A geofence can have a minimum required accuracy, but different devices may have different capabilities.
963.78847Additional notes or description for this location. This is only rarely provided / available.
Unix timestamp (milliseconds) when the location was captured
1762542072875{
"date": "20251103",
"amount": 8,
"ids": [
"time_rec_12345",
"time_rec_67890"
],
"attachments": [
{
"uniqueid": "dGltZV9hdHRhY2htZW50czoxMjM0NQ==",
"creator": "alice",
"create_timestamp": 1762196180,
"note": "Receipt for client lunch meeting",
"filename": "receipt_2025-11-03.pdf",
"mimetype": "application/pdf",
"size": 524288
}
],
"notes": [
{
"id": "note_12345",
"text": "Worked on bug fixes for the login module",
"modified": false
}
],
"locations": [
{
"coords": {
"latitude": 30.0613632,
"longitude": -99.1363072,
"altitude": null,
"accuracy": 963.78847
},
"notes": "",
"timestamp": 1762542072875
}
]
}