---
title: "Get a specific work order"
method: GET
path: "/api/work-orders/{workOrderId}"
tags: ["Work Order"]
---

# Get a specific work order

`GET /api/work-orders/{workOrderId}`

## Path parameters

- `workOrderId` string, required

## Response `200`

The work order for the given id

- WorkOrderDto — Represents a work order
  - `id` string, required — Unique Id associated to this entity
  - `number` integer, required — Job number
  - `name` string, required — Job name, defaults to number unless otherwise specified.
  - `createdUtc` string, date-time — The date the job was created
  - `completedOnUtc` string, date-time, nullable — The job completion datetime.
  - `cancelledOnUtc` string, date-time, nullable — The job cancelled datetime.
  - `scheduledStartUtc` string, date-time, nullable — The current scheduled start time.
  - `scheduledEndUtc` string, date-time, nullable — The current scheduled end time.
  - `status` 'needsReview' | 'approved' | 'scheduled' | 'inProgress' | 'complete' | 'cancelled', required — Work order status
  - `priority` 'low' | 'moderate' | 'high' — Job priority

## Other responses

- `404` — Work order did not exist

---

[API](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi.md) · [All operations](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fulcrumpro/fulcrum-publicapi/versions/1b5649cff14a/schema)
