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

List IPs

Request

Get IP whitelist for the tenant

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

Responses

List of whitelisted IPs

Bodyapplication/jsonArray [
idinteger

IP entry ID

tenantIdinteger

Tenant ID

ipstring

IP address in CIDR notation

Example: "123.123.123.123/10"
createdAtstring(date-time)
]
Response
application/json
[ { "id": 0, "tenantId": 0, "ip": "123.123.123.123/10", "createdAt": "2019-08-24T14:15:22Z" } ]

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

CPMS

CPMS management endpoints

Operations

Charger

Charger management endpoints

Operations

Lab

Lab management endpoints

Operations

Logs

Log endpoints

Operations

Domain

Custom Domain endpoints

Operations