PUT api/ClientDashboard/TotalViews_Update
Request Information
URI Parameters
None.
Body Parameters
TotalView| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| UserId | string |
Required Max length: 50 |
|
| Month | integer |
None. |
|
| Year | integer |
None. |
|
| Count | integer |
None. |
|
| Adjustment | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"UserId": "sample string 2",
"Month": 3,
"Year": 4,
"Count": 5,
"Adjustment": 6
}
application/xml, text/xml
Sample:
<TotalView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CificoAPI.Models"> <Adjustment>6</Adjustment> <Count>5</Count> <Id>1</Id> <Month>3</Month> <UserId>sample string 2</UserId> <Year>4</Year> </TotalView>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json
Sample:
1
application/xml, text/xml
Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>