Get combined OCPP request/response logs
x-ms-visibility: "important"
Returns OCPP logs where request and response are matched by message id.
Query Parameters
chargerId string required
Charger Identifier
startDate date-time
Start date to fetch logs (UTC or local). Default: now-7d
endDate date-time
End date to fetch logs (UTC or local). Default: now
page int32
Page number (1-based). Default: 1
limit int32
Items per page (max 100). Default: 100
sortKey string
Sort key: RequestTimestamp, ResponseTimestamp, MessageId, Action. Default: RequestTimestamp
sortDescending boolean
Sort descending if true. Default: true
search string
Text search across action and payload
messageTypes string[]
Filter by message types (comma-separated)
includeHeartbeats boolean
Include Heartbeat CALL messages. Default: true
Responses
- 200
- 400
- 401
- 500
Combined OCPP logs
application/json
Schema
Example (from schema)
Schema
- Array [
- ]
page int32
limit int32
totalRecords int64
hasNextPage boolean
hasPreviousPage boolean
items object[]
messageId string
ocppVersion string
messageType string
source string
requestTimestamp date-time
responseTimestamp date-time nullable
request object
action string
payload object
response object
payload object
{
"page": 0,
"limit": 0,
"totalRecords": 0,
"hasNextPage": true,
"hasPreviousPage": true,
"items": [
{
"messageId": "string",
"ocppVersion": "string",
"messageType": "string",
"source": "string",
"requestTimestamp": "2025-09-04T07:11:42.212Z",
"responseTimestamp": "2025-09-04T07:11:42.212Z",
"request": {
"action": "string",
"payload": {}
},
"response": {
"payload": {}
}
}
]
}
Details of the validation error.
application/json
Schema
Example (from schema)
Schema
type string
title string
status int32 nullable
detail string
instance string
extensions object
property name* object
{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string",
"extensions": {}
}
User not authorised
An unexpected error occurred.
application/json
Schema
Example (from schema)
Schema
errorCode string
message string
errorNumber int32
helpLink string
{
"errorCode": "string",
"message": "string",
"errorNumber": 0,
"helpLink": "string"
}
Loading...