Get Config Template Implementation
Retrieves a specific config template implementation by ID.
Path Parameters
id int64 required
The unique identifier of the config template implementation.
Responses
- 200
- 401
- 404
- 500
Successfully retrieved the config template implementation.
application/json
Schema
Example (from schema)
Schema
- Array [
- ]
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
{
"id": 0,
"configTemplateId": 0,
"editable": true,
"manufacturer": "string",
"model": "string",
"firmwareVersion": "string",
"createdAt": "2025-08-26T05:08:33.460Z",
"updatedAt": "2025-08-26T05:08:33.460Z",
"configTemplateName": "string",
"ocppEntries": [
{
"id": 0,
"configTemplateImplementationId": 0,
"editable": true,
"key": "string",
"value": "string",
"createdAt": "2025-08-26T05:08:33.460Z",
"updatedAt": "2025-08-26T05:08:33.460Z"
}
]
}
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"
}
Config template implementation not found.
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...