GET api/VendorBillPassthroughs?BillId={BillId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
BillId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of VendorBillPassthrough
NameDescriptionTypeAdditional information
PassthroughId

integer

None.

BillId

integer

None.

GLCode

string

Max length: 50

AcctDesc

string

Max length: 255

ItemDesc

string

Max length: 255

ItemAmt

decimal number

None.

FlatRate

string

Max length: 1

UseSqft

string

Max length: 1

DateCreated

date

None.

DateUpdated

date

None.

CreatedBy

integer

None.

UpdatedBy

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "PassthroughId": 1,
    "BillId": 2,
    "GLCode": "sample string 3",
    "AcctDesc": "sample string 4",
    "ItemDesc": "sample string 5",
    "ItemAmt": 6.0,
    "FlatRate": "sample string 7",
    "UseSqft": "sample string 8",
    "DateCreated": "2024-03-28T23:30:34.0670983+00:00",
    "DateUpdated": "2024-03-28T23:30:34.0670983+00:00",
    "CreatedBy": 11,
    "UpdatedBy": 12
  },
  {
    "PassthroughId": 1,
    "BillId": 2,
    "GLCode": "sample string 3",
    "AcctDesc": "sample string 4",
    "ItemDesc": "sample string 5",
    "ItemAmt": 6.0,
    "FlatRate": "sample string 7",
    "UseSqft": "sample string 8",
    "DateCreated": "2024-03-28T23:30:34.0670983+00:00",
    "DateUpdated": "2024-03-28T23:30:34.0670983+00:00",
    "CreatedBy": 11,
    "UpdatedBy": 12
  }
]

application/xml, text/xml

Sample:
<ArrayOfVendorBillPassthrough xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APL.Models">
  <VendorBillPassthrough>
    <AcctDesc>sample string 4</AcctDesc>
    <BillId>2</BillId>
    <CreatedBy>11</CreatedBy>
    <DateCreated>2024-03-28T23:30:34.0670983+00:00</DateCreated>
    <DateUpdated>2024-03-28T23:30:34.0670983+00:00</DateUpdated>
    <FlatRate>sample string 7</FlatRate>
    <GLCode>sample string 3</GLCode>
    <ItemAmt>6</ItemAmt>
    <ItemDesc>sample string 5</ItemDesc>
    <PassthroughId>1</PassthroughId>
    <UpdatedBy>12</UpdatedBy>
    <UseSqft>sample string 8</UseSqft>
  </VendorBillPassthrough>
  <VendorBillPassthrough>
    <AcctDesc>sample string 4</AcctDesc>
    <BillId>2</BillId>
    <CreatedBy>11</CreatedBy>
    <DateCreated>2024-03-28T23:30:34.0670983+00:00</DateCreated>
    <DateUpdated>2024-03-28T23:30:34.0670983+00:00</DateUpdated>
    <FlatRate>sample string 7</FlatRate>
    <GLCode>sample string 3</GLCode>
    <ItemAmt>6</ItemAmt>
    <ItemDesc>sample string 5</ItemDesc>
    <PassthroughId>1</PassthroughId>
    <UpdatedBy>12</UpdatedBy>
    <UseSqft>sample string 8</UseSqft>
  </VendorBillPassthrough>
</ArrayOfVendorBillPassthrough>