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

Set User Role

Request

Set role for a specific user

Security
bearerToken
Path
tenantstringrequired
userIdstringrequired
Bodyapplication/jsonrequired
rolestringrequired

User role

curl -i -X PUT \
  'https://guides.exolink.com/_mock/apis/exolink_api/tenant/{tenant}/user/{userId}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "role": "string"
  }'

Responses

Role updated successfully

Remove User from Tenant

Request

Remove user from the tenant

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

Responses

User removed successfully

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

CPMS

CPMS management endpoints

Operations

Charger

Charger management endpoints

Operations

Lab

Lab management endpoints

Operations

Logs

Log endpoints

Operations

Domain

Custom Domain endpoints

Operations