POST api/v1/History/{uid}/history
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| uid | string |
None. |
Body Parameters
HistoryRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| uid | string |
None. |
|
| type | string |
None. |
|
| from | string |
None. |
|
| frequency | integer |
None. |
|
| count | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"uid": "sample string 1",
"type": "sample string 2",
"from": "sample string 3",
"frequency": 4,
"count": 5
}
application/xml, text/xml
Sample:
<HistoryRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WEBAPI_JWT_Authentication.Models"> <count>5</count> <frequency>4</frequency> <from>sample string 3</from> <type>sample string 2</type> <uid>sample string 1</uid> </HistoryRequest>
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.