update_tag
Modify existing tags in Paperless-NGX by updating their name, color, matching pattern, or algorithm to organize and categorize documents effectively.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | No | ||
id | Yes | ||
match | No | ||
matching_algorithm | No | ||
name | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"color": {
"pattern": "^#[0-9A-Fa-f]{6}$",
"type": "string"
},
"id": {
"type": "number"
},
"match": {
"type": "string"
},
"matching_algorithm": {
"maximum": 4,
"minimum": 0,
"type": "integer"
},
"name": {
"type": "string"
}
},
"required": [
"id",
"name"
],
"type": "object"
}