GET v1/raidinfos

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

RaidInfosResource
NameDescriptionTypeAdditional information
RaidInfos

Collection of RaidInfoDto

None.

Response Formats

application/json, text/json

Sample:
{
  "raidInfos": [
    {
      "id": 1,
      "name": "sample string 2",
      "server": 1,
      "type": 1,
      "status": 1,
      "lastModified": "2025-05-23T17:16:57.2322989-04:00"
    },
    {
      "id": 1,
      "name": "sample string 2",
      "server": 1,
      "type": 1,
      "status": 1,
      "lastModified": "2025-05-23T17:16:57.2322989-04:00"
    }
  ]
}

application/xml, text/xml

Sample:
<Resources xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CablecastAPI.DTOs">
  <RaidInfos>
    <RaidInfo>
      <Id>1</Id>
      <LastModified>2025-05-23T17:16:57.2322989-04:00</LastModified>
      <Name>sample string 2</Name>
      <Server>1</Server>
      <Status>1</Status>
      <Type>1</Type>
    </RaidInfo>
    <RaidInfo>
      <Id>1</Id>
      <LastModified>2025-05-23T17:16:57.2322989-04:00</LastModified>
      <Name>sample string 2</Name>
      <Server>1</Server>
      <Status>1</Status>
      <Type>1</Type>
    </RaidInfo>
  </RaidInfos>
</Resources>