PUT api/TransactionBilling/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
BindBillingWizardViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| CustomerId | integer |
Required |
|
| ChargeTypeId | integer |
Required |
|
| CalclatorId | integer |
Required |
|
| LabelId | integer |
None. |
|
| Label | string |
None. |
|
| UnitId | integer |
None. |
|
| Unit | string |
None. |
|
| IsManual | boolean |
None. |
|
| Rate | decimal number |
Required |
|
| Notes | string |
None. |
|
| ItemId | string |
None. |
|
| Description | string |
None. |
|
| ArAcct | string |
None. |
|
| GlAcctNumber | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"CustomerId": 2,
"ChargeTypeId": 3,
"CalclatorId": 4,
"LabelId": 5,
"Label": "sample string 6",
"UnitId": 7,
"Unit": "sample string 8",
"IsManual": true,
"Rate": 10.0,
"Notes": "sample string 11",
"ItemId": "sample string 12",
"Description": "sample string 13",
"ArAcct": "sample string 14",
"GlAcctNumber": "sample string 15"
}
application/xml, text/xml
Sample:
<BindBillingWizardViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eMpowerCore.ViewModels.Customers.BillingWizard"> <ArAcct>sample string 14</ArAcct> <CalclatorId>4</CalclatorId> <ChargeTypeId>3</ChargeTypeId> <CustomerId>2</CustomerId> <Description>sample string 13</Description> <GlAcctNumber>sample string 15</GlAcctNumber> <Id>1</Id> <IsManual>true</IsManual> <ItemId>sample string 12</ItemId> <Label>sample string 6</Label> <LabelId>5</LabelId> <Notes>sample string 11</Notes> <Rate>10</Rate> <Unit>sample string 8</Unit> <UnitId>7</UnitId> </BindBillingWizardViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.