Get employee journal entry details
Returns complete details for a specific employee journal entry.
What is returned:
- Journal entry ID and associated employee ID
- Rich text content (body) converted to HTML format from the internal document format
- Mood indicator (Happy, Neutral, or Sad)
- Optional reminder date in ISO 8601 format (null if not set)
- Creation timestamp (when the entry was created)
- Last update timestamp (when the entry was last modified)
- Creator user ID (who created the entry)
Access control:
- Creator of the entry can access
- Users with
Employees.editpermission can access any journal entry - Returns 404 if the entry does not exist, has been deleted, or the user does not have access
Note: The body content is automatically converted from the internal document format (IDoc) to HTML for easy display in web applications.
/employees/journal/{id}AuthorizationOAuth2 access token · headerrequiredapi:readAuthorizationBearer token (JWT) · headerrequiredidstringrequiredbodystringrequiredJournal entry content in HTML format. The content is automatically converted from the internal document format (IDoc) to HTML for easy display in web applications. Contains the rich text content including headings, paragraphs, lists, links, and formatting as originally provided.
createdAtstringrequiredISO 8601 timestamp indicating when this journal entry was created. Format: YYYY-MM-DDTHH:mm:ssZ (e.g., "2024-01-15T10:30:00Z").
createdBystringrequiredUUID of the user who created this journal entry. This identifies who wrote the entry, which is useful for tracking authorship and accountability.
employeeIdstringrequiredUUID of the employee this journal entry is associated with. This identifies which employee the entry is about.
idstringrequiredUnique identifier (UUID) for this journal entry
lastUpdatedstringrequiredISO 8601 timestamp indicating when this journal entry was last modified. Format: YYYY-MM-DDTHH:mm:ssZ (e.g., "2024-01-16T14:20:00Z"). This is automatically updated whenever the entry is edited via the PATCH endpoint.
moodstringrequiredEmotional indicator for the journal entry. Values: Happy (positive interaction), Neutral (standard/neutral interaction), or Sad (negative or concerning interaction). This helps categorize and filter entries by emotional context.
SadNeutralHappyreminderobject | nullrequiredOptional reminder date in ISO 8601 format (YYYY-MM-DD). Set when creating or updating the entry to track follow-up dates for goals, agreements, or actions. Returns null if no reminder is set. Example: "2024-12-31" for December 31, 2024.
Unauthorized - Invalid or missing authentication token
Forbidden - Insufficient API scopes or permissions