GET api/Band

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Band
NameDescriptionTypeAdditional information
BandId

integer

None.

BandName

string

None.

BandType

integer

None.

CreatedDate

date

Data type: DateTime

CreatedBy

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "BandId": 1,
    "BandName": "sample string 2",
    "BandType": 3,
    "CreatedDate": "2025-12-08T01:21:37.7519645+05:30",
    "CreatedBy": "sample string 5"
  },
  {
    "BandId": 1,
    "BandName": "sample string 2",
    "BandType": 3,
    "CreatedDate": "2025-12-08T01:21:37.7519645+05:30",
    "CreatedBy": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfBand xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Morph.Domain.Entities">
  <Band>
    <CreatedBy>sample string 5</CreatedBy>
    <CreatedDate>2025-12-08T01:21:37.7519645+05:30</CreatedDate>
    <BandId>1</BandId>
    <BandName>sample string 2</BandName>
    <BandType>3</BandType>
  </Band>
  <Band>
    <CreatedBy>sample string 5</CreatedBy>
    <CreatedDate>2025-12-08T01:21:37.7519645+05:30</CreatedDate>
    <BandId>1</BandId>
    <BandName>sample string 2</BandName>
    <BandType>3</BandType>
  </Band>
</ArrayOfBand>