docs/api.md
Paperless-ngx now ships with a fully-documented REST API and a browsable
web interface to explore it. The API browsable interface is available at
/api/schema/view/.
Further documentation is provided here for some endpoints and features.
The REST api provides five different forms of authentication.
Basic authentication
Authorize by providing a HTTP header in the form
Authorization: Basic <credentials>
where credentials is a base64-encoded string of
<username>:<password>
Session authentication
When you're logged into paperless in your browser, you're automatically logged into the API as well and don't need to provide any authorization headers.
Token authentication
You can create (or re-create) an API token by opening the "My Profile" link in the user dropdown found in the web UI and clicking the circular arrow button.
Paperless also offers an endpoint to acquire authentication tokens.
POST a username and password as a form or json string to
/api/token/ and paperless will respond with a token, if the login
data is correct. This token can be used to authenticate other
requests with the following HTTP header:
Authorization: Token <token>
Tokens can also be managed in the Django admin.
Remote User authentication
If enabled (see configuration), you can authenticate against the API using Remote User auth.
Headless OIDC via django-allauth
django-allauth exposes API endpoints under api/auth/ which enable tools
like third-party apps to authenticate with social accounts that are
configured. See
here for more
information on social accounts.
Full text searching is available on the /api/documents/ endpoint. The
following query parameters cause the API to return Tantivy-backed search
results:
/api/documents/?text=your%20search%20query: Search title and content
using simple substring-style search./api/documents/?title_search=your%20search%20query: Search title only
using simple substring-style search./api/documents/?query=your%20search%20query: Search for a document
using a full text query. For details on the syntax, see Basic Usage - Searching./api/documents/?more_like_id=1234: Search for documents similar to
the document with id 1234.Pagination works exactly the same as it does for normal requests on this endpoint.
Furthermore, each returned document has an additional __search_hit__
attribute with various information about the search results:
{
"count": 31,
"next": "http://localhost:8000/api/documents/?page=2&query=test",
"previous": null,
"results": [
...
{
"id": 123,
"title": "title",
"content": "content",
...
"__search_hit__": {
"score": 0.343,
"highlights": "text <span class="match">Test</span> text",
"rank": 23
}
},
...
]
}
score is an indication how well this document matches the query
relative to the other search results.highlights is an excerpt from the document content and highlights
the search terms with <span> tags as shown above.rank is the index of the search results. The first result will
have rank 0.You can filter documents by their custom field values by specifying the
custom_field_query query parameter. Here are some recipes for common
use cases:
Documents with a custom field "due" (date) between Aug 1, 2024 and Sept 1, 2024 (inclusive):
?custom_field_query=["due", "range", ["2024-08-01", "2024-09-01"]]
Documents with a custom field "customer" (text) that equals "bob" (case sensitive):
?custom_field_query=["customer", "exact", "bob"]
Documents with a custom field "answered" (boolean) set to true:
?custom_field_query=["answered", "exact", true]
Documents with a custom field "favorite animal" (select) set to either "cat" or "dog":
?custom_field_query=["favorite animal", "in", ["cat", "dog"]]
Documents with a custom field "address" (text) that is empty:
?custom_field_query=["OR", [["address", "isnull", true], ["address", "exact", ""]]]
Documents that don't have a field called "foo":
?custom_field_query=["foo", "exists", false]
Documents that have document links "references" to both document 3 and 7:
?custom_field_query=["references", "contains", [3, 7]]
All field types support basic operations including exact, in, isnull,
and exists. String, URL, and monetary fields support case-insensitive
substring matching operations including icontains, istartswith, and
iendswith. Integer, float, and date fields support arithmetic comparisons
including gt (>), gte (>=), lt (<), lte (<=), and range.
Lastly, document link fields support a contains operator that behaves
like a "is superset of" check.
/api/search/autocomplete/Get auto completions for a partial search term.
Query parameters:
term: The incomplete term.limit: Amount of results. Defaults to 10.Results are ordered by how many of the user's visible documents contain each matching word. The first result is the word that appears in the most documents.
["term1", "term3", "term6", "term4"]
The API provides a special endpoint for file uploads:
/api/documents/post_document/
POST a multipart form to this endpoint, where the form field document
contains the document that you want to upload to paperless. The filename
is sanitized and then used to store the document in a temporary
directory, and the consumer will be instructed to consume the document
from there.
The endpoint supports the following optional form fields:
title: Specify a title that the consumer should use for the
document.created: Specify a DateTime where the document was created (e.g.
"2016-04-19" or "2016-04-19 06:15:00+02:00").correspondent: Specify the ID of a correspondent that the consumer
should use for the document.document_type: Similar to correspondent.storage_path: Similar to correspondent.tags: Similar to correspondent. Specify this multiple times to
have multiple tags added to the document.archive_serial_number: An optional archive serial number to set.custom_fields: Either an array of custom field ids to assign (with an empty
value) to the document or an object mapping field id -> value.The endpoint will immediately return HTTP 200 if the document consumption
process was started successfully, with the UUID of the consumption task
as the data. No additional status information about the consumption process
itself is available immediately, since that happens in a different process.
However, querying the tasks endpoint with the returned UUID e.g.
/api/tasks/?task_id={uuid} will provide information on the state of the
consumption including the ID of a created document if consumption succeeded.
Document versions are file-level versions linked to one root document.
Version-aware endpoints:
GET /api/documents/{id}/: returns root document data; content resolves to latest version content by default. Use ?version={version_id} to resolve content for a specific version.PATCH /api/documents/{id}/: content updates target the selected version (?version={version_id}) or latest version by default; non-content metadata updates target the root document.GET /api/documents/{id}/download/, GET /api/documents/{id}/preview/, GET /api/documents/{id}/thumb/, GET /api/documents/{id}/metadata/: accept ?version={version_id}.POST /api/documents/{id}/update_version/: uploads a new version using multipart form field document and optional version_label.PATCH /api/documents/{id}/versions/{version_id}/: updates the version_label of a specific version.DELETE /api/documents/{root_id}/versions/{version_id}/: deletes a non-root version.All objects (documents, tags, etc.) allow setting object-level permissions
with optional owner and / or a set_permissions parameters which are of
the form:
"owner": ...,
"set_permissions": {
"view": {
"users": [...],
"groups": [...],
},
"change": {
"users": [...],
"groups": [...],
},
}
!!! note
Arrays should contain user or group ID numbers.
If these parameters are supplied the object's permissions will be overwritten, assuming the authenticated user has permission to do so (the user must be the object owner or a superuser).
By default, the API will return a truncated version of object-level
permissions, returning user_can_change indicating whether the current user
can edit the object (either because they are the object owner or have permissions
granted). You can pass the parameter full_perms=true to API calls to view the
full permissions of objects in a format that mirrors the set_permissions
parameter above.
The API supports various bulk-editing operations which are executed asynchronously.
For bulk operations on documents, use the endpoint /api/documents/bulk_edit/ which accepts
a json payload of the format:
{
"documents": [LIST_OF_DOCUMENT_IDS],
"method": METHOD, // see below
"parameters": args // see below
}
The following methods are supported:
set_correspondent
parameters: { "correspondent": CORRESPONDENT_ID }set_document_type
parameters: { "document_type": DOCUMENT_TYPE_ID }set_storage_path
parameters: { "storage_path": STORAGE_PATH_ID }add_tag
parameters: { "tag": TAG_ID }remove_tag
parameters: { "tag": TAG_ID }modify_tags
parameters: { "add_tags": [LIST_OF_TAG_IDS] } and { "remove_tags": [LIST_OF_TAG_IDS] }delete
parameters requiredreprocess
parameters requiredset_permissions
parameters:
"set_permissions": PERMISSIONS_OBJ (see format above) and / or"owner": OWNER_ID or null"merge": true or false (defaults to false)merge flag determines if the supplied permissions will overwrite all existing permissions (including
removing them) or be merged with existing permissions.modify_custom_fields
parameters:
"add_custom_fields": { CUSTOM_FIELD_ID: VALUE }: JSON object consisting of custom field id:value pairs to add to the document, can also be a list of custom field IDs
to add with empty values."remove_custom_fields": [CUSTOM_FIELD_ID]: custom field ids to remove from the document.Beginning with version 10+, the API supports individual endpoints for document-editing operations (merge, rotate, edit_pdf, etc), thus their documentation can be found in the API spec / viewer. Legacy document-editing methods via /api/documents/bulk_edit/ are still supported for compatibility, are deprecated and clients should migrate to the individual endpoints before they are removed in a future version.
Bulk editing for objects (tags, document types etc.) currently supports set permissions or delete
operations, using the endpoint: /api/bulk_edit_objects/, which requires a json payload of the format:
{
"objects": [LIST_OF_OBJECT_IDS],
"object_type": "tags", "correspondents", "document_types" or "storage_paths",
"operation": "set_permissions" or "delete",
"owner": OWNER_ID, // optional
"permissions": { "view": { "users": [] ... }, "change": { ... } }, // (see 'set_permissions' format above)
"merge": true / false // defaults to false, see above
}
The REST API is versioned.
10).9 and 10.API versions are specified by submitting an additional HTTP Accept
header with every request:
Accept: application/json; version=10
If an invalid version is specified, Paperless responds with
406 Not Acceptable and an error message in the body.
If a client wishes to verify whether it is compatible with any given server, the following procedure should be performed:
Perform an authenticated request against any API endpoint. The server will add two custom headers to the response:
X-Api-Version: 10
X-Version: <server-version>
Determine whether the client is compatible with this server based on the presence/absence of these headers and their values if present.
Older API versions are guaranteed to be supported for at least one year after the release of a new API version. After that, support for older API versions may be (but is not guaranteed to be) dropped.
Initial API version.
Tag.color. This read/write string field contains a hex
color such as #a6cee3.Tag.text_color. This field contains the text
color to use for a specific tag, which is either black or white
depending on the brightness of Tag.color.Tag.colour./api/ui_settings/ has changed./api/tasks/acknowledge/.id and label fields as opposed to a simple
list of strings. When creating or updating a custom field value of a
document for a select type custom field, the value should be the id of
the option whereas previously was the index of the option.created field is now a date, not a datetime. The
created_date field is considered deprecated and will be removed in a
future version.show_on_dashboard and show_in_sidebar fields of saved views have been
removed. Relevant settings are now stored in the UISettings model. Compatibility is maintained
for versions < 10 until support for API v9 is dropped.merge, rotate, and edit_pdf have been
moved from the bulk edit endpoint to their own individual endpoints. Using these methods via
the bulk edit endpoint is still supported for compatibility with versions < 10 until support
for API v9 is dropped.all parameter of list endpoints is now deprecated and will be removed in a future version.all and filters parameters to avoid having to send
large lists of object IDs for operations affecting many objects.title_content document search parameter is deprecated and will be removed in a future version.
Clients should use text for simple title-and-content search and title_search for title-only search./api/tasks/) is now paginated, and the
task object exposes task_type (formerly task_name) and trigger_source (formerly type). New
read-only endpoints /api/tasks/summary/, /api/tasks/status_counts/, and /api/tasks/active/
provide aggregate views, and POST /api/tasks/run/ lets privileged users dispatch supported tasks.
API v9 continues to serve the unpaginated list with the legacy field names until support for v9 is
dropped.