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