Summary
          Get a specific integration model.
          Description
          Get a specific integration model in IAP.
          Route
          GET /integration-models/:name
          Roles
          
            admin
apiread
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | name | string | yes | The name of the integration model. | 
            
          
          
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {},
  "required": [],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | result | object | Contains the data for a specific integration model. | 
            
          
          
            Copied to Clipboard
            
            {
  "model": "@itential/adapter_GitHub:v5",
  "versionId": "GitHub:v5",
  "description": "A standard description about the integration model"
}
           
          
            Copied to Clipboard
            
            {
  "title": "result",
  "type": "object",
  "properties": {
    "model": {
      "type": "string",
      "examples": [
        "@itential/adapter_GitHub:v5"
      ]
    },
    "versionId": {
      "type": "string",
      "examples": [
        "GitHub:v5"
      ]
    },
    "description": {
      "type": "string",
      "examples": [
        "A standard description about the integration model"
      ]
    },
    "properties": {
      "type": "object",
      "description": "Refer to OpenAPI specifications for the available properties for this OpenAPI document."
    }
  }
}