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
    • Operations Manager search APIs
    • Search API
    • URL query parameters
    • Use query parameters in API requests
  • Reference
        • GETGet application
        • GETList all applications
        • GETList changelogs
        • PUTRestart an application
        • PUTStart an application
        • PUTStop an application
        • PUTUpdate an application
        • PUTUpdate the log levels
        • PUTUpdate the properties of an application
LogoLogo
Open sourceSupportFAQsDocs Home
ReferenceApplications

List all applications

GET
http://localhost:3000/applications
GET
/applications
$curl http://localhost:3000/applications \
> -u "<username>:<password>"
1{
2 "results": [
3 {
4 "metadata": {
5 "isActive": true,
6 "activeSync": true
7 },
8 "data": {
9 "type": null,
10 "properties": {}
11 }
12 }
13 ],
14 "total": 1
15}
Returns all applications in Itential Platform.
Was this page helpful?
Previous

List changelogs

Next
Built with

Authentication

AuthorizationBasic

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

Query parameters

containsstringOptional
contains
containsFieldstringOptional
containsField
equalsstringOptional
equals
equalsFieldstringOptional
equalsField
startsWithstringOptional
startsWith
startsWithFieldstringOptional
startsWithField
skipintegerOptional>=0Defaults to 0
skip
limitintegerOptional>=0Defaults to 25
limit
sortenumOptionalDefaults to name
sort
Allowed values:
orderenumOptionalDefaults to 1
order
Allowed values:

Response

Contains an array of applications and the total in the response.
resultslist of objects
totalinteger>=0
The total number of documents

Errors

500
Internal Server Error