GET ChargeProcess/Status?user_id={user_id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| user_id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ChargeProcess| Name | Description | Type | Additional information |
|---|---|---|---|
| process_id | integer |
None. |
|
| active | boolean |
None. |
|
| charge_complete | boolean |
None. |
|
| payment_complete | boolean |
None. |
|
| station_name | string |
None. |
|
| socket_name | string |
None. |
|
| socket_type | string |
None. |
|
| socket_kwh | string |
None. |
|
| start_date | date |
None. |
|
| end_date | date |
None. |
|
| start_percent | decimal number |
None. |
|
| current_percent | decimal number |
None. |
|
| end_percent | decimal number |
None. |
|
| used_kwh | decimal number |
None. |
|
| average_kwh | decimal number |
None. |
|
| company_name | string |
None. |
|
| company_image | string |
None. |
|
| socket_image | string |
None. |
|
| price | decimal number |
None. |
|
| price_unit | string |
None. |
|
| pricing | decimal number |
None. |
|
| pricing_unit | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"process_id": 1,
"active": true,
"charge_complete": true,
"payment_complete": true,
"station_name": "sample string 5",
"socket_name": "sample string 6",
"socket_type": "sample string 7",
"socket_kwh": "sample string 8",
"start_date": "2025-12-06T07:19:38.3037942+03:00",
"end_date": "2025-12-06T07:19:38.3037942+03:00",
"start_percent": 11.0,
"current_percent": 12.0,
"end_percent": 13.0,
"used_kwh": 14.0,
"average_kwh": 15.0,
"company_name": "sample string 16",
"company_image": "sample string 17",
"socket_image": "sample string 18",
"price": 19.0,
"price_unit": "sample string 20",
"pricing": 21.0,
"pricing_unit": "sample string 22"
}
application/xml, text/xml
Sample:
<ChargeProcess xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ChargeCloudAPI.Models"> <active>true</active> <average_kwh>15</average_kwh> <charge_complete>true</charge_complete> <company_image>sample string 17</company_image> <company_name>sample string 16</company_name> <current_percent>12</current_percent> <end_date>2025-12-06T07:19:38.3037942+03:00</end_date> <end_percent>13</end_percent> <payment_complete>true</payment_complete> <price>19</price> <price_unit>sample string 20</price_unit> <pricing>21</pricing> <pricing_unit>sample string 22</pricing_unit> <process_id>1</process_id> <socket_image>sample string 18</socket_image> <socket_kwh>sample string 8</socket_kwh> <socket_name>sample string 6</socket_name> <socket_type>sample string 7</socket_type> <start_date>2025-12-06T07:19:38.3037942+03:00</start_date> <start_percent>11</start_percent> <station_name>sample string 5</station_name> <used_kwh>14</used_kwh> </ChargeProcess>