Summary
          Update an integration model.
          Description
          Update an integration model in IAP.
          Route
          PUT /integration-models
          Roles
          
            admin
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | model | object | yes | An OpenAPI doc containing all the data for an integration model. | 
            
          
          
            Copied to Clipboard
            
            {
  "model": {
    "title": "model",
    "description": "Refer to OpenAPI specifications for the structure of an OpenAPI document."
  }
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "model": {
      "title": "model",
      "description": "Refer to OpenAPI specifications for the structure of an OpenAPI document."
    }
  },
  "required": [
    "model"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | result | object | The output of the update process. | 
            
          
          
            Copied to Clipboard
            
            {
  "status": "OK",
  "message": "A sample success message",
  "data": {
    "loggerProps": {
      "log_max_files": 100,
      "log_max_file_size": 1048576,
      "log_level": "info",
      "log_directory": "/var/log/pronghorn",
      "log_filename": "pronghorn.log",
      "console_level": "warn",
      "description": "Logger Settings",
      "log_timezone_offset": 0,
      "metrics_filename": "metrics.log",
      "metrics_max_files": 31,
      "metrics_rotation_interval": "7d",
      "metrics_rotation_size": "10M",
      "syslog": {
        "level": "warning",
        "facility": "local0",
        "type": "5424",
        "host": "localhost",
        "port": 514,
        "protocol": "udp4",
        "pid": "process.pid",
        "localhost": "localhost",
        "app_name": "process.title",
        "eol": ""
      }
    },
    "isEncrypted": false,
    "model": "@itential/adapter-local_aaa",
    "name": "Local AAA",
    "type": "Application",
    "profiling": false,
    "virtual": false
  }
}