Retrieves the job contact with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The job contact id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the job contact, or 404 Not Found if it doesn't exist.

job_contact
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
jobs_id

Foreign key of the job this contact is linked to.

globally unique identifier
contact_id

Foreign key of the linked contact.

globally unique identifier
firstname

First name of the contact (denormalized copy of the contact record).

string
lastname

Last name of the contact (denormalized copy of the contact record).

string
phone

Phone number of the contact (denormalized copy of the contact record).

string
mobile

Mobile phone number of the contact (denormalized copy of the contact record).

string
email

Email address of the contact (denormalized copy of the contact record).

string
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "c9846265-c67d-4b3f-938b-b481bf89e4ba",
  "jobs_id": "f874a440-9024-488f-a29c-384f08fab0b1",
  "contact_id": "a0e24618-aa67-484f-92c1-2f21b54ad03a",
  "firstname": "sample string 4",
  "lastname": "sample string 5",
  "phone": "sample string 6",
  "mobile": "sample string 7",
  "email": "sample string 8",
  "modified_dateutc": "2026-09-16T11:04:43.9015412+00:00"
}

application/xml, text/xml

Sample:
<job_contact xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <contact_id>a0e24618-aa67-484f-92c1-2f21b54ad03a</contact_id>
  <email>sample string 8</email>
  <firstname>sample string 4</firstname>
  <id>c9846265-c67d-4b3f-938b-b481bf89e4ba</id>
  <jobs_id>f874a440-9024-488f-a29c-384f08fab0b1</jobs_id>
  <lastname>sample string 5</lastname>
  <mobile>sample string 7</mobile>
  <modified_dateutc>2026-09-16T11:04:43.901Z</modified_dateutc>
  <phone>sample string 6</phone>
</job_contact>