Retrieves the company_account object with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

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
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": "145c4087-aaf6-4b70-9523-d33c4ff73feb",
  "company_id": "280e7519-dd03-4d59-84f2-f7dbb6a9bf80",
  "user_id": "77939242-81b2-49cd-b1d7-59c134831c1b",
  "is_temp_link": true,
  "sys_logical_delete": true,
  "modified_dateutc": "2026-03-07T13:18:16.9927653+00:00"
}

application/xml, text/xml

Sample:
<company_account xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <company_id>280e7519-dd03-4d59-84f2-f7dbb6a9bf80</company_id>
  <id>145c4087-aaf6-4b70-9523-d33c4ff73feb</id>
  <is_temp_link>true</is_temp_link>
  <modified_dateutc>2026-03-07T13:18:16.992Z</modified_dateutc>
  <sys_logical_delete>true</sys_logical_delete>
  <user_id>77939242-81b2-49cd-b1d7-59c134831c1b</user_id>
</company_account>