GET api/Companies/{id}

Fetch a specific company

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

NamedObject
NameDescriptionTypeAdditional information
Name

string

None.

LastModified

date

None.

Created

date

None.

Id

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Name": "sample string 1",
  "LastModified": "2025-12-08T14:22:04.0955585+00:00",
  "Created": "2025-12-08T14:22:04.0955585+00:00",
  "Id": 4
}

application/xml, text/xml

Sample:
<NamedObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ControlKeeper.ApiModel">
  <Id>4</Id>
  <Created>2025-12-08T14:22:04.0955585+00:00</Created>
  <LastModified>2025-12-08T14:22:04.0955585+00:00</LastModified>
  <Name>sample string 1</Name>
</NamedObject>