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": "labore adipisicing qui sunt",
"export": "in",
"title": "ut laborum amet ut",
"type": "ea culpa dolor sunt",
"summary": "ut laborum",
"pdb": false,
"roles": [
"incididunt",
"dolor tempor sunt exercitation cillum",
"aliqua pariatur eu aute",
"nulla commodo"
],
"methods": [
{
"name": "Lorem commodo sunt velit",
"description": "consectetur aliqua est velit aute",
"summary": "aute consectetur et ullamco pariatur",
"deprecated": false,
"roles": [
"proident consectetur",
"deserunt Lorem in consequat sint",
"Ut magna ut",
"id cupidatat",
"eiusmod tempor amet nulla"
],
"route": {
"path": "veniam non in aliquip",
"verb": "in mollit sint anim aliquip"
},
"input": []
}
],
"views": [],
"src": "occaecat incididunt sunt irure",
"encrypted": false,
"version": "non in ex aliqua"
}
]
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"
}
}
}
}