Retrieves all project contacts, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of project contacts.
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": "d7b0ffdf-3b7b-4575-baea-d312821261d6",
"project_id": "b5132008-1cfb-4f41-8067-da4f8a3d59c9",
"contact_id": "c10cf3a0-2f9a-4545-a0f7-89f36d209a62",
"modified_dateutc": "2026-09-16T10:12:16.1291538+00:00"
}
application/xml, text/xml
Sample:
<project_contact xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <contact_id>c10cf3a0-2f9a-4545-a0f7-89f36d209a62</contact_id> <id>d7b0ffdf-3b7b-4575-baea-d312821261d6</id> <modified_dateutc>2026-09-16T10:12:16.129Z</modified_dateutc> <project_id>b5132008-1cfb-4f41-8067-da4f8a3d59c9</project_id> </project_contact>