Retrieves the project contact with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

project_contact
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
project_id

Project Id

globally unique identifier
contact_id

Contact Id

globally unique identifier
modified_dateutc

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

date

Response Formats

application/json, text/json

Sample:
{
  "id": "8648441a-409a-4955-87b9-c1ad2a050678",
  "project_id": "ea6aef64-35b2-4f81-b333-8f817a1192ed",
  "contact_id": "30e8a460-c2a6-4077-84e7-5b637ddec6cb",
  "modified_dateutc": "2026-03-07T14:52:29.9194747+00:00"
}

application/xml, text/xml

Sample:
<project_contact xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <contact_id>30e8a460-c2a6-4077-84e7-5b637ddec6cb</contact_id>
  <id>8648441a-409a-4955-87b9-c1ad2a050678</id>
  <modified_dateutc>2026-03-07T14:52:29.919Z</modified_dateutc>
  <project_id>ea6aef64-35b2-4f81-b333-8f817a1192ed</project_id>
</project_contact>