POST api/Service/GetSalesFigures
Request Information
URI Parameters
None.
Body Parameters
SalesFiguresRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Input | SalesFiguresInputModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"Input": {
"UserNo": 1
}
}
application/xml, text/xml
Sample:
<SalesFiguresRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BizMate.BizLayer">
<Input>
<UserNo>1</UserNo>
</Input>
</SalesFiguresRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SalesFiguresResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| OutPut | SalesFiguresOutPutModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"OutPut": {
"Success": true,
"Message": "sample string 2",
"SalesFigures": {
"SalesFiguresInfo": [
{
"Label": "sample string 1",
"Count": 2
},
{
"Label": "sample string 1",
"Count": 2
}
]
}
}
}
application/xml, text/xml
Sample:
<SalesFiguresResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BizMate.BizLayer">
<OutPut>
<Message>sample string 2</Message>
<SalesFigures>
<SalesFiguresInfo>
<SalesFiguresModel>
<Count>2</Count>
<Label>sample string 1</Label>
</SalesFiguresModel>
<SalesFiguresModel>
<Count>2</Count>
<Label>sample string 1</Label>
</SalesFiguresModel>
</SalesFiguresInfo>
</SalesFigures>
<Success>true</Success>
</OutPut>
</SalesFiguresResponse>