Open API Spec
{
"openapi": "3.1.0",
"info": {
"title": "Settings",
"version": "4.0"
},
"servers": [
{
"url": "https://{yourCompany}.agiliron.net/agiliron/api-40/Settings",
"variables": {
"yourCompany": {
"default": "yourCompany"
}
}
}
],
"components": {
"securitySchemes": {
"sec0": {
"type": "apiKey",
"in": "query",
"name": "key",
"x-default": "0"
},
"sec1": {
"type": "apiKey",
"in": "header",
"name": "apiKey",
"x-default": "0"
}
}
},
"security": [
{
"sec0": [],
"sec1": []
}
],
"paths": {
"": {
"get": {
"summary": "Read Settings",
"description": "",
"operationId": "read-settings",
"parameters": [
{
"name": "settingName",
"in": "query",
"schema": {
"type": "string"
}
},
{
"name": "module",
"in": "query",
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "200",
"content": {
"application/json": {
"examples": {
"Result": {
"value": "{}"
}
},
"schema": {
"type": "object",
"properties": {}
}
}
}
},
"400": {
"description": "400",
"content": {
"application/json": {
"examples": {
"Result": {
"value": "{}"
}
},
"schema": {
"type": "object",
"properties": {}
}
}
}
}
},
"deprecated": false
}
}
},
"x-readme": {
"headers": [],
"explorer-enabled": true,
"proxy-enabled": true
},
"x-readme-fauxas": true
}
Updated 2 months ago