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": "dolore Duis",
"export": "esse adipisicing dolor nulla",
"title": "aliquip magna est ullamco",
"type": "dolore aliquip",
"summary": "tempor dolor in veniam",
"pdb": false,
"roles": [
"id",
"ut irure nostrud ea consequat",
"adipisicing in non"
],
"methods": [
{
"name": "cupidatat ad",
"description": "eiusmod non Excepteur consequat",
"summary": "in laborum",
"deprecated": false,
"roles": [
"aute culpa nisi eiusmod"
],
"route": {
"path": "quis Excepteur",
"verb": "magna"
},
"input": []
},
{
"name": "elit dolore amet aliqua",
"description": "dolor dolore aute non",
"summary": "magna",
"deprecated": true,
"roles": [
"id ipsum et"
],
"route": {
"path": "exercitation dolor incididunt",
"verb": "ullamco nostrud enim consequat"
},
"input": []
}
],
"views": [],
"src": "elit pariatur in Lorem ut",
"encrypted": true,
"version": "ut consectetur"
}
]
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"
}
}
}
}