GET request/bands/gas

Provides Gas Bands for logged in Product

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Band
NameDescriptionTypeAdditional information
BandDescription

string

None.

BandId

integer

None.

BandRange

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "bandId": 1,
    "bandDescription": "sample string 2",
    "bandRange": "sample string 3"
  },
  {
    "bandId": 1,
    "bandDescription": "sample string 2",
    "bandRange": "sample string 3"
  }
]

text/html

Sample:
[{"bandId":1,"bandDescription":"sample string 2","bandRange":"sample string 3"},{"bandId":1,"bandDescription":"sample string 2","bandRange":"sample string 3"}]

application/xml, text/xml

Sample:
<ArrayOfBand xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CCSCommercialAPI.Models.Default">
  <Band>
    <BandDescription>sample string 2</BandDescription>
    <BandId>1</BandId>
    <BandRange>sample string 3</BandRange>
  </Band>
  <Band>
    <BandDescription>sample string 2</BandDescription>
    <BandId>1</BandId>
    <BandRange>sample string 3</BandRange>
  </Band>
</ArrayOfBand>