POST api/OPBilling/UpdateOPBillingCashRequestID?BillID={BillID}&CashRequestID={CashRequestID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
BillID

integer

Required

CashRequestID

integer

Required

Body Parameters

Consumer
NameDescriptionTypeAdditional information
ConsumerId

integer

None.

ConsumerName

string

None.

Location

string

None.

DateTime

date

None.

IsopBilling

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "ConsumerId": 1,
  "ConsumerName": "sample string 2",
  "Location": "sample string 3",
  "DateTime": "2025-12-17T15:38:59.989513+05:30",
  "IsopBilling": true
}

text/html

Sample:
{"ConsumerId":1,"ConsumerName":"sample string 2","Location":"sample string 3","DateTime":"2025-12-17T15:38:59.989513+05:30","IsopBilling":true}

application/xml, text/xml

Sample:
<Consumer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tm.WebAPI.Models.OpBilling">
  <ConsumerId>1</ConsumerId>
  <ConsumerName>sample string 2</ConsumerName>
  <DateTime>2025-12-17T15:38:59.989513+05:30</DateTime>
  <IsopBilling>true</IsopBilling>
  <Location>sample string 3</Location>
</Consumer>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json, text/html

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>