v1

latestOpenAPI 3.0.12026-07-243686491.1 MB
Charge Points

Update publish settings for a charge point

Required scope: charge-points:write </br>Organization authorization: supported

put/api/v1/charge-points/{chargePointId}/publish-settings/{publishSettingId}

Path parameters

chargePointIdinteger required
publishSettingIdinteger required

Request body

identifierstring nullable

Public identifier (kept stable when omitted).

enabledboolean nullable

Toggle the public web link on or off. When omitted, the current value is preserved.

Example request

{
  "identifier": "abc123-uuid",
  "enabled": true
}

Response

Publish settings updated

idinteger nullable

Identifier of the publish settings record.

identifierstring nullable

Public-facing identifier used in the web URL.

enabledboolean

Whether the public web link is currently enabled.

web_urlstring nullable

Public web URL that exposes the charge point data when enabled.

Example response

{
  "id": 42,
  "identifier": "abc123-uuid",
  "enabled": true,
  "web_url": "https://app.monta.com/charge_point_publishes/abc123-uuid"
}