Retrieves the project contact with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The project contact id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the project contact, or 404 Not Found if it doesn't exist.

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": "b45cca2c-ed7b-4ed0-9c30-0b445cdf556a",
  "project_id": "c8896e45-09ec-4435-9a98-ab05094a39ed",
  "contact_id": "59820bec-c647-4ba6-9ec5-ec00f5c9555b",
  "modified_dateutc": "2026-09-16T10:14:52.0617432+00:00"
}

application/xml, text/xml

Sample:
<project_contact xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <contact_id>59820bec-c647-4ba6-9ec5-ec00f5c9555b</contact_id>
  <id>b45cca2c-ed7b-4ed0-9c30-0b445cdf556a</id>
  <modified_dateutc>2026-09-16T10:14:52.061Z</modified_dateutc>
  <project_id>c8896e45-09ec-4435-9a98-ab05094a39ed</project_id>
</project_contact>