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": "fffc55a6-56c2-4523-a294-fc416a739dcc",
"jobs_id": "da35189c-2cd6-45c7-91d0-bd7dd606ade6",
"contact_id": "88f590f0-8869-42a7-b323-6405ab38b206",
"firstname": "sample string 4",
"lastname": "sample string 5",
"phone": "sample string 6",
"mobile": "sample string 7",
"email": "sample string 8",
"modified_dateutc": "2026-06-16T21:22:41.0543983+00:00"
}
application/xml, text/xml
Sample:
<job_contact xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <contact_id>88f590f0-8869-42a7-b323-6405ab38b206</contact_id> <email>sample string 8</email> <firstname>sample string 4</firstname> <id>fffc55a6-56c2-4523-a294-fc416a739dcc</id> <jobs_id>da35189c-2cd6-45c7-91d0-bd7dd606ade6</jobs_id> <lastname>sample string 5</lastname> <mobile>sample string 7</mobile> <modified_dateutc>2026-06-16T21:22:41.054Z</modified_dateutc> <phone>sample string 6</phone> </job_contact>