Get Config Template Implementations
Retrieves a paginated list of config template implementations with optional filtering.
Query Parameters
page int32
The page number to retrieve (starting from 1).
limit int32
Number of items to return per page.
search string
Search term to filter implementations by manufacturer, model, or firmware version.
configTemplateId int64
Filter by config template ID.
Responses
- 200
- 400
- 401
- 500
Successfully retrieved config template implementations.
application/json
Schema
Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
page int32
limit int32
totalRecords int32
hasNextPage boolean
hasPreviousPage boolean
items object[]
id int64
configTemplateId int64
editable boolean
manufacturer string
model string
firmwareVersion string
createdAt date-time
updatedAt date-time nullable
configTemplateName string
ocppEntries object[]
id int64
configTemplateImplementationId int64
editable boolean
key string
value string
createdAt date-time
updatedAt date-time nullable
{
"page": 0,
"limit": 0,
"totalRecords": 0,
"hasNextPage": true,
"hasPreviousPage": true,
"items": [
{
"id": 0,
"configTemplateId": 0,
"editable": true,
"manufacturer": "string",
"model": "string",
"firmwareVersion": "string",
"createdAt": "2025-08-26T05:08:33.459Z",
"updatedAt": "2025-08-26T05:08:33.459Z",
"configTemplateName": "string",
"ocppEntries": [
{
"id": 0,
"configTemplateImplementationId": 0,
"editable": true,
"key": "string",
"value": "string",
"createdAt": "2025-08-26T05:08:33.459Z",
"updatedAt": "2025-08-26T05:08:33.459Z"
}
]
}
]
}
Invalid request parameters.
application/json
Schema
Example (from schema)
Schema
errorCode string
message string
errorNumber int32
helpLink string
{
"errorCode": "string",
"message": "string",
"errorNumber": 0,
"helpLink": "string"
}
User is not authenticated.
application/json
Schema
Example (from schema)
Schema
errorCode string
message string
errorNumber int32
helpLink string
{
"errorCode": "string",
"message": "string",
"errorNumber": 0,
"helpLink": "string"
}
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...