Retrieves the company contact with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The company contact link id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the company contact, or 404 Not Found if it doesn't exist.
company_contact| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| company_id |
Company 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": "f7eee9b0-ab4a-4c57-8535-44c05ad306b1",
"company_id": "5007c5cc-89ce-4ad6-80a1-f14f52953b1a",
"contact_id": "e50189ef-00a5-4f99-9845-f1bfeaddcf86",
"modified_dateutc": "2026-09-16T09:25:11.9440541+00:00"
}
application/xml, text/xml
Sample:
<company_contact xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <company_id>5007c5cc-89ce-4ad6-80a1-f14f52953b1a</company_id> <contact_id>e50189ef-00a5-4f99-9845-f1bfeaddcf86</contact_id> <id>f7eee9b0-ab4a-4c57-8535-44c05ad306b1</id> <modified_dateutc>2026-09-16T09:25:11.944Z</modified_dateutc> </company_contact>