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

Create Invite

Request

Create invitation for new tenant user

Security
bearerToken
Path
tenantstringrequired
Bodyapplication/jsonrequired
receiverstring(email)required

Email address of the person to invite

rolestringrequired

Role to assign to the invited user

Enum"admin""user""viewer"
languagestringrequired

Language for the invitation email

Example: "en"
curl -i -X POST \
  'https://guides.exolink.com/_mock/apis/exolink_api/tenant/{tenant}/invite' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "receiver": "user@example.com",
    "role": "admin",
    "language": "en"
  }'

Responses

Invitation created successfully

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

CPMS

CPMS management endpoints

Operations

Charger

Charger management endpoints

Operations

Lab

Lab management endpoints

Operations

Logs

Log endpoints

Operations

Domain

Custom Domain endpoints

Operations