/asset-management/v1/charging-station-models/{id}/archiveThis endpoint archives a charging station model. Only admins are allowed to archive charging station models.
idstringrequired
The ID of the charging station model to archive
Success
{
"data": {
"id": "string",
"vendor": "string",
"model": "string",
"friendlyName": "string",
"powerType": "AC_1_PHASE",
"connectors": [
{
"id": 123.0,
"connectionType": "CHADEMO",
"format": "CABLE",
"maxAmperage": 123.0,
"maxVoltage": 123.0,
"maxPowerWatts": 123.0
}
],
"configurationKeys": {
"ocppUrl": "string"
},
"imageUrl": "string",
"isArchived": true,
"createdAt": "2023-06-07T17:32:28Z",
"updatedAt": "2023-06-07T17:32:28Z"
}
}/asset-management/v1/charging-station-modelsThis endpoint retrieves a list of all charging station models.
limitstringThe maximum number of charging station models to return
startingAfterstringThe ID of the last charging station model to return
vendorstringThe vendor of the charging station models to return
modelstringThe model of the charging station models to return
isArchivedbooleanFilter by archived status. Defaults to false (only non-archived models).
A list of charging station models
{
"data": {
"hasMore": true,
"items": [
{
"id": "string",
"vendor": "string",
"model": "string",
"friendlyName": "string",
"powerType": "AC_1_PHASE",
"connectors": [
{
"id": 123.0,
"connectionType": "CHADEMO",
"format": "CABLE",
"maxAmperage": 123.0,
"maxVoltage": 123.0,
"maxPowerWatts": 123.0
}
],
"configurationKeys": {
"ocppUrl": "string"
},
"imageUrl": "string",
"isArchived": true,
"createdAt": "2023-06-07T17:32:28Z",
"updatedAt": "2023-06-07T17:32:28Z"
}
]
}
}/asset-management/v1/charging-station-modelsThis endpoint creates a new charging station model. Only admins are allowed to create charging station models.
vendorstringrequired
The vendor/manufacturer of the charging station
modelstringrequired
The model name of the charging station
friendlyNamestringA user-friendly display name for the model
powerTypestringrequired
The power type of the charging station
connectorsarrayrequired
List of connectors available on this charging station model
idnumberrequired
The connector ID
connectionTypestringrequired
The type of connector
formatstringrequired
The format of the connector
maxAmperagenumberrequired
Maximum amperage in amps
maxVoltagenumberrequired
Maximum voltage in volts
maxPowerWattsnumberrequired
Maximum power in watts
configurationKeysobjectrequired
Configuration keys for the charging station model
ocppUrlstringrequired
The OCPP URL configuration key for this model
imageUrlstringURL to an image of the charging station model
{
"vendor": "string",
"model": "string",
"friendlyName": "string",
"powerType": "AC_1_PHASE",
"connectors": [
{
"id": 123.0,
"connectionType": "CHADEMO",
"format": "CABLE",
"maxAmperage": 123.0,
"maxVoltage": 123.0,
"maxPowerWatts": 123.0
}
],
"configurationKeys": {
"ocppUrl": "string"
},
"imageUrl": "string"
}Success
{
"data": {
"id": "string",
"vendor": "string",
"model": "string",
"friendlyName": "string",
"powerType": "AC_1_PHASE",
"connectors": [
{
"id": 123.0,
"connectionType": "CHADEMO",
"format": "CABLE",
"maxAmperage": 123.0,
"maxVoltage": 123.0,
"maxPowerWatts": 123.0
}
],
"configurationKeys": {
"ocppUrl": "string"
},
"imageUrl": "string",
"isArchived": true,
"createdAt": "2023-06-07T17:32:28Z",
"updatedAt": "2023-06-07T17:32:28Z"
}
}/asset-management/v1/charging-station-models/{id}This endpoint retrieves a charging station model by its ID.
idstringrequired
The ID of the charging station model to retrieve
Success
{
"id": "string",
"vendor": "string",
"model": "string",
"friendlyName": "string",
"powerType": "AC_1_PHASE",
"connectors": [
{
"id": 123.0,
"connectionType": "CHADEMO",
"format": "CABLE",
"maxAmperage": 123.0,
"maxVoltage": 123.0,
"maxPowerWatts": 123.0
}
],
"configurationKeys": {
"ocppUrl": "string"
},
"imageUrl": "string",
"isArchived": true,
"createdAt": "2023-06-07T17:32:28Z",
"updatedAt": "2023-06-07T17:32:28Z"
}/asset-management/v1/charging-station-models/{id}This endpoint updates a charging station model. Only the friendlyName field can be updated.
friendlyNamestringA user-friendly display name for the model
{
"friendlyName": "string"
}Success
{
"data": {
"id": "string",
"vendor": "string",
"model": "string",
"friendlyName": "string",
"powerType": "AC_1_PHASE",
"connectors": [
{
"id": 123.0,
"connectionType": "CHADEMO",
"format": "CABLE",
"maxAmperage": 123.0,
"maxVoltage": 123.0,
"maxPowerWatts": 123.0
}
],
"configurationKeys": {
"ocppUrl": "string"
},
"imageUrl": "string",
"isArchived": true,
"createdAt": "2023-06-07T17:32:28Z",
"updatedAt": "2023-06-07T17:32:28Z"
}
}Was this page helpful?