GET Charge/Summary?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

ChargeSummary
NameDescriptionTypeAdditional information
process_id

integer

None.

date

date

None.

start

date

None.

end

date

None.

start_percent

decimal number

None.

end_percent

decimal number

None.

used_kwh

decimal number

None.

average_kwh

decimal number

None.

socket_name

string

None.

station_name

string

None.

price_unit

string

None.

price

decimal number

None.

Response Formats

application/json, text/json

Sample:
{
  "process_id": 1,
  "date": "2025-12-06T07:14:52.67092+03:00",
  "start": "2025-12-06T07:14:52.67092+03:00",
  "end": "2025-12-06T07:14:52.67092+03:00",
  "start_percent": 5.0,
  "end_percent": 6.0,
  "used_kwh": 7.0,
  "average_kwh": 8.0,
  "socket_name": "sample string 9",
  "station_name": "sample string 10",
  "price_unit": "sample string 11",
  "price": 12.0
}

application/xml, text/xml

Sample:
<ChargeSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ChargeCloudAPI.Models">
  <average_kwh>8</average_kwh>
  <date>2025-12-06T07:14:52.67092+03:00</date>
  <end>2025-12-06T07:14:52.67092+03:00</end>
  <end_percent>6</end_percent>
  <price>12</price>
  <price_unit>sample string 11</price_unit>
  <process_id>1</process_id>
  <socket_name>sample string 9</socket_name>
  <start>2025-12-06T07:14:52.67092+03:00</start>
  <start_percent>5</start_percent>
  <station_name>sample string 10</station_name>
  <used_kwh>7</used_kwh>
</ChargeSummary>