GET api/Band/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

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:25.9238426+05:30",
  "CreatedBy": "sample string 5"
}

application/xml, text/xml

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