---
title: "Get Job by ID"
method: GET
path: "/jobs/{jobId}"
tags: ["jobs"]
---

# Get Job by ID

`GET /jobs/{jobId}`

Use this endpoint to get details for a specific job. Unassigned leads or jobs will not be returned. **Supported includes:** `contact`, `initialAppointment`.

## Path parameters

- `jobId` string, uuid, required

## Query parameters

- `includes` string

## Response `200`

OK

- Job
  - `id` string, uuid — The job's unique ID.
  - `_link` string — The URI of this Job.
  - `contacts` JobContact[] — The contact's default properties can be included with optional include parameter.
    - `id` string, uuid
    - `_link` string, uri
    - `contact` Contact
      - `id` string, uuid
      - `_link` string, uri
      - `companyName` string — The company name of given contact.
      - `crossReference` string — The cross reference of given contact.
      - `firstName` string — The first name of given contact.
      - `lastName` string — The last name of given contact.
      - `salutation` string — The salutation of given contact.
    - `isPrimary` boolean — Indicates if the contact is the primary contact related to a given Lead/Job.
  - `locationAddress` Address
    - `city` string — Municipality name for the physical address
    - `country` Country
      - `id` integer — The id for the Country.
      - `_link` string — The URI of the Country.
      - `abbreviation` string — The 2 character abbreviation for the Country.
    - `state` State
      - `id` number — The id for the state.
      - `_link` string, uri — The URI of the State.
      - `abbreviation` string — The 2 character abbreviation for the State.
    - `street1` string — Primary street address line
    - `street2` string — Secondary street address line
    - `zipCode` string — Postal code for the address
  - `geoLocation` GeoLocation
    - `latitude` number — latitude component of the map location
    - `longitude` number — longitude component of the map location
  - `tradeTypes` TradeType[] — The list of trades assigned
    - `id` string, uuid — Unique identifier that represents the trade type
    - `name` string — Name of the specified trade type
  - `jobCategory` JobCategory
    - `id` integer
    - `name` string
  - `workType` WorkType
    - `id` integer
    - `name` string
    - `systemDefault` boolean
  - `leadSource` LeadSource
    - `id` string, uuid
    - `_link` string, uri — The unique URI of the lead source.
    - `name` string
  - `initialAppointment` InitialAppointmentLink
    - `_link` string — The unique URI of the Initial Apppointment for the specified Job.
  - `leadDeadReason` string — The reason why the lead was marked as dead.
  - `milestoneDate` string, date-time — The date/time when the job entered its current milestone.
  - `createdDate` string, date-time — The date/time when this job was created.
  - `modifiedDate` string, date-time — The date/time when this job was last modified (touched).
  - `currentMilestone` 'Lead' | 'Prospect' | 'Approved' | 'Completed' | 'Invoiced' | 'Closed' | 'Cancelled' — This job's current milestone. This field is Read Only.
  - `jobNumber` string — The alphanumeric identifier for the job, as definied by the company settings.
  - `jobName` string — The full name for this job.
  - `priority` 'Normal' | 'High' | 'Urgent' — The job assigned priority

## Other responses

- `404` — The job specified by jobId was not found.

---

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