> ## Documentation Index
> Fetch the complete documentation index at: https://braintrust.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Assigned To column not available in Logs view

export const plans_0 = "Any"

export const deployments_0 = "Any"

export const data_plane_version_0 = undefined

export const use_case_0 = "Use case - Viewing reviewer assignments directly in the Logs table and including assignment data in exports"

<Note>
  **Applies to:**

  * Plan - {plans_0}
  * Deployment - {deployments_0}
  * {data_plane_version_0}
  * {use_case_0}
</Note>

## 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.
