Skip to main content
Applies to:
  • Plan -
  • Deployment -

Summary

Issue: The Assigned To column visible on the Reviews page is not natively available in the Logs view or as a built-in column option. Cause: The assignment column has not yet been enabled for the logs page. Resolution: Use a custom column with the metadata."~__bt_assignments"[0] expression as a workaround until native support is added.

Resolution steps

To surface assignment data in Logs view

Step 1: Add a custom column

In Logs, open Display+ Add custom column and enter the following expression:
metadata."~__bt_assignments"[0]
This returns the user ID of the first assigned reviewer. Keep in mind that the column displays a user ID, not a name at this point.

Step 2: If you need to map user IDs to names

To resolve user IDs to names or emails, call the List Users API endpoint:
GET /v1/user
Use the returned id, name, and email fields to map IDs from the export.

Notes

  • ~__bt_assignments holds an array of reviewer user IDs. If a log has not been assigned, the array is empty.
  • The custom column workaround only reflects the first assigned user ([0]). Logs assigned to multiple reviewers require additional expressions to surface all assignees.
  • The Reviews page displays assignment data natively and is unaffected by this limitation.