View Logged Activity Details API

circle-check

Overview

Use the View Logged Activity Details 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

View Logged Activity Details API Behavior

Use this endpoint to create and retrieve logged Activities that represent completed interactions within the platform. It:

  • Returns a unique logged Activity ID that can be used for future retrieval

  • Includes Activity type metadata, timestamps, the logging user, and associated Records

  • Returns structured field values in fields[] when present, with value formats varying by field type

  • Populates scheduled_activity_id when the logged Activity originated from a scheduled Activity; otherwise returns null

  • Includes completion metadata, where completed_at is populated only when explicitly marked as completed

  • Sets logged_at to the record creation timestamp, which reflects when the Activity was logged and appears in the UI

  • Sets completed_at to the completion timestamp from the associated scheduled Activity when applicable


View Logged Activity Details Endpoint

Want to try the API out? Visit our Swaggerarrow-up-right docs.

get

Get logged activity record by ID

Authorizations
X-API-KEYstringRequired
X-BUSINESS-IDstringRequired
X-USER-IDstringRequired
Path parameters
idstring · uuidRequired

A UUID string identifying this logged activity record.

Responses
chevron-right
200Success
application/json
idstring · uuidRequired
notesstringRequired
logged_atstring · date-timeRequired
completed_atstring · date-time · nullableRead-onlyRequired
scheduled_activity_idstring · uuid · nullableRead-onlyRequired
mentionsstring · uuid[]Read-onlyRequired
get
/api/activities/logged/{id}
200Success

View Logged Activity Details 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?