Retrieves the company account with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The company account id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the company account, or 404 Not Found if it doesn't exist.

company_account
NameDescriptionTypeAdditional 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": "e9f99209-d048-45d5-935d-e5c2ec09aa9b",
  "company_id": "72e7abb5-6bc9-4502-98ec-2d74333bc511",
  "user_id": "34dabb9c-7ae2-4075-937c-a157e05412c7",
  "is_temp_link": true,
  "created_for_jobs_id": "4868b4cd-e41a-4acf-a682-615f09f25fd5",
  "root_project_id": "556819e4-eea9-45e0-a341-e1d9361cfcbd",
  "sys_logical_delete": true,
  "modified_dateutc": "2026-09-16T09:24:55.6698432+00:00"
}

application/xml, text/xml

Sample:
<company_account xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <company_id>72e7abb5-6bc9-4502-98ec-2d74333bc511</company_id>
  <created_for_jobs_id>4868b4cd-e41a-4acf-a682-615f09f25fd5</created_for_jobs_id>
  <id>e9f99209-d048-45d5-935d-e5c2ec09aa9b</id>
  <is_temp_link>true</is_temp_link>
  <modified_dateutc>2026-09-16T09:24:55.669Z</modified_dateutc>
  <root_project_id>556819e4-eea9-45e0-a341-e1d9361cfcbd</root_project_id>
  <sys_logical_delete>true</sys_logical_delete>
  <user_id>34dabb9c-7ae2-4075-937c-a157e05412c7</user_id>
</company_account>