POST api/CustomerUser/GetUserAccountSummary
Kullanici Bazli Hesap Ozeti
Request Information
URI Parameters
None.
Body Parameters
GetUserAccountSummaryForUserInput| Name | Description | Type | Additional information |
|---|---|---|---|
| Filter | SummaryFilter |
None. |
|
| CustomerId | globally unique identifier |
None. |
|
| SellerId | globally unique identifier |
None. |
|
| FilterStartDate | string |
None. |
|
| FilterEndDate | string |
None. |
|
| Token | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Filter": 1,
"CustomerId": "c24280f7-c260-4f49-97f5-0eb2a21519c3",
"SellerId": "3f0391a9-6a63-4e31-8594-dfa76c1b21a9",
"FilterStartDate": "sample string 3",
"FilterEndDate": "sample string 4",
"Token": "sample string 5"
}
text/xml
Sample:
<GetUserAccountSummaryForUserInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BiCay.Services.CustomerServices.Dtos"> <Token xmlns="http://schemas.datacontract.org/2004/07/BiCay.Services.Base.Dtos">sample string 5</Token> <CustomerId>c24280f7-c260-4f49-97f5-0eb2a21519c3</CustomerId> <Filter>Day</Filter> <FilterEndDate>sample string 4</FilterEndDate> <FilterStartDate>sample string 3</FilterStartDate> <SellerId>3f0391a9-6a63-4e31-8594-dfa76c1b21a9</SellerId> </GetUserAccountSummaryForUserInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
UserAccountSummaryForUserDto| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalAmount | decimal number |
None. |
|
| TotalPaymentAmount | decimal number |
None. |
|
| LastAmount | decimal number |
None. |
|
| Products | Collection of UserAccountSummaryProductForUserDto |
None. |
Response Formats
application/json, text/json
Sample:
{
"TotalAmount": 1.0,
"TotalPaymentAmount": 2.0,
"LastAmount": 3.0,
"Products": [
{
"Id": 1,
"Name": "sample string 2",
"TotalQuantity": 3,
"TotalPrice": 4.0
},
{
"Id": 1,
"Name": "sample string 2",
"TotalQuantity": 3,
"TotalPrice": 4.0
}
]
}
text/xml
Sample:
<UserAccountSummaryForUserDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BiCay.Services.CustomerServices.Dtos">
<LastAmount>3</LastAmount>
<Products>
<UserAccountSummaryProductForUserDto>
<Id>1</Id>
<Name>sample string 2</Name>
<TotalPrice>4</TotalPrice>
<TotalQuantity>3</TotalQuantity>
</UserAccountSummaryProductForUserDto>
<UserAccountSummaryProductForUserDto>
<Id>1</Id>
<Name>sample string 2</Name>
<TotalPrice>4</TotalPrice>
<TotalQuantity>3</TotalQuantity>
</UserAccountSummaryProductForUserDto>
</Products>
<TotalAmount>1</TotalAmount>
<TotalPaymentAmount>2</TotalPaymentAmount>
</UserAccountSummaryForUserDto>