GET api/OwnerGLCodes/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

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"
}

application/xml, text/xml

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