create_correspondent
Add a new correspondent to your Paperless-NGX instance by specifying name, match criteria, and matching algorithm for automated document tagging.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
match | No | ||
matching_algorithm | No | ||
name | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"match": {
"type": "string"
},
"matching_algorithm": {
"enum": [
"any",
"all",
"exact",
"regular expression",
"fuzzy"
],
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}