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

Get Profile

Request

Get details of a specific profile

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

Responses

Profile details

Bodyapplication/json
idinteger

Profile ID

Example: 1
tenantIdinteger

Tenant ID

displayNamestring

Profile display name

Example: "Default Profile"
dynamicboolean

Whether this is a dynamically generated profile

Default false
cpmsIdinteger

Associated CPMS backend ID

cpmsNamestring

Associated CPMS backend name

cpmsUrlstring

Associated CPMS backend URL

labIdinteger

Associated lab environment ID (if applicable)

createdAtstring(date-time)
updatedAtstring(date-time)
deletedAtstring(date-time)
Response
application/json
{ "id": 1, "tenantId": 0, "displayName": "Default Profile", "dynamic": false, "cpmsId": 0, "cpmsName": "string", "cpmsUrl": "string", "labId": 0, "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "deletedAt": "2019-08-24T14:15:22Z" }

Update Profile

Request

Update profile information

Security
bearerToken
Path
tenantstringrequired
profileIdintegerrequired
Bodyapplication/jsonrequired
displayNamestring
cpmsIdinteger
curl -i -X PUT \
  'https://guides.exolink.com/_mock/apis/exolink_api/tenant/{tenant}/profile/{profileId}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "displayName": "string",
    "cpmsId": 0
  }'

Responses

Profile updated successfully

Delete Profile

Request

Delete a configuration profile

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

Responses

Profile 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