Public endpoints
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
- Mock serverhttps://guides.exolink.com/_mock/apis/exolink_api/user/{userId}
- https://api.exolink.cloud/user/{userId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://guides.exolink.com/_mock/apis/exolink_api/user/{userId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "userId": "string", "username": "string", "email": "string", "givenName": "string", "familyName": "string", "mfa": true, "perms": { "property1": "string", "property2": "string" }, "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z" }
- Mock serverhttps://guides.exolink.com/_mock/apis/exolink_api/user/{userId}
- https://api.exolink.cloud/user/{userId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://guides.exolink.com/_mock/apis/exolink_api/user/{userId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"givenName": "string",
"familyName": "string",
"email": "user@example.com",
"oldPassword": "pa$$word",
"newPassword": "pa$$word",
"mfa": true,
"password": "pa$$word"
}'- Mock serverhttps://guides.exolink.com/_mock/apis/exolink_api/user/{userId}
- https://api.exolink.cloud/user/{userId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://guides.exolink.com/_mock/apis/exolink_api/user/{userId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"password": "string"
}'- Mock serverhttps://guides.exolink.com/_mock/apis/exolink_api/user/{userId}/logout
- https://api.exolink.cloud/user/{userId}/logout
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://guides.exolink.com/_mock/apis/exolink_api/user/{userId}/logout' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'- Mock serverhttps://guides.exolink.com/_mock/apis/exolink_api/user/{userId}/confirm
- https://api.exolink.cloud/user/{userId}/confirm
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://guides.exolink.com/_mock/apis/exolink_api/user/{userId}/confirm' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"code": "string"
}'- Mock serverhttps://guides.exolink.com/_mock/apis/exolink_api/user/{userId}/settings
- https://api.exolink.cloud/user/{userId}/settings
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://guides.exolink.com/_mock/apis/exolink_api/user/{userId}/settings' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "language": "en", "region": "US", "defaultTenant": "string", "default": { "tenant": "string" } }
- Mock serverhttps://guides.exolink.com/_mock/apis/exolink_api/user/{userId}/settings
- https://api.exolink.cloud/user/{userId}/settings
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://guides.exolink.com/_mock/apis/exolink_api/user/{userId}/settings' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"language": "string",
"region": "string",
"defaultTenant": "string"
}'- Mock serverhttps://guides.exolink.com/_mock/apis/exolink_api/user/{userId}/tenant
- https://api.exolink.cloud/user/{userId}/tenant
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://guides.exolink.com/_mock/apis/exolink_api/user/{userId}/tenant' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
[ { "id": 0, "name": "string", "domainPrefix": "string", "role": "admin" } ]
- Mock serverhttps://guides.exolink.com/_mock/apis/exolink_api/user/{userId}/tenant
- https://api.exolink.cloud/user/{userId}/tenant
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://guides.exolink.com/_mock/apis/exolink_api/user/{userId}/tenant' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"password": "string"
}'Response
application/json
{ "id": 1, "name": "My Company", "domainPrefix": "abc123", "stripeCustomerId": "string", "connectUrl": "wss://abc123.broker.exolink.cloud/", "customDomain": "wss://chargers.company.com/", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "deletedAt": "2019-08-24T14:15:22Z" }