When set to true, enables Uptime tracking for the charge point by creating an operational period.
When set to false or omitted, Uptime tracking remains disabled.
Requirements:
- Charge point must be commercial type (public or private)
- Operator must have operational availability enabled
Validation Errors:
- Returns HTTP 422 if charge point is personal type
- Returns HTTP 422 if operator has operational availability disabled
Examples:
{
"name": "CP-001",
"accessType": "public",
"uptimeTrackingEnabled": true
}
Validation Error Examples:
Personal charge point error:
{
"message": "The given data was invalid.",
"errors": {
"uptimeTrackingEnabled": [
"Uptime tracking can only be enabled for commercial charge points"
]
}
}
Operator settings error:
{
"message": "The given data was invalid.",
"errors": {
"uptimeTrackingEnabled": [
"Operator must have operational availability enabled to track uptime"
]
}
}