v1

latestOpenAPI 3.0.12026-07-243686491.1 MB
Charge Points

Create publish settings for a charge point

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

post/api/v1/charge-points/{chargePointId}/publish-settings

Path parameters

chargePointIdinteger 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 created

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"
}