Endpoints

Workspace Admin API endpoint requests and responses

This is the request/response reference for every /v2/admin endpoint. Authentication, idempotency, rate limits, token creation, and scope semantics are documented in Workspace Admin API. Reusable field-level types and examples are in Schemas and examples. Read every endpoint row together with Response and error contract, which lists all possible shared and endpoint-specific non-success response bodies.

Common contract

Every path begins with the deployed app-api origin. The workspace is derived exclusively from the authenticated token; clients must not send cpoId. All documented :...Id resource path values are positive decimal integers. Every request requires exactly one:

Authorization: Bearer <workspace-access-token>

Requests shown with a JSON body require Content-Type: application/json. All mutations require Idempotency-Key (POST, PUT, PATCH, and DELETE), including POST /v2/admin/reports/send; unless a row says otherwise, the success content type is application/json, JSON dates are RFC 3339 strings, and numbers are JSON numbers.

Every request may include X-Request-Id and X-Error-Format: envelope; see Response and error contract. These headers do not change success schemas.

Notation used below:

  • none means no request body. A DELETE that documents a JSON body still requires that body.
  • ? marks an optional property or query parameter.
  • T | null means the property is present and nullable.
  • 204 empty means no response body.
  • CursorPage<T> means { items: T[], nextCursor: number|string|null }, except where the row names a page or pagination object explicitly.
  • All nested resource misses, including cross-workspace IDs, use 404 { "error": "Workspace resource not found", "code": "RESOURCE_NOT_FOUND" } unless a feature documents a more specific conflict.

Shared request schemas

Workspace and site inputs

WorkspacePatch = {
  name?: string(1..100), email?: email|null, website?: string|null,
  addressLine1?: string|null, addressLine2?: string|null,
  postalCode?: string|null, city?: string|null, state?: string|null,
  countryId?: positive integer
} // at least one property

SiteInput = {
  name: string(1..255), description?: string|null = null,
  addressLine1?: string|null = null, addressLine2?: string|null = null,
  postalCode?: string|null = null, city?: string|null = null, state?: string|null = null,
  countryId: positive integer, timezoneId: positive integer,
  latitude?: number[-90,90]|null = null, longitude?: number[-180,180]|null = null
}

Power-management input

PowerConfigurationInput = { pools: PowerPoolInput[0..200] }
PowerPoolInput = {
  id?: positive integer|null, name?: string(0..255),
  limit: integer[0,100000000], meterSources?: ExternalMeterInput[0..16],
  children?: (PowerPoolInput | ChargerPoolChild)[0..1000]
}
ChargerPoolChild = { chargepointId: positive integer, priority?: integer[-1000000,1000000] }
ExternalMeterInput = {
  id?: positive integer|null, sourceId?: positive integer|null,
  provider?: "perific", name?: string(0..255), externalId: string(1..80),
  measurementMode?: "available_headroom"|"external_non_ev_load_only"|"total_site_load_including_ev",
  valueMode?: "perific_relative"|"perific_direct"|"perific_meter",
  reserveA?: integer[0,100000], offlineSafeA?: integer[0,100000],
  ttlSeconds?: integer[30,86400], enabled?: boolean
}

Charger inputs

ChargerCreate = { name: string(1..40), identifier: string(1..40), password?: string(0..40) = "", siteId: positive integer }
ChargerPatch = {
  name?: string(1..40), siteId?: positive integer, invertedRfid?: boolean,
  smartMode?: integer[0,3], automationDisabled?: boolean
} // at least one
ConnectorPatch = {
  connectorFormatId: positive integer, connectorTypeId: positive integer,
  powerTypeId: positive integer, maxVoltage: integer[1,10000],
  maxAmperage: integer[1,10000], maxElectricPower: integer[1,100000000]
}

Report inputs

ReportFilters = {
  from?: RFC3339, to?: RFC3339, siteId?: positive integer,
  chargerId?: positive integer, userId?: positive integer,
  anonymous?: true|false|1|0, active?: true|false|1|0
}
ReportScheduleInput = {
  enabled: boolean, recipientEmail: email(max 255; may be empty only when disabled), format: "csv"|"pdf",
  sendDay: integer[1,28], sendTime: UTC "HH:mm"
}

Report ranges must satisfy from < to and may not exceed 90 days. When omitted, the latest 90-day window is used. userId and anonymous=true are mutually exclusive. Scheduled exports catch up after a missed UTC minute and use bounded retries (5/10-minute backoff, 30-minute stale-claim lease, three attempts).

Tariff inputs

TariffInput = {
  name: string(1..64),
  exactly one of currencyId: positive integer, currencyCode: 3 letters, currency: 3 letters,
  biddingZoneId?: positive integer|null, tax?: finite number
}
TariffComponentInput = {
  typeId: positive integer, seasonId: positive integer, priority?: finite number,
  price: finite number, validFromMonth?: finite number, validToMonth?: finite number,
  validFromWeekDay?: finite number, validToWeekDay?: finite number,
  validFromHour?: finite number, validToHour?: finite number
}
TariffAssignmentCreateInput = { tariffId: positive integer, connectorId?: nonnegative integer }
TariffAssignmentUpdateInput = { tariffId: positive integer, connectorId: positive integer }

Charging-profile inputs

ChargingProfileInput = {
  label: string(1..40), locationId: positive integer, stackLevel: nonnegative number,
  purposeId: positive integer, kindId: positive integer,
  recurrencyKindId?: positive integer|null, validFrom?: RFC3339|null,
  validTo?: RFC3339|null, startSchedule?: RFC3339|null,
  rateUnitId: positive integer, minChargingRate?: nonnegative number|null
}
ChargingProfileCreate = ChargingProfileInput & { schedule?: SchedulePeriod[0..256] }
SchedulePeriod = { startPeriod: nonnegative number, limit: nonnegative number, numberOfPhases?: positive integer|null }
ChargingScheduleInput = { rateUnitId: positive integer, periods: SchedulePeriod[1..256] }
ProfileAssignmentInput = { profileId: positive integer, connectorId?: nonnegative integer }

User inputs

UserCreate = { email: email(max 255), name: string(1..255) }
InvitationInput = {
  email: email, name?: string|null, rfid?: string|null,
  allChargers?: boolean, chargerIds?: unique positive integer[0..500]
} // chargerIds must be non-empty unless allChargers=true
AccessInput = { allChargers?: boolean, chargerIds?: unique positive integer[0..500] }
LimitCreate = { limitTypeId: positive integer, energyValue?: nonnegative integer = 0, timeValue?: nonnegative integer = 0 }
LimitPatch = { limitTypeId?: positive integer, energyValue?: nonnegative integer, timeValue?: nonnegative integer }

At least one of energyValue or timeValue must be greater than zero when creating a limit. Emails are trimmed and lowercased. RFID UIDs are accepted only on writes and are masked in read responses.

Response DTO summary

The endpoint tables show every top-level response envelope. These are the principal reusable DTOs inside those envelopes:

DTOFields
Workspaceid, name, email, website, address { line1, line2, postalCode, city, state, countryId, countryCode, countryName }, createdAt, updatedAt
Siteid, name, description, address, timezone { id, name }, latitude, longitude, chargerCount; detail adds normalized chargers and connector state
GeocodeCandidateplaceId, displayName, latitude, longitude; provider credentials and provider-specific metadata are never returned
MetricsWindowfrom, to, session limits/counts, and totalsCapped where applicable
Chargerid, name, identifier, cpoId, site, normalized status, isPublic, RFID/smart/automation flags, provisioned, connection, evses, connectors, createdAt, updatedAt; detail adds redacted configuration, firmware, and counts
ConnectorportId, connectorId, connector lookup IDs, maxVoltage, maxAmperage, maxElectricPower
ReportSessionid, charger/site, port and connector IDs, minimized user, active, energyWh, start/stop/duration, and per-currency net/tax/total costs
ReportScheduleid, workspaceId, enabled, recipientEmail, format, UTC sendDay/sendTime, creation/update and safe last-delivery metadata including attempt count
Tariffid, cpoId, name, type/site/currency/bidding-zone objects, tax, fallbackPrice, effective price, components, assignmentCount
ChargingProfileid, cpoId, label, description, stackLevel, location/purpose/kind/recurrency/rate-unit objects, validity, schedule, assignmentCount, timestamps
Userid, membershipId, name, email, masked rfids, charger access, limitCount; detail adds phone, createdAt, and limits. OCPP authorization credentials such as contractId are never returned.
RFIDid, maskedUid, name, type, valid; raw UID is never returned
AccessallChargers, sorted chargerIds, and items containing grant/charger/site/expiry metadata
Limitid, limitTypeId, label, energyValue, timeValue
LocalUserList DTO: id, customerId, name, email, expiresAt, systemManaged. Local-user mutations use the distinct LocalUserMutation/LocalUserUpdate shapes in Schemas and examples.

Lookup objects are returned by list/detail routes so callers can discover valid IDs. Treat unknown added fields as forward-compatible and branch only on documented stable fields and error codes.

Workspace endpoints

Method and pathScopeRequestSuccess response
GET /v2/adminworkspaces:readBody: none200 { workspace: Workspace }
PATCH /v2/adminworkspaces:updateBody: WorkspacePatch200 { workspace: Workspace }
GET /v2/admin/dashboardworkspaces:read + reports:readBody/query: none200 { window, stats { chargerCount, onlineChargerCount, siteCount, userCount }, sessions: DashboardSession[], analytics }; sessions are capped at 1,000 over 90 days

Site and power-management endpoints

Method and pathScopeRequestSuccess response
GET /v2/admin/sitessites:readBody/query: none200 { items: Site[], metricsWindow: MetricsWindow, lookups { countries, timezones } }
GET /v2/admin/sites/geocodesites:readQuery: optional street (max 160), city, state, country (max 100 each), countryCode (max 2); optional Accept-Language header; at least two combined street/city/state characters are required200 { results: GeocodeCandidate[] }; identical in-flight searches are coalesced and provider work uses a bounded serialized queue plus a bounded server-side cache; invalid searches return 400 INVALID_GEOCODE_QUERY, queue saturation returns 429 GEOCODING_BUSY with Retry-After, and provider failures return 502 GEOCODING_UNAVAILABLE
POST /v2/admin/sitessites:createBody: SiteInput201 { site: Site }
GET /v2/admin/sites/:siteIdsites:read + reports:readBody/query: none200 { site: SiteDetail, recentSessions: SiteSession[], totals, metricsWindow }
PATCH /v2/admin/sites/:siteIdsites:updateBody: complete SiteInput200 { site: Site }
DELETE /v2/admin/sites/:siteIdsites:deleteBody: none204 empty; a non-empty site returns 409 SITE_NOT_EMPTY
GET /v2/admin/sites/:siteId/power-managementsites:power-managementBody/query: none200 { configuration: PowerConfiguration } containing owned site, chargers/connectors, pools, meter sources, assignments, and compatibility state
PUT /v2/admin/sites/:siteId/power-managementsites:power-managementBody: PowerConfigurationInput200 { configuration: PowerConfiguration }; OCPP refusal, timeout, or concurrent change returns 409 POWER_MANAGEMENT_CONFLICT without applying the replacement

Charger endpoints

Method and pathScopeRequestSuccess response
GET /v2/admin/chargerschargers:readBody/query: none200 { items: Charger[], metricsWindow: MetricsWindow, connectorLookups { formats, types, powerTypes } }
POST /v2/admin/chargerschargers:createBody: ChargerCreate; identifier is uppercased201 { charger: Charger }; password is never returned
GET /v2/admin/chargers/:chargerIdchargers:readBody/query: none200 { charger: ChargerDetail }
PATCH /v2/admin/chargers/:chargerIdchargers:updateBody: ChargerPatch200 { charger: ChargerDetail }
DELETE /v2/admin/chargers/:chargerIdchargers:deleteBody: none204 empty
PATCH /v2/admin/chargers/:chargerId/credentialschargers:credentialsBody: { password: string(0..40) }200 { success: true }
PATCH /v2/admin/chargers/:chargerId/connectors/:portIdchargers:connector-settingsBody: ConnectorPatch200 { connector: Connector }
PATCH /v2/admin/chargers/:chargerId/public-listingchargers:publicBody: { isPublic: boolean }200 { isPublic: boolean }; unmet readiness returns 409 CHARGER_CONFLICT
GET /v2/admin/chargers/:chargerId/public-readinesschargers:readBody/query: none200 { readiness: { ready, missingRequirements, connectorIds, missingTariffConnectorIds, ...commercialState } }
GET /v2/admin/chargers/:chargerId/logschargers:readQuery: cursor?, limit?=50 (1..200), from?, to?, action?, direction?, levelId?200 { items: RedactedOcppLog[], nextCursor: number or null }
GET /v2/admin/chargers/:chargerId/sessionschargers:read + reports:readQuery: page?=1, limit?=25 (1..100), from?, to?, customerId?: positive integer or "unknown"200 { items: ChargerSession[], pagination { page, limit, total, totalPages }, filters { customers }, totals, totalsCapped }
GET /v2/admin/chargers/:chargerId/qrchargers:readQuery: connector?: integer[0,255]200 image/png binary, 300 px, Content-Disposition: inline, Cache-Control: no-store
GET /v2/admin/chargers/:chargerId/composite-scheduleschargers:readQuery: cursor?, limit?=20 (1..50), connectorId?200 { items: CompositeSchedule[], nextCursor: number or null }
GET /v2/admin/chargers/:chargerId/configurationchargers:readBody/query: none200 { items: ChargerConfiguration[] }; secret-like values are [REDACTED]
PATCH /v2/admin/chargers/:chargerId/configurationchargers:configurationBody: { key: string(1..50), value: string(0..500) }200 { status: string } where status is the charger/OCPP result
POST /v2/admin/chargers/:chargerId/configuration/reloadchargers:configurationBody: none200 { status: string }
GET /v2/admin/chargers/:chargerId/firmwarechargers:readBody/query: none200 { firmware: { status, notifiedAt, currentVersion, bootNotifiedAt } }
POST /v2/admin/chargers/:chargerId/firmwarechargers:firmwareBody: { url: HTTP-or-HTTPS URL, max 2048 characters }202 { status: string }
POST /v2/admin/chargers/:chargerId/commands/resetchargers:commandsBody: { resetType: "Soft" or "Hard" }200 { status: string }
POST /v2/admin/chargers/:chargerId/commands/availabilitychargers:commandsBody: { availabilityType: "Operative" or "Inoperative" }200 { status: string }
POST /v2/admin/chargers/:chargerId/commands/triggerchargers:commandsBody: { messageType: "BootNotification", "Heartbeat", "StatusNotification", or "MeterValues" }200 { status: string, connectorResults: { connectorId, status }[] }
POST /v2/admin/chargers/:chargerId/commands/unlockchargers:commandsBody: { connectorId: positive integer }200 { status: string }
POST /v2/admin/chargers/:chargerId/commands/composite-schedulechargers:commandsBody: { connectorId: nonnegative integer, durationSeconds?: integer[60,604800], chargingRateUnit?: "W" or "A" }200 { status: string, connectorId: number, compositeSchedule: CompositeSchedule or null }

Report endpoints

Method and pathScopeRequestSuccess response
GET /v2/admin/reports/datareports:readQuery: ReportFilters, opaque cursor?, limit?=50 (1..100)200 { items: ReportSession[], pageTotals, page { limit, nextCursor }, range { from, to, toExclusive: true } }
GET /v2/admin/reports/schedulereports:readBody/query: none200 { schedule: ReportSchedule or null }
PUT /v2/admin/reports/schedulereports:schedulesBody: strict ReportScheduleInput200 { schedule: ReportSchedule }
POST /v2/admin/reports/sendreports:sendBody: none; header Idempotency-Key is required200 { sent: true, format: "csv" or "pdf", rowCount: number, range { from, to } }; no saved schedule returns 409 REPORT_SCHEDULE_REQUIRED
GET /v2/admin/reports/measurementsreports:readQuery: required transactionLogId, opaque cursor?, limit?=500 (1..1000)200 { transactionLogId, measurements: { name, unit, lines[] }[], page { limit, nextCursor, sampleValuesTruncated, sampleLimitPerMeterValue: 64 } }
GET /v2/admin/reports/exportreports:exportQuery: ReportFilters, format?="csv" or "pdf"200 CSV/PDF binary with attachment filename, Cache-Control: private, no-store, X-Content-Type-Options: nosniff; more than 2,000 rows returns 422 REPORT_EXPORT_ROW_LIMIT

Tariff endpoints

Method and pathScopeRequestSuccess response
GET /v2/admin/tariffstariffs:readBody/query: none200 { items: Tariff[], lookups { currencies, biddingZones, currencyRates, componentTypes, seasons, tariffTypes } }
POST /v2/admin/tariffstariffs:createBody: TariffInput201 { tariff: Tariff }
GET /v2/admin/tariffs/:tariffIdtariffs:readBody/query: none200 { tariff: Tariff, lookups }
PATCH /v2/admin/tariffs/:tariffIdtariffs:updateBody: complete TariffInput200 { tariff: Tariff }
PUT /v2/admin/tariffs/:tariffId/componentstariffs:componentsBody: { components: TariffComponentInput[0..256] }200 { tariff: Tariff, components: TariffComponent[] }
DELETE /v2/admin/tariffs/:tariffIdtariffs:deleteBody: none204 empty; charging-record references return 409 TARIFF_CONFLICT
GET /v2/admin/tariffs/:tariffId/market-pricestariffs:readQuery: required startsAt nonnegative Unix timestamp200 { items: { id, value, currencyId, startsAt, endsAt, startsAtIso, endsAtIso, intervalMinutes }[], truncated: boolean }; at most 10,000 rows
GET /v2/admin/chargers/:chargerId/tariff-assignmentschargers:tariff-assignments + tariffs:readBody/query: none200 { items: TariffAssignment[], tariffs: Tariff[] }
POST /v2/admin/chargers/:chargerId/tariff-assignmentschargers:tariff-assignments + tariffs:assignBody: TariffAssignmentCreateInput; omitted connectorId or connectorId=0 means all connectors201 { assignments: TariffAssignment[] }
PATCH /v2/admin/chargers/:chargerId/tariff-assignments/:assignmentIdchargers:tariff-assignments + tariffs:assignBody: TariffAssignmentUpdateInput; connector is required and cannot be 0200 { assignment: TariffAssignment }
DELETE /v2/admin/chargers/:chargerId/tariff-assignments/:assignmentIdchargers:tariff-assignments + tariffs:assignBody: none204 empty

TariffAssignment contains id, chargerId, connectorId, a safe tariff/currency summary, createdAt, and updatedAt.

Charging-profile endpoints

Method and pathScopeRequestSuccess response
GET /v2/admin/charging-profileschargingProfiles:readBody/query: none200 { items: ChargingProfile[], lookups { locations, purposes, kinds, recurrencyKinds, rateUnits, allowedRateUnits } }
POST /v2/admin/charging-profileschargingProfiles:createBody: ChargingProfileCreate201 { profile: ChargingProfile }
GET /v2/admin/charging-profiles/:profileIdchargingProfiles:readBody/query: none200 { profile: ChargingProfile, lookups, isEditBlocked: boolean, usage { simpleChargingSchedule, smartSchedule, chargePoolChargepoint, isUsed } }
PATCH /v2/admin/charging-profiles/:profileIdchargingProfiles:updateBody: complete ChargingProfileInput200 { profile: ChargingProfile, ocppSync: OcppCommandResult[] }
PUT /v2/admin/charging-profiles/:profileId/schedulechargingProfiles:updateBody: ChargingScheduleInput200 { profile: ChargingProfile, schedule: SchedulePeriod[], ocppSync: OcppCommandResult[] }
DELETE /v2/admin/charging-profiles/:profileIdchargingProfiles:deleteBody: none204 empty only after all assigned chargers accept clear and state is revalidated; otherwise 409 and the profile remains
GET /v2/admin/chargers/:chargerId/profile-assignmentschargers:profile-assignments + chargingProfiles:readBody/query: none200 { items: ProfileAssignment[], profiles: ChargingProfile[] }
POST /v2/admin/chargers/:chargerId/profile-assignmentschargers:profile-assignments + chargingProfiles:assignBody: ProfileAssignmentInput201 { assignment: ProfileAssignment, ocpp: OcppCommandResult }
PATCH /v2/admin/chargers/:chargerId/profile-assignments/:assignmentIdchargers:profile-assignments + chargingProfiles:assignBody: ProfileAssignmentInput200 { assignment: ProfileAssignment, ocpp: OcppCommandResult }
DELETE /v2/admin/chargers/:chargerId/profile-assignments/:assignmentIdchargers:profile-assignments + chargingProfiles:assignBody: none204 empty after synchronized clear

ProfileAssignment contains its assignment ID, charger/connector IDs, and safe profile summary. OCPP result objects expose stable request/status information and never credentials.

User, RFID, access, limit, and local-user endpoints

Method and pathScopeRequestSuccess response
GET /v2/admin/usersusers:readQuery: status-matched cursor? (members: positive numeric; invitations: authenticated opaque i2.*; all: numeric legacy member continuation or authenticated opaque a2.* composite), limit?=50 (1..100), status?="all", "members", or "invitations"; optional X-Admin-User-Search header (max 100)200 { items: User[], invitations: Invitation[], chargers: ChargerSummary[], page { nextCursor, memberNextCursor, invitationNextCursor, limit } }; invitations are paginated and hydrated using the same normalized email expression so legacy casing/whitespace cannot hide rows; cursors are bound to the workspace and search filter, contain no readable email address, and must be returned unchanged; all cursors advance member and invitation streams independently
POST /v2/admin/usersusers:createBody: UserCreate; customer must already be registered201 { user: User }; an unknown email returns the non-enumerating 404 RESOURCE_NOT_FOUND body and should use invitations
POST /v2/admin/users/invitationsusers:invitations + users:access; plus users:rfid if rfid suppliedBody: InvitationInput200 or 201 { result }; attached result is { kind:"attached", user, accessChanged, rfidChanged }; pending result is { kind:"invited", email, name, maskedRfid, chargerIds, createdCount, emailSent, emailRetryReady, alreadyInvited }
POST /v2/admin/users/invitations/resendusers:invitationsBody: { email: email }200 { result: { targetedChargers, emailSent, emailRetryReady } }; recipient-global cooldown is enforced
DELETE /v2/admin/users/invitationsusers:invitationsBody: { email: email }204 empty
GET /v2/admin/users/:userIdusers:read + reports:readBody/query: none200 { user: UserDetail, sessions: UserSession[], totals { count, energyWh, durationSeconds }, window, limitTypes, chargers }; at most 200 sessions over 90 days
PATCH /v2/admin/users/:userIdusers:updateBody: { name: string(1..255) }200 { user: User }
DELETE /v2/admin/users/:userIdusers:deleteBody: none204 empty
GET /v2/admin/users/:userId/vehiclesusers:readQuery: numeric cursor?, limit?=50 (1..100)200 { items: Vehicle[], page { nextCursor, limit } }; vehicle DTO includes safe provider/status/model/telemetry fields
GET /v2/admin/users/:userId/rfidsusers:readBody/query: none200 { items: RFID[] }; UIDs are masked
POST /v2/admin/users/:userId/rfidsusers:rfidBody: { uid: string(1..36), name?: string or null }201 { rfid: RFID }; raw UID is not echoed
PATCH /v2/admin/users/:userId/rfids/:rfidIdusers:rfidBody: { name: string or null }200 { rfid: RFID }
DELETE /v2/admin/users/:userId/rfids/:rfidIdusers:rfidBody: none204 empty
GET /v2/admin/users/:userId/accessusers:readBody/query: none200 { access: Access }
PUT /v2/admin/users/:userId/accessusers:accessBody: AccessInput200 { access: Access }
DELETE /v2/admin/users/:userId/access/:accessIdusers:accessBody: none204 empty
GET /v2/admin/users/:userId/limitsusers:readBody/query: none200 { items: Limit[] }
POST /v2/admin/users/:userId/limitsusers:limitsBody: LimitCreate201 { limit: Limit }
PATCH /v2/admin/users/:userId/limits/:limitIdusers:limitsBody: LimitPatch, at least one property200 { limit: Limit }
DELETE /v2/admin/users/:userId/limits/:limitIdusers:limitsBody: none204 empty
GET /v2/admin/chargers/:chargerId/local-userschargers:read + users:readBody/query: none200 { charger: ChargerSummary, items: LocalUser[], invitations: { email }[], availableMembers: [] }; API deliberately omits the portal's broad available-member directory
POST /v2/admin/chargers/:chargerId/local-userschargers:local-users + users:accessBody: { customerId: positive integer, expiresAt?: RFC3339 or null }201 { localUser: LocalUserMutation }
POST /v2/admin/chargers/:chargerId/local-users/invitationschargers:local-users + users:invitations + users:accessBody: { email: email }200 or 201 { result }; existing customer: { invited:false, localUser: LocalUserMutation }; invitation: { invited:true, alreadyInvited, emailSent, emailRetryReady }
DELETE /v2/admin/chargers/:chargerId/local-users/invitationschargers:local-users + users:invitationsBody: { email: email }204 empty
PATCH /v2/admin/chargers/:chargerId/local-users/:localUserIdchargers:local-users + users:accessBody: { expiresAt: RFC3339 or null }200 { localUser: LocalUserUpdate }
DELETE /v2/admin/chargers/:chargerId/local-users/:localUserIdchargers:local-users + users:accessBody: none204 empty

The Tagless system user is protected from these operations. Invitation email failures return safe delivery state without leaking SMTP details; callers can retry when emailRetryReady is true.

Binary responses

Two endpoint families do not return JSON on success:

EndpointContent typeImportant headers
Charger QRimage/pngCache-Control: no-store, Content-Disposition: inline, X-Content-Type-Options: nosniff
Report exporttext/csv; charset=utf-8 or application/pdfCache-Control: private, no-store, Content-Disposition: attachment, X-Content-Type-Options: nosniff

Errors from binary endpoints are still JSON.