Maintenance Windows
GET /api/maintenance-windows
Parameters
Response
{
data: {
id: number;
startTimestamp: string; // ISO 8601 format
endTimestamp: string; // ISO 8601 format
comment: string | null;
userEmail: string; // Email of the user who created the window
createdAt: string; // ISO 8601 format
updatedAt: string; // ISO 8601 format
charger: {
id: number;
name: string;
manufacturer: string | null;
model: string | null;
networkServiceProvider: string;
chargerType: string;
serialNumber: string | null;
numberOfPorts: number;
latitude: number | null;
longitude: number | null;
externalId: string | null;
ocppId: string | null;
};
site: {
id: number;
name: string;
locationId: string | null;
};
organization: {
id: number;
name: string;
};
}[];
pagination: {
hasNextPage: boolean;
nextPageCursor: string | null;
};
}Example request and response
Last updated