Retrieves all the company_account objects
Request Information
URI Parameters :
None.
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": "ec7e87aa-95fd-4ab2-a54b-e1602ca7c651",
"company_id": "a0282e19-bf81-472e-a8c4-6b4f43d82b4c",
"user_id": "e9946c77-b6f9-45d3-a348-51b5713faa7a",
"is_temp_link": true,
"sys_logical_delete": true,
"modified_dateutc": "2026-03-07T13:16:33.3089902+00:00"
}
application/xml, text/xml
Sample:
<company_account xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <company_id>a0282e19-bf81-472e-a8c4-6b4f43d82b4c</company_id> <id>ec7e87aa-95fd-4ab2-a54b-e1602ca7c651</id> <is_temp_link>true</is_temp_link> <modified_dateutc>2026-03-07T13:16:33.308Z</modified_dateutc> <sys_logical_delete>true</sys_logical_delete> <user_id>e9946c77-b6f9-45d3-a348-51b5713faa7a</user_id> </company_account>