POST api/TransloadBilling
Request Information
URI Parameters
None.
Body Parameters
BindTransloadBillingViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | integer |
Required |
|
| Rate | decimal number |
Required |
|
| Name | string |
Required |
|
| Code | string |
Required |
|
| Description | string |
None. |
|
| BillingType | integer |
Required |
|
| DateStart | date |
None. |
|
| DateEnd | date |
None. |
|
| IsQuickAdd | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerId": 1,
"Rate": 2.0,
"Name": "sample string 3",
"Code": "sample string 4",
"Description": "sample string 5",
"BillingType": 6,
"DateStart": "2025-12-05T20:28:28.3539818-08:00",
"DateEnd": "2025-12-05T20:28:28.3539818-08:00",
"IsQuickAdd": true
}
application/xml, text/xml
Sample:
<BindTransloadBillingViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eMpowerCore.ViewModels.Customers.BillingWizard.TransloadBilling"> <BillingType>6</BillingType> <Code>sample string 4</Code> <CustomerId>1</CustomerId> <DateEnd>2025-12-05T20:28:28.3539818-08:00</DateEnd> <DateStart>2025-12-05T20:28:28.3539818-08:00</DateStart> <Description>sample string 5</Description> <IsQuickAdd>true</IsQuickAdd> <Name>sample string 3</Name> <Rate>2</Rate> </BindTransloadBillingViewModel>
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.