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": "c5936046-ba8e-453b-afb7-f441ce153339", "Day": true, "Week": true, "Month": true, "Year": true, "Max": 6, "Current": 7, "Start": "2025-04-04T05:14:57.7740952+00:00", "End": "2025-04-04T05:14:57.7740952+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>2025-04-04T05:14:57.7740952+00:00</End> <Max>6</Max> <Month>true</Month> <Start>2025-04-04T05:14:57.7740952+00:00</Start> <UserID>c5936046-ba8e-453b-afb7-f441ce153339</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.