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": "mollit voluptate tempor",
"export": "fugiat",
"title": "sit",
"type": "exercitation",
"summary": "esse ullamco velit anim",
"pdb": false,
"roles": [
"dolore non ex",
"cillum"
],
"methods": [
{
"name": "Ut",
"description": "Excepteur culpa ipsum aliqua",
"summary": "nulla sed",
"deprecated": true,
"roles": [
"officia in sint",
"aliqua"
],
"route": {
"path": "aliquip cupidatat officia",
"verb": "do sed culpa aute in"
},
"input": []
},
{
"name": "pariatur minim",
"description": "officia anim culpa",
"summary": "ea Excepteur",
"deprecated": false,
"roles": [
"proident velit",
"fugiat Ut pariatur ullamco incididunt",
"ad"
],
"route": {
"path": "tempor ut do veniam anim",
"verb": "culpa magna ipsum incididunt qui"
},
"input": []
},
{
"name": "aliquip incididunt non",
"description": "reprehenderit in dolore",
"summary": "veniam incididunt ipsum consequat sed",
"deprecated": true,
"roles": [
"ut Excepteur dolore",
"Duis reprehenderit in ea",
"sint",
"veniam",
"voluptate"
],
"route": {
"path": "do consectetur",
"verb": "enim fugiat amet cillum Lorem"
},
"input": []
},
{
"name": "ut id",
"description": "ea et nisi",
"summary": "labore",
"deprecated": false,
"roles": [
"ut Ut sunt magna",
"laboris",
"mollit",
"ex"
],
"route": {
"path": "aute fugiat esse",
"verb": "ad"
},
"input": []
}
],
"views": [],
"src": "cupidatat nulla non sed adipisicing",
"encrypted": false,
"version": "fugiat anim veniam"
},
{
"id": "deserunt fugiat sunt ut dolore",
"export": "Lorem veniam incididunt",
"title": "ex proident aute et velit",
"type": "ex commodo veniam exercitation consequat",
"summary": "minim enim nisi id",
"pdb": false,
"roles": [
"tempor laboris qui deserunt",
"anim in dolor mollit et"
],
"methods": [
{
"name": "quis esse voluptate ea do",
"description": "minim Duis anim id ipsum",
"summary": "quis culpa",
"deprecated": false,
"roles": [
"irure",
"sed nulla veniam sunt"
],
"route": {
"path": "dolore mollit reprehenderit veniam",
"verb": "irure ut"
},
"input": []
}
],
"views": [],
"src": "reprehenderit ad elit quis",
"encrypted": true,
"version": "veniam sint nisi"
}
]
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"
}
}
}
}