@itentialopensource/adapter-accedian_skylight
Version:
This adapter integrates with system described as: accedianSkylight.
2,637 lines • 183 kB
JSON
{
"openapi": "3.0.2",
"info": {
"title": "Accedian Skylight",
"version": "1.0.0"
},
"paths": {
"/endpoint": {
"get": {
"operationId": "getEndpoints",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
}
}
},
"/endpoint/{id}": {
"delete": {
"operationId": "deleteEndpoint",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
}
]
}
},
"/endpoint/{id}/description": {
"put": {
"operationId": "alterEndpointDescription",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
},
{
"name": "description",
"in": "query",
"required": false,
"schema": {
"title": "description",
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
},
"/endpoint/{id}/endpointhead": {
"get": {
"operationId": "getEndpointInformation",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
}
]
}
},
"/endpoint/{id}/name": {
"put": {
"operationId": "changeNameOfEndpoint",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
},
{
"name": "name",
"in": "query",
"required": false,
"schema": {
"title": "name",
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
},
"/endpoint/{id}/operate": {
"put": {
"operationId": "operationOnEndpoint",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
},
{
"name": "action",
"in": "query",
"required": false,
"schema": {
"title": "action",
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
},
"/endpoint/type/{type}": {
"get": {
"operationId": "getInformationOnEndpointsByType",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "type",
"in": "path",
"required": true,
"schema": {
"title": "type",
"type": "string"
}
}
]
}
},
"/endpoint/reflector": {
"post": {
"operationId": "createNewReflectorEndpoint",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
},
"/endpoint/reflector/{id}": {
"get": {
"operationId": "getReflectorEndpointByName",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
}
]
}
},
"/endpoint/reflector/{id}/address": {
"put": {
"operationId": "changeIpAddressUnmanagedEndpoint",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
},
{
"name": "ipAddress",
"in": "query",
"required": false,
"schema": {
"title": "ipAddress",
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
},
"/endpoint/reflector/{id}/capability": {
"put": {
"operationId": "changeCapabilityUnmanagedEndpoint",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
},
{
"name": "capabilities",
"in": "query",
"required": false,
"schema": {
"title": "capabilities",
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
},
"/endpoint/reflector/{id}/mac": {
"get": {
"operationId": "getReflectorEndpointByMAC",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
}
]
}
},
"/endpoint/reflector/{id}/twampcp": {
"put": {
"operationId": "changeTwampControlProtocolSettings",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
},
{
"name": "twampCp",
"in": "query",
"required": false,
"schema": {
"title": "twampCp",
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
},
"delete": {
"operationId": "deleteTwampCp",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
}
]
}
},
"/endpoint/supervision": {
"post": {
"operationId": "createSupervisonEndpoint",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
},
"/endpoint/supervision/{id}": {
"get": {
"operationId": "getSupervisionEndpointByName",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
}
]
}
},
"/session": {
"get": {
"operationId": "getSessionInformation",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
}
}
},
"/session/{id}": {
"delete": {
"operationId": "deleteSession",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
}
]
}
},
"/session/{id}/description": {
"put": {
"operationId": "alterSessionDescription",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
},
{
"name": "description",
"in": "query",
"required": false,
"schema": {
"title": "description",
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
},
"/session/{id}/head": {
"get": {
"operationId": "getSessionHeadInformationByName",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
}
]
}
},
"/session/{id}/lastrr": {
"get": {
"operationId": "getSessionLastRR",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
}
]
}
},
"/session/{id}/name": {
"put": {
"operationId": "alterTerminatedNotResolvedSessionName",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
},
"/session/{id}/operate": {
"put": {
"operationId": "operationOnSession",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
},
{
"name": "action",
"in": "query",
"required": false,
"schema": {
"title": "action",
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
},
"/session/{id}/stream": {
"put": {
"operationId": "alterTerminatedNotResolvedSessionStream",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
},
{
"name": "stream",
"in": "query",
"required": false,
"schema": {
"title": "stream",
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
},
"/session/echo": {
"post": {
"operationId": "createEchoSession",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
},
"/session/echo/{id}": {
"get": {
"operationId": "getEchoSessionInformation",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
}
]
}
},
"/session/ethoam": {
"post": {
"operationId": "createEthOamSession",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
},
"/session/ethoam/{id}": {
"get": {
"operationId": "getEthOamSessionInformation",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
}
]
}
},
"/session/twamp": {
"post": {
"operationId": "createTWAMPSession",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
},
"/session/twamp/{id}": {
"get": {
"operationId": "getTWAMPSessionInformation",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
}
]
}
},
"/sla": {
"post": {
"operationId": "createSLA",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
},
"get": {
"operationId": "getSLAs",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
}
}
},
"/sla/{id}": {
"delete": {
"operationId": "deleteSLA",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
}
]
}
},
"/sla/{id}/session": {
"put": {
"operationId": "putSessionReferenceToSLA",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
},
{
"name": "sessionRef",
"in": "query",
"required": false,
"schema": {
"title": "sessionRef",
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
},
"get": {
"operationId": "getSessionReferencesForSLA",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
}
]
}
},
"/sla/{id}/session/{ref}": {
"delete": {
"operationId": "deleteSessionReferenceFromSLA",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
"title": "id",
"type": "string"
}
},
{
"name": "ref",
"in": "path",
"required": true,
"schema": {
"title": "ref",
"type": "string"
}
}
]
}
},
"/version": {
"get": {
"operationId": "getSystemVersion",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
}
}
},
"/orchestrate/v3/agents": {
"get": {
"operationId": "getApiOrchestrateV3Agents",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "page",
"in": "query",
"required": false,
"schema": {
"title": "page",
"type": "number"
}
},
{
"name": "limit",
"in": "query",
"required": false,
"schema": {
"title": "limit",
"type": "number"
}
}
]
}
},
"/orchestrate/v3/agents/{agentId}": {
"get": {
"operationId": "getApiOrchestrateV3AgentsAgentId",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "agentId",
"in": "path",
"required": true,
"schema": {
"title": "agentId",
"type": "string"
}
}
]
},
"delete": {
"operationId": "deleteApiOrchestrateV3AgentsAgentId",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "agentId",
"in": "path",
"required": true,
"schema": {
"title": "agentId",
"type": "string"
}
}
]
}
},
"/orchestrate/v3/agents/configuration": {
"post": {
"operationId": "postApiOrchestrateV3AgentsConfiguration",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "page",
"in": "query",
"required": false,
"schema": {
"title": "page",
"type": "number"
}
},
{
"name": "limit",
"in": "query",
"required": false,
"schema": {
"title": "limit",
"type": "number"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
},
"get": {
"operationId": "getApiOrchestrateV3AgentsConfiguration",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "page",
"in": "query",
"required": false,
"schema": {
"title": "page",
"type": "number"
}
},
{
"name": "limit",
"in": "query",
"required": false,
"schema": {
"title": "limit",
"type": "number"
}
}
]
}
},
"/orchestrate/v3/agents/configuration/{agentId}": {
"get": {
"operationId": "getApiOrchestrateV3AgentsConfigurationAgentId",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "agentId",
"in": "path",
"required": true,
"schema": {
"title": "agentId",
"type": "string"
}
}
]
},
"put": {
"operationId": "putApiOrchestrateV3AgentsConfigurationAgentId",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "agentId",
"in": "path",
"required": true,
"schema": {
"title": "agentId",
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
},
"delete": {
"operationId": "deleteApiOrchestrateV3AgentsConfigurationAgentId",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "agentId",
"in": "path",
"required": true,
"schema": {
"title": "agentId",
"type": "string"
}
}
]
}
},
"/orchestrate/v3/agents/{agentId}/command": {
"post": {
"operationId": "postApiOrchestrateV3AgentsAgentIdCommand",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "agentId",
"in": "path",
"required": true,
"schema": {
"title": "agentId",
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
},
"/orchestrate/v3/agents/sessions": {
"get": {
"operationId": "getApiOrchestrateV3AgentsSessions",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "page",
"in": "query",
"required": false,
"schema": {
"title": "page",
"type": "number"
}
},
{
"name": "limit",
"in": "query",
"required": false,
"schema": {
"title": "limit",
"type": "number"
}
}
]
},
"post": {
"operationId": "postApiOrchestrateV3AgentsSessions",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "page",
"in": "query",
"required": false,
"schema": {
"title": "page",
"type": "number"
}
},
{
"name": "limit",
"in": "query",
"required": false,
"schema": {
"title": "limit",
"type": "number"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
},
"/orchestrate/v3/agents/session": {
"post": {
"operationId": "postApiOrchestrateV3AgentsSession",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
},
"put": {
"operationId": "putApiOrchestrateV3AgentsSession",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
},
"/orchestrate/v3/agents/session/{sessionId}": {
"get": {
"operationId": "getApiOrchestrateV3AgentsSessionSessionId",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "sessionId",
"in": "path",
"required": true,
"schema": {
"title": "sessionId",
"type": "string"
}
}
]
},
"delete": {
"operationId": "deleteApiOrchestrateV3AgentsSessionSessionId",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "sessionId",
"in": "path",
"required": true,
"schema": {
"title": "sessionId",
"type": "string"
}
}
]
}
},
"/orchestrate/v3/agents/sessions/{agentId}": {
"get": {
"operationId": "getApiOrchestrateV3AgentsSessionsAgentId",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "agentId",
"in": "path",
"required": true,
"schema": {
"title": "agentId",
"type": "string"
}
}
]
},
"delete": {
"operationId": "deleteApiOrchestrateV3AgentsSessionsAgentId",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "agentId",
"in": "path",
"required": true,
"schema": {
"title": "agentId",
"type": "string"
}
}
]
}
},
"/orchestrate/v3/agents/sessionstatus/{sessionId}": {
"get": {
"operationId": "getApiOrchestrateV3AgentsSessionstatusSessionId",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "sessionId",
"in": "path",
"required": true,
"schema": {
"title": "sessionId",
"type": "string"
}
}
]
}
},
"/orchestrate/v3/agents/{agentId}/secrets": {
"post": {
"operationId": "postApiOrchestrateV3AgentsAgentIdSecrets",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "agentId",
"in": "path",
"required": true,
"schema": {
"title": "agentId",
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
},
"/openid-configuration/{clientName}": {
"get": {
"operationId": "openIDConfiguration",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "clientName",
"in": "path",
"required": true,
"schema": {
"title": "clientName",
"type": "string"
}
}
]
}
},
"/openid-token/{clientName}": {
"post": {
"operationId": "openIDToken",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "clientName",
"in": "path",
"required": true,
"schema": {
"title": "clientName",
"type": "string"
}
},
{
"name": "grantType",
"in": "query",
"required": true,
"schema": {
"title": "grantType",
"type": "string"
}
},
{
"name": "code",
"in": "query",
"required": true,
"schema": {
"title": "code",
"type": "string"
}
},
{
"name": "clientId",
"in": "query",
"required": true,
"schema": {
"title": "clientId",
"type": "string"
}
},
{
"name": "clientSecret",
"in": "query",
"required": true,
"schema": {
"title": "clientSecret",
"type": "string"
}
}
]
}
},
"/openid-auth": {
"get": {
"operationId": "openIDAuth",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "clientId",
"in": "query",
"required": true,
"schema": {
"title": "clientId",
"type": "string"
}
},
{
"name": "redirectUri",
"in": "query",
"required": true,
"schema": {
"title": "redirectUri",
"type": "string"
}
},
{
"name": "responseType",
"in": "query",
"required": true,
"schema": {
"title": "responseType",
"type": "string"
}
},
{
"name": "state",
"in": "query",
"required": true,
"schema": {
"title": "state",
"type": "string"
}
},
{
"name": "delegatedclientid",
"in": "query",
"required": false,
"schema": {
"title": "delegatedclientid",
"type": "string"
}
},
{
"name": "scope",
"in": "query",
"required": true,
"schema": {
"title": "scope",
"type": "string"
}
}
]
}
},
"/saml-redirect": {
"get": {
"operationId": "samlRedirect",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "clientName",
"in": "query",
"required": true,
"schema": {
"title": "clientName",
"type": "string"
}
}
]
}
},
"/saml-callback": {
"post": {
"operationId": "samlCallback",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "sAMLResponse",
"in": "query",
"required": true,
"schema": {
"title": "sAMLResponse",
"type": "string"
}
},
{
"name": "relayState",
"in": "query",
"required": true,
"schema": {
"title": "relayState",
"type": "string"
}
}
]
}
},
"/saml-metadata/{clientName}": {
"get": {
"operationId": "samlSpMetadata",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "clientName",
"in": "path",
"required": true,
"schema": {
"title": "clientName",
"type": "string"
}
}
]
}
},
"/v1/grant": {
"post": {
"operationId": "createGrantingTicket",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "username",
"in": "query",
"required": true,
"schema": {
"title": "username",
"type": "string"
}
},
{
"name": "password",
"in": "query",
"required": true,
"schema": {
"title": "password",
"type": "string"
}
},
{
"name": "service",
"in": "query",
"required": true,
"schema": {
"title": "service",
"type": "string"
}
}
]
}
},
"/v1/service": {
"post": {
"operationId": "createServiceTicket",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "grantingTicket",
"in": "query",
"required": true,
"schema": {
"title": "grantingTicket",
"type": "string"
}
},
{
"name": "service",
"in": "query",
"required": true,
"schema": {
"title": "service",
"type": "string"
}
}
]
}
},
"/v1/validate": {
"post": {
"operationId": "validateServiceTicket",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "ticket",
"in": "query",
"required": true,
"schema": {
"title": "ticket",
"type": "string"
}
},
{
"name": "service",
"in": "query",
"required": true,
"schema": {
"title": "service",
"type": "string"
}
},
{
"name": "format",
"in": "query",
"required": true,
"schema": {
"title": "format",
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
},
"/v1/auth/users": {
"post": {
"operationId": "createUser",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
},
"get": {
"operationId": "getAllUsers",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
}
}
},
"/v1/auth/users/{userId}": {
"put": {
"operationId": "updateUser",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "userId",
"in": "path",
"required": true,
"schema": {
"title": "userId",
"type": "number"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
},
"patch": {
"operationId": "updateUserProperties",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "userId",
"in": "path",
"required": true,
"schema": {
"title": "userId",
"type": "number"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
},
"get": {
"operationId": "getUser",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "userId",
"in": "path",
"required": true,
"schema": {
"title": "userId",
"type": "number"
}
}
]
},
"delete": {
"operationId": "deleteUser",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "userId",
"in": "path",
"required": true,
"schema": {
"title": "userId",
"type": "number"
}
}
]
}
},
"/v1/auth/users/{userId}/password": {
"patch": {
"operationId": "resetPassword",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "userId",
"in": "path",
"required": true,
"schema": {
"title": "userId",
"type": "number"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
},
"/v1/auth/users/{userId}/email": {
"patch": {
"operationId": "changeEmailAddress",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "userId",
"in": "path",
"required": true,
"schema": {
"title": "userId",
"type": "number"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
},
"/v1/auth/me": {
"patch": {
"operationId": "updateAuthenticatedUserProperties",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
},
"get": {
"operationId": "getAuthenticatedUser",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
}
},
"delete": {
"operationId": "deleteAuthenticatedUser",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
}
}
},
"/v1/auth/me/password": {
"patch": {
"operationId": "updateAuthenticatedUserPassword",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
},
"/v1/auth/me/email": {
"patch": {
"operationId": "changeAuthenticatedUserEmailAddress",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
},
"/v1/onboarding/{onboardingToken}": {
"get": {
"operationId": "getUserByToken",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"title": "result",
"type": "object"
}
}
}
}
},
"parameters": [
{
"name": "onboardingToken",
"in": "path",
"required": true,
"schema": {
"title": "onboardingToken",
"type": "string"
}
}
]
}
},
"/v1/onboarding/password": {
"post": {
"operationId": "setUserPassword",
"responses": {
"200": {
"