POST api/reports/new
Request Information
URI Parameters
None.
Body Parameters
ReportsBindingModelName | Description | Type | Additional information |
---|---|---|---|
UserID | globally unique identifier |
None. |
|
Day | boolean |
None. |
|
Week | boolean |
None. |
|
Month | boolean |
None. |
|
Year | boolean |
None. |
|
Max | integer |
None. |
|
Current | integer |
None. |
|
Start | date |
None. |
|
End | date |
None. |
Request Formats
application/json, text/json
Sample:
{ "UserID": "5ccd46b3-17db-471d-8ea6-48cc9c84e723", "Day": true, "Week": true, "Month": true, "Year": true, "Max": 6, "Current": 7, "Start": "2024-12-15T02:55:28.6049896+00:00", "End": "2024-12-15T02:55:28.6049896+00:00" }
application/xml, text/xml
Sample:
<ReportsBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GameAPIV3.Models"> <Current>7</Current> <Day>true</Day> <End>2024-12-15T02:55:28.6049896+00:00</End> <Max>6</Max> <Month>true</Month> <Start>2024-12-15T02:55:28.6049896+00:00</Start> <UserID>5ccd46b3-17db-471d-8ea6-48cc9c84e723</UserID> <Week>true</Week> <Year>true</Year> </ReportsBindingModel>
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.