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": "5d4c36ad-c3c2-477e-9649-a7b7888300ed",
  "project_id": "14743494-e3ac-4434-a2d0-e6bbca22fe8f",
  "contact_id": "5cb3499c-a49d-4046-9781-3a8495851617",
  "modified_dateutc": "2026-01-12T00:24:52.4780129+00:00"
}

application/xml, text/xml

Sample:
<project_contact xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <contact_id>5cb3499c-a49d-4046-9781-3a8495851617</contact_id>
  <id>5d4c36ad-c3c2-477e-9649-a7b7888300ed</id>
  <modified_dateutc>2026-01-12T00:24:52.478Z</modified_dateutc>
  <project_id>14743494-e3ac-4434-a2d0-e6bbca22fe8f</project_id>
</project_contact>