POST api/Customers/{customerId}/Savings
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customerId | integer |
Required |
Body Parameters
SavingsDetailsRequestDto| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderId | integer |
None. |
|
| CustomerOrderId | string |
None. |
|
| ISBN | string |
None. |
|
| QueryDateTypeId | integer |
None. |
|
| StartDate | string |
None. |
|
| EndDate | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"OrderId": 1,
"CustomerOrderId": "sample string 1",
"ISBN": "sample string 2",
"QueryDateTypeId": 1,
"StartDate": "sample string 3",
"EndDate": "sample string 4"
}
application/xml, text/xml
Sample:
<SavingsDetailsRequestDto xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <OrderId>1</OrderId> <CustomerOrderId>sample string 1</CustomerOrderId> <ISBN>sample string 2</ISBN> <QueryDateTypeId>1</QueryDateTypeId> <StartDate>sample string 3</StartDate> <EndDate>sample string 4</EndDate> </SavingsDetailsRequestDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |