POST ChargeProcess/Start

Request Information

URI Parameters

None.

Body Parameters

StartChargeProcess
NameDescriptionTypeAdditional information
user_id

integer

None.

company_id

integer

None.

station_id

integer

None.

socket_id

integer

None.

car_id

integer

None.

date

date

None.

Request Formats

application/json, text/json

Sample:
{
  "user_id": 1,
  "company_id": 2,
  "station_id": 3,
  "socket_id": 4,
  "car_id": 5,
  "date": "2025-12-06T07:16:56.4244085+03:00"
}

application/xml, text/xml

Sample:
<StartChargeProcess xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ChargeCloudAPI.Models">
  <car_id>5</car_id>
  <company_id>2</company_id>
  <date>2025-12-06T07:16:56.4244085+03:00</date>
  <socket_id>4</socket_id>
  <station_id>3</station_id>
  <user_id>1</user_id>
</StartChargeProcess>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'StartChargeProcess'.

Response Information

Resource Description

Response
NameDescriptionTypeAdditional 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>