Summary
          Tests an instance
          Description
          Tests an instance
          Route
          POST /service_management/testInstance
          Roles
          
            admin
engineering
support
apiread
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | service | string | yes | Name of service model | 
    | instance | object | yes | - | 
    | options | object | yes | - | 
            
          
          
            Copied to Clipboard
            
            {
  "service": "mollit Duis amet sint"
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "service": {
      "type": "string",
      "title": "service"
    },
    "instance": {
      "type": "object",
      "title": "instance",
      "properties": {}
    },
    "options": {
      "type": "object",
      "title": "options",
      "properties": {}
    }
  },
  "required": [
    "service",
    "instance",
    "options"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | result | object | Object containing data form result of saving instances | 
            
          
          
            Copied to Clipboard
            
            {
  "native": "aliqua cupidatat consectetur in",
  "success": true
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "title": "result",
  "properties": {
    "native": {
      "type": "string"
    },
    "success": {
      "type": "boolean"
    }
  }
}