Added

New `updated_at` field

🏷️ API version: 2026-01

You can now retrieve a monday workdoc's last updated date using the new updated_at field on the docs query.

query {
  docs(
    object_ids: [123456789]
    limit: 1
  ) {
    id
    object_id
    settings
    updated_at
    created_by {
      id
      name
    }
  }
}