Creates a report in the given Web Intelligence document.
POST /documents/<documentID>/reports
Request body (optional):
<report> <name>
Where:
Response type: application/xml or application/json
The response is a message stating the success or failure of the request.
POST /documents/12782/reports
Response:
<success> <message>The resource of type "Report" with identifier "2" has been successfully created.</message> <id>2</id> </success>
The name "Report 2" and the ID "2" have been assigned automatically.
POST /documents/5152/reports
Request:
{"report": {"name":"Chart Report"} }
Response:
{"success": {"message":"The resource of type \"Report\" with identifier \"6\" has been successfully created.", "id":6} }
The ID "6" has been assigned automatically.