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 model
        • DELDelete an integration model
        • GETExport an integration model
        • GETGet a specific integration model
        • GETGet an integration model's security schemes
        • GETList all integration models
        • PUTUpdate an integration model
        • PUTValidate an integration model
LogoLogo
Open sourceSupportFAQsDocs Home
ReferenceIntegration Models

List all integration models

GET
http://localhost:3000/integration-models
GET
/integration-models
$curl http://localhost:3000/integration-models \
> -u "<username>:<password>"
1{
2 "integrationModels": {
3 "model": "@itential/adapter_GitHub:v5",
4 "versionId": "GitHub:v5",
5 "description": "A standard description about the integration model",
6 "properties": {}
7 },
8 "total": 1
9}
Returns all the integration models in Itential Platform.
Was this page helpful?
Previous

Update an integration model

Next
Built with

Authentication

AuthorizationBasic

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

Query parameters

containsstringOptional
Filter the response based on each item that includes the provided query.
containsFieldenumOptional
containsField
Allowed values:
equalsstringOptional
Filter the response based on each item that is an exact match to the provided query.
equalsFieldenumOptional
equalsField
Allowed values:
startsWithstringOptional
Filter the response based on each item that starts with the provided query.
startsWithFieldenumOptional
startsWithField
Allowed values:
skipintegerOptional>=0Defaults to 0
skip
limitintegerOptional>=0Defaults to 25
limit
sortenumOptional
Field to sort by. Default is versionId.
Allowed values:
orderenumOptionalDefaults to 1
order
Allowed values:

Response

Contains the data for all integration models.
integrationModelsobject
totalinteger>=0
The total number of documents

Errors

500
Internal Server Error