Retrieves the job_contact with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
job_contact| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier | ||
| jobs_id | globally unique identifier | ||
| contact_id | globally unique identifier | ||
| firstname | string | ||
| lastname | string | ||
| phone | string | ||
| mobile | string | ||
| string | |||
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "938d5708-0ea3-48b3-a156-60c7422f7b65",
"jobs_id": "b56b1f0c-76d9-43ab-8121-168bd8773253",
"contact_id": "3a6b2d1d-b620-42f7-9b5b-1a5249f1516e",
"firstname": "sample string 4",
"lastname": "sample string 5",
"phone": "sample string 6",
"mobile": "sample string 7",
"email": "sample string 8",
"modified_dateutc": "2026-03-07T14:53:45.1641748+00:00"
}
application/xml, text/xml
Sample:
<job_contact xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <contact_id>3a6b2d1d-b620-42f7-9b5b-1a5249f1516e</contact_id> <email>sample string 8</email> <firstname>sample string 4</firstname> <id>938d5708-0ea3-48b3-a156-60c7422f7b65</id> <jobs_id>b56b1f0c-76d9-43ab-8121-168bd8773253</jobs_id> <lastname>sample string 5</lastname> <mobile>sample string 7</mobile> <modified_dateutc>2026-03-07T14:53:45.164Z</modified_dateutc> <phone>sample string 6</phone> </job_contact>