Viewing Logged Activity Details via API
Audience: Technical Builders, Implementors, and Developers
Purpose: Enables programmatic logging of Activities in Kizen with clear, accurate, modern API documentation.
Overview
Logged Activities represent an authoritative record of completed interactions in Kizen. They are commonly used as inputs to reporting, integrations, and audit workflows.
The GET /api/activities/logged/{id} endpoint allows you to retrieve the full details of a logged Activity by its unique ID, providing access to metadata, associations, and submitted field values captured at the time the Activity was logged.
The material on this page builds on information covered on the Activities Core Concepts and Activities Data Model.
Why Would I Use this API?
You can use the Logged Activity retrieval API when you need to:
Validate that an Activity was logged correctly
Synchronize completed Activity data with external systems
Support audit, compliance, or reporting workflows
Debug integrations or automations that log Activities
Retrieve submitted field values for downstream processing
Logged Activity API Behavior
Logged Activities represent completed interactions and can be retrieved later using their unique logged Activity ID
The response includes Activity type metadata, timestamps, the user who logged the Activity, and associated records
Submitted structured field values are returned in
fields[]when present. Thefields[].valueformat varies by field typeIf a logged Activity originated from a scheduled Activity,
scheduled_activity_idcontains the scheduled Activity ID. Otherwise it isnullCompletion metadata is included.
completed_atis only populated when the activity is explicitly marked as completed; otherwise, it will be nulllogged_atAlways matches the time the activity record is created and is displayed on the Kizen UI. Logging an activity and creating the record are the same action, so this value reflects when the activity was logged.completed_atReflects the completion timestamp from the associated scheduled activity, when applicable.
Logged Activity Endpoint
Want to try the API out? Visit our Swagger docs.
Get logged activity record by ID
A UUID string identifying this logged activity record.
Logging Activity Schema
What's Next?
After retrieving logged Activities via the API, you can:
Validate or audit completed Activities
Synchronize logged Activity data with external systems
Use logged Activities in reporting, analytics, or downstream workflows
For more information on logged Activities, check out the following topics below.
Last updated
Was this helpful?