GET api/OwnerGLCodes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of OwnerGLCode
NameDescriptionTypeAdditional information
RecordId

integer

None.

OwnerId

integer

None.

UtilityId

integer

None.

GLCode

string

Max length: 50

GLDescription

string

Max length: 100

Response Formats

application/json, text/json

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

application/xml, text/xml

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