GET api/PropertyGLCodes?PropertyId={PropertyId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
PropertyId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of PropertyGLCode
NameDescriptionTypeAdditional information
RecordId

integer

None.

PropertyId

integer

None.

UtilityId

integer

None.

GLCode

string

Max length: 50

GLDescription

string

Max length: 100

Response Formats

application/json, text/json

Sample:
[
  {
    "RecordId": 1,
    "PropertyId": 2,
    "UtilityId": 3,
    "GLCode": "sample string 4",
    "GLDescription": "sample string 5"
  },
  {
    "RecordId": 1,
    "PropertyId": 2,
    "UtilityId": 3,
    "GLCode": "sample string 4",
    "GLDescription": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfPropertyGLCode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APL.Models">
  <PropertyGLCode>
    <GLCode>sample string 4</GLCode>
    <GLDescription>sample string 5</GLDescription>
    <PropertyId>2</PropertyId>
    <RecordId>1</RecordId>
    <UtilityId>3</UtilityId>
  </PropertyGLCode>
  <PropertyGLCode>
    <GLCode>sample string 4</GLCode>
    <GLDescription>sample string 5</GLDescription>
    <PropertyId>2</PropertyId>
    <RecordId>1</RecordId>
    <UtilityId>3</UtilityId>
  </PropertyGLCode>
</ArrayOfPropertyGLCode>