Summary
Get all application configs in IAP.
Description
Get all application configs in IAP.
Route
GET /config/apps
Roles
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
This method has no parameters |
Copied to Clipboard
{
"type": "object",
"properties": {},
"required": [],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
result |
object |
Contains the configuration of all applications. |
Copied to Clipboard
[
{
"id": "anim officia id in",
"export": "anim ea aliquip",
"title": "minim dolore",
"type": "nostrud cupidatat incididunt",
"summary": "consectetur",
"pdb": false,
"roles": [
"ut",
"in laboris",
"dolor"
],
"methods": [
{
"name": "eiusmod ad ut dolor",
"description": "aliquip Lorem est qui minim",
"summary": "reprehenderit minim ullamco cillum id",
"deprecated": true,
"roles": [
"dolor qui",
"id",
"esse in",
"commodo sint Duis in"
],
"route": {
"path": "do veniam",
"verb": "magna id dolore eu"
},
"input": []
},
{
"name": "in quis",
"description": "deserunt veniam cillum nisi elit",
"summary": "sunt ut id ut ullamco",
"deprecated": true,
"roles": [
"eiusmod dolore veniam proident dolor",
"in consectetur deserunt dolore sunt",
"commodo",
"ipsum fugiat velit dolore",
"proident in dolore"
],
"route": {
"path": "do ex",
"verb": "fugiat dolor cupidatat anim"
},
"input": []
}
],
"views": [],
"src": "laborum",
"encrypted": false,
"version": "ut deserunt"
},
{
"id": "sint sed Ut eiusmod sunt",
"export": "aliquip",
"title": "culpa",
"type": "ad nisi nostrud",
"summary": "aliqua",
"pdb": false,
"roles": [
"occaecat minim",
"exercitation",
"reprehenderit",
"laboris commodo"
],
"methods": [
{
"name": "mollit sed",
"description": "dolor",
"summary": "sint ad",
"deprecated": false,
"roles": [
"sed amet dolor",
"qui proident",
"incididunt sunt elit qui voluptate",
"ad officia sint"
],
"route": {
"path": "ex ullamco adipisicing",
"verb": "amet sit nulla"
},
"input": []
}
],
"views": [],
"src": "sit ex dolor quis",
"encrypted": false,
"version": "nisi dolor"
}
]
Copied to Clipboard
{
"title": "result",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"title": "id",
"type": "string"
},
"export": {
"title": "export",
"type": "string"
},
"title": {
"title": "title",
"type": "string"
},
"type": {
"title": "type",
"type": "string"
},
"summary": {
"title": "summary",
"type": "string"
},
"pdb": {
"title": "pdb",
"type": "boolean"
},
"roles": {
"title": "roles",
"type": "array",
"items": {
"type": "string"
}
},
"methods": {
"title": "methods",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"title": "name",
"type": "string"
},
"description": {
"title": "description",
"type": "string"
},
"summary": {
"title": "summary",
"type": "string"
},
"deprecated": {
"title": "deprecated",
"type": "boolean"
},
"roles": {
"title": "roles",
"type": "array",
"items": {
"type": "string"
}
},
"route": {
"title": "route",
"type": "object",
"properties": {
"path": {
"title": "path",
"type": "string"
},
"verb": {
"title": "verb",
"type": "string"
}
}
},
"input": {
"title": "input",
"type": "array",
"items": {
"type": "object"
}
},
"output": {
"title": "output",
"type": "object"
}
}
}
},
"views": {
"title": "views",
"type": "array",
"items": {
"type": "object"
}
},
"src": {
"title": "src",
"type": "string"
},
"encrypted": {
"title": "encrypted",
"type": "boolean"
},
"version": {
"title": "version",
"type": "string"
}
}
}
}