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
        • 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

Update an integration model

PUT
http://localhost:3000/integration-models
PUT
/integration-models
$curl -X PUT http://localhost:3000/integration-models \
> -H "Content-Type: application/json" \
> -u "<username>:<password>" \
> -d '{}'
1{
2 "status": "OK",
3 "message": "A sample success message",
4 "data": {}
5}
Updates an integration model in Itential Platform.
Was this page helpful?
Previous

Validate an integration model

Next
Built with

Authentication

AuthorizationBasic

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

Request

request body
modelanyOptional
Refer to OpenAPI specifications for the structure of an OpenAPI document.

Response

The output of the update process.
statusenum
The status of the API request.
Allowed values:
messagestring
Message containing either confirmation of the operation or the reason for the failure of the operation.
dataobject
Refer to OpenAPI specifications for the structure of an OpenAPI document.

Errors

500
Internal Server Error