Skip to content

Device API

The Device API owns the canonical device catalog (global certified catalog + tenant overrides) and manufacturing/setup flows.

Base URL

https://api.ampnexus.app/device/v1

API Reference

Explore the full API specification using the interactive Swagger UI:

Manufacturing Setup

Setup a new charge point

POST /charge-point/setup

Notes: - The preferred request field is macAddress. - For backwards compatibility, the endpoint also accepts mac_address.

Example (preferred)

curl -X POST \
  -H "Content-Type: application/json" \
  -d '{"macAddress":"AA:BB:CC:DD:EE:FF","sku":"PS-7S"}' \
  "https://api.ampnexus.app/device/v1/charge-point/setup"

Example (legacy)

curl -X POST \
  -H "Content-Type: application/json" \
  -d '{"mac_address":"AA:BB:CC:DD:EE:FF","sku":"PS-7S"}' \
  "https://api.ampnexus.app/device/v1/charge-point/setup"