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