GET api/Company/{index}/{rows}

Returns all the companies in Donor Strategy that is related to a Fellow or External Member in an active committee

Request Information

URI Parameters

NameDescriptionTypeAdditional information
index

string

None.

rows

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Company
NameDescriptionTypeAdditional information
Name

string

None.

TopLevelName

string

None.

Id

integer

None.

LastUpdatedTimestamp

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Name": "sample string 1",
    "TopLevelName": "sample string 2",
    "Id": 3,
    "LastUpdatedTimestamp": "2024-04-19T22:01:31.9594862+01:00"
  },
  {
    "Name": "sample string 1",
    "TopLevelName": "sample string 2",
    "Id": 3,
    "LastUpdatedTimestamp": "2024-04-19T22:01:31.9594862+01:00"
  }
]

text/xml

Sample:
<ArrayOfCompany xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataLayer2.Models.ViewModels">
  <Company>
    <Id xmlns="http://schemas.datacontract.org/2004/07/DataLayer2.Core">3</Id>
    <LastUpdatedTimestamp xmlns="http://schemas.datacontract.org/2004/07/DataLayer2.Core">2024-04-19T22:01:31.9594862+01:00</LastUpdatedTimestamp>
    <Name>sample string 1</Name>
    <TopLevelName>sample string 2</TopLevelName>
  </Company>
  <Company>
    <Id xmlns="http://schemas.datacontract.org/2004/07/DataLayer2.Core">3</Id>
    <LastUpdatedTimestamp xmlns="http://schemas.datacontract.org/2004/07/DataLayer2.Core">2024-04-19T22:01:31.9594862+01:00</LastUpdatedTimestamp>
    <Name>sample string 1</Name>
    <TopLevelName>sample string 2</TopLevelName>
  </Company>
</ArrayOfCompany>