Summary
          Modify Data
          Description
          Modify data
          Route
          No Northbound API Available
          Roles
          
            
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | 
                Type | 
                Required | 
                Description | 
              
            
            
              
    | object_to_update | 
    * | 
    yes | 
    Items to update | 
  
    | query | 
    string | 
    no | 
    Query the object_to_update (optional) | 
  
    | new_value | 
    * | 
    yes | 
    The new value | 
  
            
          
          
            Copied to Clipboard
            
            {
  "object_to_update": "item to update",
  "new_value": "updated item",
  "query": "Lorem elit deserunt ipsum consequat"
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "object_to_update": {
      "title": "object_to_update",
      "type": [
        "string",
        "object",
        "array",
        "integer",
        "number",
        "boolean"
      ],
      "examples": [
        "item to update"
      ]
    },
    "query": {
      "type": "string",
      "title": "query"
    },
    "new_value": {
      "title": "new_value",
      "type": [
        "string",
        "object",
        "array",
        "integer",
        "number",
        "boolean"
      ],
      "examples": [
        "updated item"
      ]
    }
  },
  "required": [
    "object_to_update",
    "new_value"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | 
                Type | 
                Description | 
              
            
            
              
                | updated_object | 
                * | 
                Updated Object | 
              
            
          
          
            Copied to Clipboard
            
            "updated item"
           
          
            Copied to Clipboard
            
            {
  "title": "updated_object",
  "type": [
    "array",
    "string",
    "boolean",
    "integer",
    "number",
    "object"
  ],
  "examples": [
    "updated item"
  ]
}