GET api/Positions

Fetch a list of all positions

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ListResultOfNamedCompanyObject
NameDescriptionTypeAdditional information
TotalCount

integer

None.

Items

Collection of NamedCompanyObject

None.

Response Formats

application/json, text/json

Sample:
{
  "TotalCount": 1,
  "Items": [
    {
      "CompanyId": 1,
      "Name": "sample string 2",
      "LastModified": "2025-12-08T08:47:35.9167434+00:00",
      "Created": "2025-12-08T08:47:35.9167434+00:00",
      "Id": 5
    },
    {
      "CompanyId": 1,
      "Name": "sample string 2",
      "LastModified": "2025-12-08T08:47:35.9167434+00:00",
      "Created": "2025-12-08T08:47:35.9167434+00:00",
      "Id": 5
    }
  ]
}

application/xml, text/xml

Sample:
<ListResultOfNamedCompanyObjectHWVxl9UY xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ControlKeeper.ApiModel">
  <Items>
    <NamedCompanyObject>
      <Id>5</Id>
      <Created>2025-12-08T08:47:35.9167434+00:00</Created>
      <LastModified>2025-12-08T08:47:35.9167434+00:00</LastModified>
      <Name>sample string 2</Name>
      <CompanyId>1</CompanyId>
    </NamedCompanyObject>
    <NamedCompanyObject>
      <Id>5</Id>
      <Created>2025-12-08T08:47:35.9167434+00:00</Created>
      <LastModified>2025-12-08T08:47:35.9167434+00:00</LastModified>
      <Name>sample string 2</Name>
      <CompanyId>1</CompanyId>
    </NamedCompanyObject>
  </Items>
  <TotalCount>1</TotalCount>
</ListResultOfNamedCompanyObjectHWVxl9UY>