Retrieves the company_account object with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
company_account| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| company_id |
Company Id |
globally unique identifier | |
| user_id |
User Id |
globally unique identifier | |
| is_temp_link |
Check temp link |
boolean | |
| sys_logical_delete |
Check delete |
boolean | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "86fe24c8-9304-472a-ad10-32f5351b40cd",
"company_id": "fa71301c-53c3-40c2-9d09-7b01a632897b",
"user_id": "ca091555-49db-4ad8-bf17-40517584a859",
"is_temp_link": true,
"sys_logical_delete": true,
"modified_dateutc": "2026-01-12T00:19:57.4590503+00:00"
}
application/xml, text/xml
Sample:
<company_account xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <company_id>fa71301c-53c3-40c2-9d09-7b01a632897b</company_id> <id>86fe24c8-9304-472a-ad10-32f5351b40cd</id> <is_temp_link>true</is_temp_link> <modified_dateutc>2026-01-12T00:19:57.459Z</modified_dateutc> <sys_logical_delete>true</sys_logical_delete> <user_id>ca091555-49db-4ad8-bf17-40517584a859</user_id> </company_account>