---
title: "View procedure"
method: GET
path: "/procedures/{id}"
tags: ["Procedures"]
---

# View procedure

`GET /procedures/{id}`

This endpoint returns a single procedure by its NexHealth id. Note: the list endpoint is not filtered by your token's location access, so ids returned by GET /procedures may return 404 here if the procedure belongs to a location your token cannot access or has no location assigned.

## Path parameters

- `id` integer, required

## Query parameters

- `subdomain` string, required

## Headers

- `Nex-Api-Version` string, required

## Response `200`

Successful

- APIV20240412EntitiesProcedureResponse — API_V20240412_Entities_Procedure_Response model
  - `code` boolean — Indicates the success or failure of the request
  - `description` string — Additional context on the request to help with debugging.
  - `error` string[] — Any errors that occur during the execution of the request.
  - `data` APIV20240412EntitiesProcedure
    - `id` integer — Procedure id
    - `location_id` integer, nullable — Location id
    - `patient_id` integer, nullable — Patient id
    - `provider_id` integer, nullable — Provider id
    - `appointment_id` integer, nullable — Appointment id. Null when the procedure is not attached to an appointment
    - `code` string, nullable — Procedure code
    - `name` string, nullable — Procedure name
    - `status` 'planned' | 'scheduled' | 'completed' | 'inactive' | 'referred', nullable — Procedure status
    - `updated_at` string, date-time — Procedure update date in UTC
    - `body_site` APIV2EntitiesProcedureBodySite
      - `tooth` string[] — Tooth identifier strings, typically tooth numbers
      - `surface` string — Tooth surface codes
    - `fee` APIV2EntitiesPrice
      - `amount` string — The currency value, in whole units (e.g. dollars)
      - `currency` string — The ISO currency code
    - `start_date` string, date, nullable — Start date for procedure
    - `end_date` string, date, nullable — End date for procedure
    - `treatment_plan_ids` integer[] — Treatment plan ids
  - `count` integer — Number of total objects, in case of collection.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `500` — Internal Server Error

---

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