---
title: "Update a Job Contact"
method: POST
path: "/jobcontact/{uuid}.json"
tags: ["Job Contacts"]
---

# Update a Job Contact

`POST /jobcontact/{uuid}.json`

#### OAuth Scope
This endpoint requires the following OAuth scope **manage_job_contacts**.

## Path parameters

- `uuid` string, uuid, required

## Request body

- JobContactCreate
  - `job_uuid` string, uuid — UUID of the job this contact is associated with. Each job contact must be linked to a valid job in the system. This field cannot be changed once set.
  - `first` string — First name of the job contact. This information is synced with the job's contact information fields depending on the contact type.
  - `last` string — Last name of the job contact. This information is synced with the job's contact information fields depending on the contact type.
  - `phone` string — Landline or office phone number of the job contact. Format is flexible but should represent a valid phone number. This field syncs with the job's phone_1 field for job contacts or phone_2 field for billing contacts.
  - `mobile` string — Mobile phone number of the job contact. Format is flexible but should represent a valid mobile number. This field syncs with the job's mobile field for job contacts or billing_mobile field for billing contacts.
  - `email` string, email — Email address of the job contact. Should be a valid email format. Used for sending job-related communications. This field syncs with the job's email field for job contacts or billing_email field for billing contacts.
  - `type` string — Type of contact relationship to the job. Valid values are: 'JOB' (or 'Job Contact'), 'BILLING' (or 'Billing Contact'), or 'Property Manager'. Controls which job fields are updated when this contact record changes.
  - `is_primary_contact` unknown
  - `uuid` string, uuid — Unique identifier for this record

## Response `200`

Success - The record was updated successfully

- Result
  - `errorCode` number
  - `message` string

## Other responses

- `400` — Bad Request - The request is malformed or contains invalid parameters
- `401` — Unauthorized - Authentication credentials are missing or invalid
- `403` — Forbidden - You don't have permission to update this resource
- `404` — Not Found - The record to update does not exist or has been deleted
- `429` — Too Many Requests - You have exceeded the rate limit
- `500` — Internal Server Error - An unexpected error occurred on the server

---

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