For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Open sourceSupportFAQsDocs Home
DocumentationAPI ReferenceRelease notes
DocumentationAPI ReferenceRelease notes
  • Introduction
    • Overview
    • Authentication
  • Guides
    • Integration API routes
    • Operations Manager search APIs
    • Search API
    • URL query parameters
    • Use query parameters in API requests
  • Reference
        • GETDownload a public file from Itential Platform
        • GETGet authentication metadata
        • GETGet session time-to-live
        • GETGet system server ID
        • GETGet the authorization data for the logged in user
        • GETGet the principal document for the active user
        • GETGet the session document for the active user
        • GETGet the user profile for the active user
        • GETGet version
        • GETGet whether or not single sign on is enabled
        • GETList all application configs
        • POSTLog in and create a session in Itential Platform
        • GETLog in using single sign-on
        • GETLog out of Itential Platform
        • POSTSAML identity provider callback
        • GETTest SSO login configuration
        • PUTUpdate the user profile for the active user
LogoLogo
Open sourceSupportFAQsDocs Home
ReferenceAuthentication

List all application configs

GET
http://localhost:3000/config/apps
GET
/config/apps
$curl http://localhost:3000/config/apps \
> -u "<username>:<password>"
1[
2 {
3 "id": "string",
4 "export": "string",
5 "title": "string",
6 "type": "string",
7 "summary": "string",
8 "pdb": true,
9 "roles": [
10 "string"
11 ],
12 "methods": [
13 {
14 "name": "string",
15 "description": "string",
16 "summary": "string",
17 "deprecated": true,
18 "roles": [
19 "string"
20 ],
21 "route": {
22 "path": "string",
23 "verb": "string"
24 },
25 "input": [
26 {}
27 ],
28 "output": {}
29 }
30 ],
31 "views": [
32 {}
33 ],
34 "src": "string",
35 "encrypted": true,
36 "version": "string"
37 }
38]
Returns all application configs in Itential Platform.
Was this page helpful?
Previous

Log in and create a session in Itential Platform

Next
Built with

Authentication

AuthorizationBasic

Basic authentication of the form Basic <base64(username:password)>.

Response

Contains the configuration of all applications.
idstring
exportstring
titlestring
typestring
summarystring
pdbboolean
roleslist of strings
methodslist of objects
viewslist of objects
srcstring
encryptedboolean
versionstring

Errors

500
Internal Server Error