Retrieves all job contacts, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of job contacts.
job_contact| Name | Description | Type | Additional 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 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": "0bf3f7d1-8147-481e-b88a-ad773e8fedb5",
"jobs_id": "d9b331a9-3a11-4251-bdd0-c85cc1126145",
"contact_id": "8df20621-9a0e-4cd9-b128-cfc69c789853",
"firstname": "sample string 4",
"lastname": "sample string 5",
"phone": "sample string 6",
"mobile": "sample string 7",
"email": "sample string 8",
"modified_dateutc": "2026-09-16T10:13:12.3791555+00:00"
}
application/xml, text/xml
Sample:
<job_contact xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <contact_id>8df20621-9a0e-4cd9-b128-cfc69c789853</contact_id> <email>sample string 8</email> <firstname>sample string 4</firstname> <id>0bf3f7d1-8147-481e-b88a-ad773e8fedb5</id> <jobs_id>d9b331a9-3a11-4251-bdd0-c85cc1126145</jobs_id> <lastname>sample string 5</lastname> <mobile>sample string 7</mobile> <modified_dateutc>2026-09-16T10:13:12.379Z</modified_dateutc> <phone>sample string 6</phone> </job_contact>