/asset-management/v1/asset-templatesThis endpoint retrieves a list of all asset templates.
limitstringThe maximum number of asset templates to return
startingAfterstringThe ID of the last asset template to return
vendorstringThe vendor of the asset templates to return
modelstringThe model of the asset templates to return
A list of assets
{
"data": {
"hasMore": true,
"items": [
{
"id": "string",
"type": "chargingStation",
"chargingStation": {
"model": "string",
"powerType": "AC_1_PHASE",
"vendor": "string",
"connectors": [
{
"id": 123.0,
"connectionType": "CHADEMO",
"format": "CABLE",
"maxAmperage": 123.0,
"maxVoltage": 123.0,
"maxPowerWatts": 123.0
}
],
"configurationKeys": {
"ocppUrl": "string"
},
"imageUrl": "string"
}
}
]
}
}/asset-management/v1/asset-templatesThis endpoint creates a new asset template. Only admins are allowed to create asset templates.
typestringrequired
chargingStationobjectrequired
vendorstringrequired
modelstringrequired
powerTypestringrequired
connectorsarrayrequired
{
"type": "chargingStation",
"chargingStation": {
"vendor": "string",
"model": "string",
"powerType": "AC_1_PHASE",
"connectors": [
{
"id": 123.0,
"connectionType": "CHADEMO",
"format": "CABLE",
"maxAmperage": 123.0,
"maxVoltage": 123.0,
"maxPowerWatts": 123.0
}
]
}
}Success
{
"data": {
"id": "string",
"type": "chargingStation",
"chargingStation": {
"model": "string",
"powerType": "AC_1_PHASE",
"vendor": "string",
"connectors": [
{
"id": 123.0,
"connectionType": "CHADEMO",
"format": "CABLE",
"maxAmperage": 123.0,
"maxVoltage": 123.0,
"maxPowerWatts": 123.0
}
],
"configurationKeys": {
"ocppUrl": "string"
},
"imageUrl": "string"
}
}
}/asset-management/v1/asset-templates/{assetTemplateId}This endpoint retrieves an asset template by its ID.
assetTemplateIdstringrequired
The ID of the asset template to retrieve
Success
{
"id": "string",
"type": "chargingStation",
"chargingStation": {
"model": "string",
"powerType": "AC_1_PHASE",
"vendor": "string",
"connectors": [
{
"id": 123.0,
"connectionType": "CHADEMO",
"format": "CABLE",
"maxAmperage": 123.0,
"maxVoltage": 123.0,
"maxPowerWatts": 123.0
}
],
"configurationKeys": {
"ocppUrl": "string"
},
"imageUrl": "string"
}
}Was this page helpful?