GET api/GLAccounts/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

GLAccount
NameDescriptionTypeAdditional information
GLAccountId

integer

None.

UtilityId

integer

None.

GLCode

string

Max length: 50

AcctDesc

string

Max length: 255

AcctType

string

Max length: 50

PaymentOrder

integer

None.

PaymentOrderRUBS

integer

None.

PmtOverflow

string

Max length: 1

BillDescription

string

Max length: 255

DateCreated

date

None.

DateUpdated

date

None.

CreatedBy

integer

None.

UpdatedBy

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "GLAccountId": 1,
  "UtilityId": 2,
  "GLCode": "sample string 3",
  "AcctDesc": "sample string 4",
  "AcctType": "sample string 5",
  "PaymentOrder": 6,
  "PaymentOrderRUBS": 7,
  "PmtOverflow": "sample string 8",
  "BillDescription": "sample string 9",
  "DateCreated": "2024-04-02T15:00:12.7800605+00:00",
  "DateUpdated": "2024-04-02T15:00:12.7800605+00:00",
  "CreatedBy": 12,
  "UpdatedBy": 13
}

application/xml, text/xml

Sample:
<GLAccount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APL.Models">
  <AcctDesc>sample string 4</AcctDesc>
  <AcctType>sample string 5</AcctType>
  <BillDescription>sample string 9</BillDescription>
  <CreatedBy>12</CreatedBy>
  <DateCreated>2024-04-02T15:00:12.7800605+00:00</DateCreated>
  <DateUpdated>2024-04-02T15:00:12.7800605+00:00</DateUpdated>
  <GLAccountId>1</GLAccountId>
  <GLCode>sample string 3</GLCode>
  <PaymentOrder>6</PaymentOrder>
  <PaymentOrderRUBS>7</PaymentOrderRUBS>
  <PmtOverflow>sample string 8</PmtOverflow>
  <UpdatedBy>13</UpdatedBy>
  <UtilityId>2</UtilityId>
</GLAccount>