Skip to content

Exolink API (1.0.0)

Download OpenAPI description
Overview
Exolink Support
Languages
Servers
Mock server
https://guides.exolink.com/_mock/apis/exolink_api
https://api.exolink.cloud

Public

Public endpoints

Operations

Auth

Authentication and authorization endpoints

Operations

User

User management endpoints

Operations

Product

Product and pricing endpoints

Operations

Static

Static configuration endpoints

Tenant

Tenant management endpoints

Operations

Add IP

Request

Add IP to whitelist

Security
bearerToken
Path
tenantstringrequired
Bodyapplication/jsonrequired
ipstringrequired

IP address in CIDR notation

Example: "123.123.123.123/10"
curl -i -X POST \
  'https://guides.exolink.com/_mock/apis/exolink_api/tenant/{tenant}/ips' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "ip": "123.123.123.123/10"
  }'

Responses

IP added successfully

Delete IP

Request

Remove IP from whitelist

Security
bearerToken
Path
tenantstringrequired
ipIdintegerrequired
Bodyapplication/jsonrequired
ipsArray of stringsrequired

List of IPs to delete

curl -i -X DELETE \
  'https://guides.exolink.com/_mock/apis/exolink_api/tenant/{tenant}/ips/{ipId}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "ips": [
      "string"
    ]
  }'

Responses

IP deleted successfully

Get Metrics

Request

Get tenant usage metrics

Security
bearerToken
Path
tenantstringrequired
curl -i -X GET \
  'https://guides.exolink.com/_mock/apis/exolink_api/tenant/{tenant}/metrics' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Tenant metrics

Bodyapplication/json
messageCountinteger

Total OCPP messages processed

chargerCountinteger

Total number of chargers

activeConnectionsinteger

Currently active charger connections

dataTransferredinteger

Total data transferred in bytes

Response
application/json
{ "messageCount": 0, "chargerCount": 0, "activeConnections": 0, "dataTransferred": 0 }

CPMS

CPMS management endpoints

Operations

Charger

Charger management endpoints

Operations

Lab

Lab management endpoints

Operations

Logs

Log endpoints

Operations

Domain

Custom Domain endpoints

Operations