POST api/Bill/Update

Request Information

URI Parameters

None.

Body Parameters

BillAPI
NameDescriptionTypeAdditional information
BillId

integer

None.

GroupId

integer

None.

YearMonth

integer

None.

AdjustAmount

integer

None.

AdjustReason

string

None.

BillStatusId

integer

None.

BillStatusValue

string

None.

ExcludeTaxAmount

decimal number

None.

TaxAmount

decimal number

None.

IncludeTaxAmount

decimal number

None.

MemberShipFee

integer

None.

MemberShipRate

decimal number

None.

BillAmount

integer

None.

BuilderId

integer

None.

CreatedDate

date

None.

ModifiedDate

date

None.

CreatedById

integer

None.

ModifiedById

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "BillId": 1,
  "GroupId": 1,
  "YearMonth": 1,
  "AdjustAmount": 1,
  "AdjustReason": "sample string 2",
  "BillStatusId": 1,
  "BillStatusValue": "sample string 3",
  "ExcludeTaxAmount": 4.0,
  "TaxAmount": 5.0,
  "IncludeTaxAmount": 6.0,
  "MemberShipFee": 7,
  "MemberShipRate": 8.0,
  "BillAmount": 9,
  "BuilderId": 1,
  "CreatedDate": "2025-12-10T05:48:04.2027515+00:00",
  "ModifiedDate": "2025-12-10T05:48:04.2027515+00:00",
  "CreatedById": 12,
  "ModifiedById": 13
}

application/xml, text/xml

Sample:
<BillAPI xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Uchinet.General.API.Data">
  <BuilderId>1</BuilderId>
  <CreatedById>12</CreatedById>
  <CreatedDate>2025-12-10T05:48:04.2027515+00:00</CreatedDate>
  <ModifiedById>13</ModifiedById>
  <ModifiedDate>2025-12-10T05:48:04.2027515+00:00</ModifiedDate>
  <AdjustAmount>1</AdjustAmount>
  <AdjustReason>sample string 2</AdjustReason>
  <BillAmount>9</BillAmount>
  <BillId>1</BillId>
  <BillStatusId>1</BillStatusId>
  <BillStatusValue>sample string 3</BillStatusValue>
  <ExcludeTaxAmount>4</ExcludeTaxAmount>
  <GroupId>1</GroupId>
  <IncludeTaxAmount>6</IncludeTaxAmount>
  <MemberShipFee>7</MemberShipFee>
  <MemberShipRate>8</MemberShipRate>
  <TaxAmount>5</TaxAmount>
  <YearMonth>1</YearMonth>
</BillAPI>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.