Retrieves all company accounts, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of company accounts.
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 | |
| created_for_jobs_id |
Foreign key of the job (work order) this temp link was created for |
globally unique identifier | |
| root_project_id |
Root location of the job this temp link was created for, derived at read time (not stored) |
globally unique identifier | |
| 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": "5e6bde4d-3744-4a7f-bea7-6f3d139149ec",
"company_id": "3af2fbcc-74fc-43c1-aab7-fc3ec93a334d",
"user_id": "ea07296e-b03d-4111-bbee-1aee22938296",
"is_temp_link": true,
"created_for_jobs_id": "11e2c7fd-cf86-4559-9bba-6fae4d015c57",
"root_project_id": "e9dba63f-fce3-42ef-82b1-8851ee056596",
"sys_logical_delete": true,
"modified_dateutc": "2026-09-16T10:15:12.8861274+00:00"
}
application/xml, text/xml
Sample:
<company_account xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <company_id>3af2fbcc-74fc-43c1-aab7-fc3ec93a334d</company_id> <created_for_jobs_id>11e2c7fd-cf86-4559-9bba-6fae4d015c57</created_for_jobs_id> <id>5e6bde4d-3744-4a7f-bea7-6f3d139149ec</id> <is_temp_link>true</is_temp_link> <modified_dateutc>2026-09-16T10:15:12.886Z</modified_dateutc> <root_project_id>e9dba63f-fce3-42ef-82b1-8851ee056596</root_project_id> <sys_logical_delete>true</sys_logical_delete> <user_id>ea07296e-b03d-4111-bbee-1aee22938296</user_id> </company_account>