Summary
Get all application configs in IAP.
Description
Get all application configs in IAP.
Route
GET /config/apps
Roles
Parameters
Name | Type | Required | Description |
---|---|---|---|
This method has no parameters |
null
{ "type": "object", "properties": {}, "required": [], "additionalProperties": false }
Return
Name | Type | Description |
---|---|---|
result | object | Contains the configuration of all applications. |
[ { "id": "pariatur ea aliquip ad", "export": "mollit nulla nostrud culpa ea", "title": "ut Duis labore", "type": "consequat", "summary": "aliqua sunt nulla commodo", "pdb": true, "roles": [ "ad", "officia reprehenderit Duis irure do", "aute consequat do" ], "methods": [ { "name": "consequat ut consectetur", "description": "officia", "summary": "sed Excepteur quis et", "deprecated": false, "roles": [ "irure", "occaecat", "cillum aliqua dolor est consectetur", "ad ea dolore dolor", "fugiat aute" ], "route": { "path": "consequat anim nisi aute", "verb": "dolor" }, "input": [] }, { "name": "magna reprehenderit", "description": "id fugiat dolor ex", "summary": "ea dolor anim", "deprecated": true, "roles": [ "pariatur ex occaecat", "ipsum ad", "nulla eiusmod", "Lorem exercitation", "cupidatat ad incididunt veniam pariatur" ], "route": { "path": "cupidatat irure Lorem", "verb": "Lorem reprehenderit mollit" }, "input": [] }, { "name": "Excepteur ex enim occaecat sunt", "description": "reprehenderit commodo aliquip cillum", "summary": "ut ad qui esse", "deprecated": true, "roles": [ "minim", "ex occaecat consectetur", "sit", "sint" ], "route": { "path": "amet sed", "verb": "Excepteur veniam sed" }, "input": [] }, { "name": "ea in", "description": "nisi elit", "summary": "sed Duis non magna", "deprecated": true, "roles": [ "cillum officia", "velit amet ullamco id sunt", "commodo ut dolore sed veniam", "cillum ea magna irure" ], "route": { "path": "sit cillum ad dolore esse", "verb": "esse minim enim exercitation ea" }, "input": [] } ], "views": [], "src": "ut", "encrypted": false, "version": "exercitation" }, { "id": "reprehenderit cupidatat elit incididunt", "export": "consectetur officia", "title": "in", "type": "eu officia", "summary": "incididunt aliqua anim", "pdb": true, "roles": [ "esse in consequat aliquip Duis" ], "methods": [ { "name": "minim", "description": "mollit", "summary": "Ut", "deprecated": true, "roles": [ "Ut sunt eiusmod", "magna laborum aliquip anim", "elit non et", "eiusmod sit irure ipsum proident" ], "route": { "path": "cillum aute non", "verb": "cillum adipisicing cupidatat" }, "input": [] } ], "views": [], "src": "ad aliquip qui Ut", "encrypted": true, "version": "ut deserunt" }, { "id": "Duis", "export": "eu dolore officia", "title": "dolore reprehenderit sunt cillum", "type": "enim aliqua", "summary": "aliqua", "pdb": true, "roles": [ "tempor Duis" ], "methods": [ { "name": "dolor officia pariatur incididunt ut", "description": "Excepteur", "summary": "enim esse occaecat", "deprecated": true, "roles": [ "ipsum", "aliquip", "in minim id culpa do" ], "route": { "path": "ipsum dolor proident in deserunt", "verb": "ut anim ut Duis velit" }, "input": [] }, { "name": "magna dolore pariatur dolore", "description": "sunt dolore", "summary": "elit ut magna", "deprecated": false, "roles": [ "culpa anim sint commodo", "ex", "mollit incididunt cillum ipsum", "sit in" ], "route": { "path": "qui consequat nulla Lorem", "verb": "ut elit" }, "input": [] }, { "name": "aute", "description": "sint velit incididunt enim aliquip", "summary": "id laborum", "deprecated": false, "roles": [ "dolor exercitation consectetur proident", "elit ex id qui exercitation" ], "route": { "path": "et ut officia Excepteur mollit", "verb": "adipisicing laboris ut aliquip elit" }, "input": [] }, { "name": "nulla aliquip sint", "description": "dolor mollit tempor", "summary": "velit exercitation irure voluptate", "deprecated": true, "roles": [ "eiusmod dolore ea in quis" ], "route": { "path": "dolore quis labore voluptate", "verb": "non ex pariatur amet" }, "input": [] }, { "name": "sit exercitation enim ex", "description": "in ad ea anim nisi", "summary": "cupidatat amet labore", "deprecated": true, "roles": [ "enim sint in elit", "anim pariatur", "in labore exercitation", "officia Excepteur dolor", "officia voluptate" ], "route": { "path": "nisi ut", "verb": "pariatur esse" }, "input": [] } ], "views": [], "src": "eu", "encrypted": true, "version": "in" } ]
{ "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" } } } }