GET api/ARBatches/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

ARBatch
NameDescriptionTypeAdditional information
BatchId

integer

None.

LegacyBatchId

integer

None.

UtilityId

integer

None.

BatchDate

date

None.

BatchAmt

decimal number

None.

Posted

string

Max length: 1

BatchType

string

Max length: 50

BatchSource

string

Max length: 50

DateCreated

date

None.

DateUpdated

date

None.

CreatedBy

integer

None.

UpdatedBy

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "BatchId": 1,
  "LegacyBatchId": 2,
  "UtilityId": 3,
  "BatchDate": "2024-03-28T11:40:04.238051+00:00",
  "BatchAmt": 5.0,
  "Posted": "sample string 6",
  "BatchType": "sample string 7",
  "BatchSource": "sample string 8",
  "DateCreated": "2024-03-28T11:40:04.238051+00:00",
  "DateUpdated": "2024-03-28T11:40:04.238051+00:00",
  "CreatedBy": 11,
  "UpdatedBy": 12
}

application/xml, text/xml

Sample:
<ARBatch xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APL.Models">
  <BatchAmt>5</BatchAmt>
  <BatchDate>2024-03-28T11:40:04.238051+00:00</BatchDate>
  <BatchId>1</BatchId>
  <BatchSource>sample string 8</BatchSource>
  <BatchType>sample string 7</BatchType>
  <CreatedBy>11</CreatedBy>
  <DateCreated>2024-03-28T11:40:04.238051+00:00</DateCreated>
  <DateUpdated>2024-03-28T11:40:04.238051+00:00</DateUpdated>
  <LegacyBatchId>2</LegacyBatchId>
  <Posted>sample string 6</Posted>
  <UpdatedBy>12</UpdatedBy>
  <UtilityId>3</UtilityId>
</ARBatch>