Creates or updates a project contact.
Request Information
URI Parameters :
None.
Body Parameters :
project_contact| Name | Description | Type | Additional 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 |
Request Formats :
application/json, text/json
Sample:
{
"id": "10cc9c2a-4583-42ad-868b-806d741f7f68",
"project_id": "62d739b9-a301-4393-8103-4790615ccce4",
"contact_id": "1f7d8f4b-4cee-47fb-bcf7-4404d3ad9612",
"modified_dateutc": "2026-09-16T08:34:43.2375132+00:00"
}
application/xml, text/xml
Sample:
<project_contact xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <contact_id>1f7d8f4b-4cee-47fb-bcf7-4404d3ad9612</contact_id> <id>10cc9c2a-4583-42ad-868b-806d741f7f68</id> <modified_dateutc>2026-09-16T08:34:43.237Z</modified_dateutc> <project_id>62d739b9-a301-4393-8103-4790615ccce4</project_id> </project_contact>
Response Information
Resource Description :
IHttpActionResult containing the saved project contact.
project_contact| Name | Description | Type | Additional 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": "e74f03cf-eb50-4224-97c1-49c4bd4d9dbc",
"project_id": "8d64dc77-344b-4a6c-8daf-a936ccf45528",
"contact_id": "c8ffaf53-f309-4b2b-a97b-3d22f15ed5a6",
"modified_dateutc": "2026-09-16T08:34:43.2556951+00:00"
}
application/xml, text/xml
Sample:
<project_contact xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <contact_id>c8ffaf53-f309-4b2b-a97b-3d22f15ed5a6</contact_id> <id>e74f03cf-eb50-4224-97c1-49c4bd4d9dbc</id> <modified_dateutc>2026-09-16T08:34:43.255Z</modified_dateutc> <project_id>8d64dc77-344b-4a6c-8daf-a936ccf45528</project_id> </project_contact>