POST users/{GuideId}/report
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| GuideId | string |
Required |
Body Parameters
ProblemModel| Name | Description | Type | Additional information |
|---|---|---|---|
| user | string |
None. |
|
| location | LocationModel |
None. |
|
| date | string |
None. |
|
| problem_type | string |
None. |
|
| description | string |
None. |
|
| image | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"user": "sample string 1",
"location": {
"lat": 1.0,
"lng": 2.0
},
"date": "sample string 2",
"problem_type": "sample string 3",
"description": "sample string 4",
"image": 5
}
application/xml, text/xml
Sample:
<ProblemModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VrPark.WebAPI.Models">
<date>sample string 2</date>
<description>sample string 4</description>
<image>5</image>
<location>
<lat>1</lat>
<lng>2</lng>
</location>
<problem_type>sample string 3</problem_type>
<user>sample string 1</user>
</ProblemModel>
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.