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
        • POSTCreate a new integration
        • DELDelete an integration
        • GETGet integration
        • GETList all integrations
        • POSTPost an access token with an authorization code
        • PUTUpdate an integration
        • PUTUpdate the properties of an integration
LogoLogo
Open sourceSupportFAQsDocs Home
ReferenceIntegrations

List all integrations

GET
http://localhost:3000/integrations
GET
/integrations
$curl http://localhost:3000/integrations \
> -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 integrations in Itential Platform.
Was this page helpful?
Previous

Post an access token with an authorization code

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:
skipActiveSyncbooleanOptionalDefaults to false
skipActiveSync

Response

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

Errors

500
Internal Server Error