OCPP Messages
GET /api/ocpp-messages
Parameters
Response
{
data: {
id: number;
createdAt: string; // ISO 8601 format
ocppChargerIdentity: string;
messageType: string; // OCPP message type (e.g., 'Authorize', 'StartTransaction', 'GetConfiguration')
messagePayload: any; // The original OCPP message payload
messageResponse: any; // The OCPP response or error message
chargerId: number;
protocol: string; // OCPP protocol version ('ocpp1.6' or 'ocpp2.0.1')
}
[];
pagination: {
hasNextPage: boolean;
nextPageCursor: string | null;
}
}Example request and response
Message responses in case of error
Last updated