I'de to add the Content-Type of the headers in order to get it working. See: https://github.com/paperless-ngx/paperless-ngx/discussions/7580

WebWorkingMan 2024-08-30 13:31:28 +02:00
parent 1bec8c2c49
commit 24a261a523

@ -28,7 +28,10 @@ def _set_auth_tokens(paperless_url: str, timeout: float, session: requests.Sessi
response = session.post(
paperless_url + "/api/token/",
data=json.dumps(credentials),
headers={"X-CSRFToken": csrf_token},
headers={
"X-CSRFToken": csrf_token,
"Content-Type": "application/json"
},
timeout=timeout,
)
response.raise_for_status()
@ -75,6 +78,7 @@ if __name__ == "__main__":
# Update the document
resp = sess.patch(
paperless_url + f"/api/documents/{doc_pk}/",
headers={"Content-Type": "application/json"},
data=json.dumps({"correspondent": new_correspondent, "document_type": new_doc_type}),
timeout=timeout,
)