February 2024
9 months ago
π Feature
- Sponsored Charge Points - added new fields to
chargePoint
object:chargePointModelId
brandName
modelName
firmwareVersion
maxKw
isActive
- Added new Price Group Tags APIs - they allow you to assign tags to price group elements (charge pricings).
GET /price-group-tags
- Retrieve your operators' tagsGET /price-group-tags/:id
- Retrieve a tag by idPOST /price-group-tags
- Create a new tagPATCH /price-group-tags/:id
- Update an existing tagDELETE /price-group-tags/:id
- Delete a tag
Note: tags are scoped at operator level, so they can be used across an operator.
- Price Group Tags are exposed on Charge Breakdowns
- Price Group Tags can be assigned when creating Price Groups
- Charges contain a new object
publicChargePoint
. This gives you public information about the charge point, such as EVSE ID, address, brand, and model. - You can include deleted entries for Sponsored Charge Points in
GET /api/v1/sponsored-charge-points
- Added field
completedAt
andchargePointOperatorName
for Charges - Added
reservable
andreservationTime
for Charge Points
π Fix
- Deleted Team Members are retrievable via
GET /api/v1/team-members/{id}