POST api/shipping/accounts
Request Information
URI Parameters
None.
Body Parameters
ShippingClientCreateDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Username | string |
Required |
|
| Password | string |
Required |
|
| ClientName | string |
Required |
|
| Balance | decimal number |
Required |
|
| ThresholdAmount | decimal number |
Required |
|
| YellowAlertAmt | decimal number |
Required |
|
| RedAlertAmt | decimal number |
Required |
|
| YellowAlertEmail | string |
Required |
|
| RedAlertEmail | string |
Required |
Request Formats
application/json, text/json
Sample:
{
"Username": "sample string 1",
"Password": "sample string 2",
"ClientName": "sample string 3",
"Balance": 4.0,
"ThresholdAmount": 5.0,
"YellowAlertAmt": 6.0,
"RedAlertAmt": 7.0,
"YellowAlertEmail": "sample string 8",
"RedAlertEmail": "sample string 9"
}
application/xml, text/xml
Sample:
<ShippingClientCreateDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VLIServices.Models.DTO"> <Balance>4</Balance> <ClientName>sample string 3</ClientName> <Password>sample string 2</Password> <RedAlertAmt>7</RedAlertAmt> <RedAlertEmail>sample string 9</RedAlertEmail> <ThresholdAmount>5</ThresholdAmount> <Username>sample string 1</Username> <YellowAlertAmt>6</YellowAlertAmt> <YellowAlertEmail>sample string 8</YellowAlertEmail> </ShippingClientCreateDTO>
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.