---
title: "Get assistant action by id"
method: GET
path: "/assistantActions/{assistantActionId}"
tags: ["assistantActions"]
---

# Get assistant action by id

`GET /assistantActions/{assistantActionId}`

## Path parameters

- `assistantActionId` string, required

## Response `200`

AssistantAction

- AssistantActionResponse — An AssistantAction is an audit-log record of a single tool or function call made by the Navigator AI assistant during a conversation, such as listing appointments, canceling an appointment, or confirming an appointment. It captures the function name, the parameters passed in, the raw response, and whether the call succeeded, failed, or is still pending, and is linked to the parent AssistantInstance conversation it occurred during.
  - `_id` string — Luma's internal ID of an object.
  - `user` string — The ID of the root account user.
  - `deleted` 0 | 1 — Flag for logical deletion where 1 means deleted.
  - `createdBy` string — The ID of the user who created this object.
  - `updatedBy` string — The ID of the user who updated this object.
  - `createdAt` string, date-time — The date/time when this object was created.
  - `updatedAt` string, date-time — The date/time when this object was updated.
  - `description` string — Free-form description of the action taken.
  - `status` 'success' | 'failure' | 'pending' — Outcome of the underlying API call this action made.
  - `functionName` string — Name of the tool/function called, for example `cancelAppointment` or `listAvailabilities`.
  - `parameters` unknown
  - `response` unknown
  - `assistantInstance` string — ID of the AssistantInstance (conversation) this action was taken during.

## Other responses

- `401` — Not authenticated
- `403` — Access token does not have the required scope

---

[API](https://skmtc.net/lumahealth/apis/rest-service.md) · [All operations](https://skmtc.net/lumahealth/apis/rest-service/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/lumahealth/rest-service/revisions/d3c75c2a2f1d/schema)
