POST Station/ReportProblem
Request Information
URI Parameters
None.
Body Parameters
ProblemReport| Name | Description | Type | Additional information |
|---|---|---|---|
| user | string |
None. |
|
| charge_point | integer |
None. |
|
| problem | string |
None. |
|
| type | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"user": "sample string 1",
"charge_point": 2,
"problem": "sample string 3",
"type": "sample string 4"
}
application/xml, text/xml
Sample:
<ProblemReport xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ChargeCloudAPI.Models"> <charge_point>2</charge_point> <problem>sample string 3</problem> <type>sample string 4</type> <user>sample string 1</user> </ProblemReport>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Response| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| ResponseCode | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"ResponseCode": "sample string 2"
}
application/xml, text/xml
Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ChargeCloudAPI.Models"> <ResponseCode>sample string 2</ResponseCode> <Success>true</Success> </Response>