GET request/retention/account/{accountNumber}

Get the specific account number results

Request Information

URI Parameters

NameDescriptionTypeAdditional information
accountNumber

string

Required

Body Parameters

None.

Response Information

Resource Description

WhiteListAccountInfo
NameDescriptionTypeAdditional information
CustomerId

integer

None.

ElectricityMeterId

integer

None.

GasMeterId

integer

None.

MeterType

string

None.

SiteId

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "customerId": 1,
  "siteId": 2,
  "electricityMeterId": 3,
  "gasMeterId": 4,
  "meterType": "sample string 5"
}

text/html

Sample:
{"customerId":1,"siteId":2,"electricityMeterId":3,"gasMeterId":4,"meterType":"sample string 5"}

application/xml, text/xml

Sample:
<WhiteListAccountInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyUtilityGeniusForBusiness.Api.Models.Retention">
  <CustomerId>1</CustomerId>
  <ElectricityMeterId>3</ElectricityMeterId>
  <GasMeterId>4</GasMeterId>
  <MeterType>sample string 5</MeterType>
  <SiteId>2</SiteId>
</WhiteListAccountInfo>