From eb2702f27fe3c9fb9ff29e699ebf8adc867b1af1 Mon Sep 17 00:00:00 2001 From: duckduckgrayduck <102841251+duckduckgrayduck@users.noreply.github.com> Date: Mon, 22 Sep 2025 14:38:20 -0500 Subject: [PATCH] Handle force_ocr, re-factor upload_directory, and record tests --- .github/workflows/main.yml | 2 +- Makefile | 2 +- docs/conf.py | 6 +- documentcloud/documents.py | 245 ++++--- setup.py | 2 +- tests/cassettes/fixtures/client.yaml | 22 +- tests/cassettes/fixtures/document.yaml | 393 +++++++++--- .../cassettes/fixtures/document_factory.yaml | 140 ++-- tests/cassettes/fixtures/project.yaml | 376 +++++++++-- tests/cassettes/fixtures/project_factory.yaml | 30 +- tests/cassettes/fixtures/rate_client.yaml | 22 +- .../short_fixtures/short_client.yaml | 22 +- .../test_expired_access_token.yaml | 73 ++- .../test_expired_refresh_token.yaml | 95 +-- .../TestAnnotation.test_create_delete.yaml | 84 +-- .../TestAnnotation.test_create_page_note.yaml | 24 +- .../TestAnnotation.test_location.yaml | 14 +- .../TestAnnotation.test_str.yaml | 14 +- .../TestAPIResults.test_getitem.yaml | 13 +- ...stAPIResults.test_getitem_index_error.yaml | 27 +- .../TestAPIResults.test_getitem_paginate.yaml | 24 +- .../test_base/TestAPIResults.test_iter.yaml | 27 +- .../test_base/TestAPIResults.test_len.yaml | 13 +- .../test_base/TestAPIResults.test_next.yaml | 603 ++++++------------ .../TestAPIResults.test_previous.yaml | 24 +- .../test_base/TestAPIResults.test_str.yaml | 13 +- .../test_base/TestAPISet.test_add.yaml | 288 +++++++-- .../test_base/TestAPISet.test_append.yaml | 448 +++++++++++-- .../test_base/TestAPISet.test_extend.yaml | 144 +++-- .../test_base/TestAPISet.test_init.yaml | 22 +- .../test_client/test_get_tokens.yaml | 22 +- .../test_get_tokens_bad_credentials.yaml | 16 +- .../test_client/test_rate_limit.yaml | 130 ++-- .../test_client/test_refresh_tokens.yaml | 26 +- .../test_set_tokens_credentials.yaml | 22 +- .../test_client/test_set_tokens_refresh.yaml | 46 +- .../test_client/test_user_id_public.yaml | 6 +- .../TestDocument.test_delete.yaml | 164 +++-- .../TestDocument.test_getattr[full_text].yaml | 26 +- .../TestDocument.test_getattr[page_text].yaml | 26 +- .../TestDocument.test_getattr[pdf].yaml | 30 +- ...estDocument.test_getattr[small_image].yaml | 26 +- ...nt.test_getattr_method[get_full_text].yaml | 26 +- ...nt.test_getattr_method[get_page_text].yaml | 26 +- ...Document.test_getattr_method[get_pdf].yaml | 30 +- ....test_getattr_method[get_small_image].yaml | 26 +- .../TestDocument.test_mentions.yaml | 23 +- .../TestDocument.test_organization.yaml | 16 +- .../TestDocument.test_save.yaml | 32 +- .../TestDocument.test_section.yaml | 336 +++------- .../TestDocument.test_user.yaml | 13 +- .../TestDocument.test_user_expanded.yaml | 17 +- .../TestDocumentClient.test_delete.yaml | 164 ++--- .../TestDocumentClient.test_list.yaml | 39 +- ...TestDocumentClient.test_public_upload.yaml | 12 +- .../TestDocumentClient.test_search.yaml | 21 +- .../TestDocumentClient.test_upload_dir.yaml | 57 +- .../TestDocumentClient.test_upload_file.yaml | 298 +++------ ...tDocumentClient.test_upload_file_path.yaml | 352 ++-------- .../TestDocumentClient.test_upload_url.yaml | 144 +++-- .../TestSection.test_create_delete.yaml | 544 +++++++++++++--- .../test_documents/TestSection.test_page.yaml | 12 +- .../test_documents/TestSection.test_str.yaml | 12 +- .../test_organizations/test_organization.yaml | 29 +- ...stProject.test_document_list_paginate.yaml | 44 +- .../TestProject.test_get_document.yaml | 28 +- ...TestProject.test_get_document_missing.yaml | 166 ++--- .../test_projects/TestProject.test_save.yaml | 266 +++++--- .../TestProjectClient.test_get_by_id.yaml | 16 +- .../TestProjectClient.test_get_by_title.yaml | 16 +- ...jectClient.test_get_by_title_multiple.yaml | 32 +- .../TestProjectClient.test_get_id.yaml | 16 +- ...nt.test_get_or_create_by_title_create.yaml | 30 +- ...lient.test_get_or_create_by_title_get.yaml | 16 +- .../TestProjectClient.test_get_title.yaml | 16 +- .../TestProjectClient.test_list.yaml | 57 +- .../TestSection.test_create_delete.yaml | 174 ++--- .../test_sections/TestSection.test_page.yaml | 12 +- .../test_sections/TestSection.test_str.yaml | 12 +- tests/cassettes/test_users/test_user.yaml | 13 +- 80 files changed, 3835 insertions(+), 3060 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 19d062f..61ab675 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.10", "3.11"] steps: - name: Check out code uses: actions/checkout@v2 diff --git a/Makefile b/Makefile index b3b499f..966dc8a 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ test-create-short: test-clean-short # run all tests using the pre-recorded HTTP requests - will fail on missing request test: - pytest --record-mode=none --block-network + pytest --record-mode=none --block-network -vv # run tests using pre-recorded HTTP requets if they exist, and recording them if missing test-dev: diff --git a/docs/conf.py b/docs/conf.py index 2f4aa7b..16adc2c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,16 +48,16 @@ # General information about the project. project = "documentcloud" -copyright = "2023, MuckRock Foundation" +copyright = "2025, MuckRock Foundation" # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = "4.3" +version = "4.5" # The full version, including alpha/beta/rc tags. -release = "4.3.0" +release = "4.5.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/documentcloud/documents.py b/documentcloud/documents.py index afeb9f7..f968cac 100644 --- a/documentcloud/documents.py +++ b/documentcloud/documents.py @@ -74,8 +74,11 @@ def __str__(self): def __getattr__(self, attr): """Generate methods for fetching resources""" p_image = re.compile( - r"^get_(?Pthumbnail|small|normal|large|xlarge)_image_url(?P_list)?$" + r"^get_" + r"(?Pthumbnail|small|normal|large|xlarge)_image_url" + r"(?P_list)?$" ) + get = attr.startswith("get_") url = attr.endswith("_url") text = attr.endswith("_text") @@ -230,9 +233,15 @@ def get_errors(self): return all_results - def process(self): - """Reprocess the document""" - self._client.post(f"{self.api_path}/{self.id}/process/") + def process(self, **kwargs): + """Process the document, used on upload and for reprocessing""" + payload = {} + if "force_ocr" in kwargs: + payload["force_ocr"] = kwargs["force_ocr"] + if "ocr_engine" in kwargs: + payload["ocr_engine"] = kwargs["ocr_engine"] + + self._client.post(f"{self.api_path}/{self.id}/process/", json=payload) class DocumentClient(BaseAPIClient): @@ -310,6 +319,7 @@ def _format_upload_parameters(self, name, **kwargs): "title", "data", "force_ocr", + "ocr_engine", "projects", "delayed_index", "revision_control", @@ -333,21 +343,55 @@ def _format_upload_parameters(self, name, **kwargs): return params + def _extract_ocr_options(self, kwargs): + """ + Extract and validate OCR options from kwargs. + + Returns: + force_ocr (bool) + ocr_engine (str) + """ + force_ocr = kwargs.pop("force_ocr", False) + ocr_engine = kwargs.pop("ocr_engine", "tess4") + + if not isinstance(force_ocr, bool): + raise ValueError("force_ocr must be a boolean") + + if ocr_engine and ocr_engine not in ("tess4", "textract"): + raise ValueError( + "ocr_engine must be either 'tess4' for tesseract or 'textract'" + ) + + return force_ocr, ocr_engine + def _get_title(self, name): """Get the default title for a document from its path""" return name.split(os.sep)[-1].rsplit(".", 1)[0] def _upload_url(self, file_url, **kwargs): """Upload a document from a publicly accessible URL""" + # extract process-related args + force_ocr, ocr_engine = self._extract_ocr_options(kwargs) + + # create the document params = self._format_upload_parameters(file_url, **kwargs) params["file_url"] = file_url + if force_ocr: + params["force_ocr"] = force_ocr + params["ocr_engine"] = ocr_engine response = self.client.post("documents/", json=params) - return Document(self.client, response.json()) + create_json = response.json() + + # wrap in Document object + doc = Document(self.client, create_json) + + return doc def _upload_file(self, file_, **kwargs): """Upload a document directly""" # create the document - force_ocr = kwargs.pop("force_ocr", False) + force_ocr, ocr_engine = self._extract_ocr_options(kwargs) + params = self._format_upload_parameters(file_.name, **kwargs) response = self.client.post("documents/", json=params) @@ -357,12 +401,12 @@ def _upload_file(self, file_, **kwargs): response = requests_retry_session().put(presigned_url, data=file_.read()) # begin processing the document - doc_id = create_json["id"] - response = self.client.post( - f"documents/{doc_id}/process/", json={"force_ocr": force_ocr} - ) + doc = Document(self.client, create_json) - return Document(self.client, create_json) + # begin processing + doc.process(force_ocr=force_ocr, ocr_engine=ocr_engine) + + return doc def _collect_files(self, path, extensions): """Find the paths to files with specified extensions under a directory""" @@ -379,165 +423,98 @@ def _collect_files(self, path, extensions): def upload_directory(self, path, handle_errors=False, extensions=".pdf", **kwargs): """Upload files with specified extensions in a directory""" - # pylint: disable=too-many-locals, too-many-branches - - # Do not set the same title for all documents + # pylint:disable=too-many-locals kwargs.pop("title", None) - # If extensions are specified as None, it will check for all supported - # filetypes. if extensions is None: extensions = SUPPORTED_EXTENSIONS - - # Convert single extension to a list if provided if extensions and not isinstance(extensions, list): extensions = [extensions] - - # Checks to see if the extensions are supported, raises an error if not. invalid_extensions = set(extensions) - set(SUPPORTED_EXTENSIONS) if invalid_extensions: raise ValueError( f"Invalid extensions provided: {', '.join(invalid_extensions)}" ) - # Loop through the path and get all the files with matching extensions path_list = self._collect_files(path, extensions) - logger.info( "Upload directory on %s: Found %d files to upload", path, len(path_list) ) - # Upload all the files using the bulk API to reduce the number - # of API calls and improve performance obj_list = [] + force_ocr, ocr_engine = self._extract_ocr_options(kwargs) params = self._format_upload_parameters("", **kwargs) + for i, file_paths in enumerate(grouper(path_list, BULK_LIMIT)): - # Grouper will put None's on the end of the last group file_paths = [p for p in file_paths if p is not None] - logger.info("Uploading group %d:\n%s", i + 1, "\n".join(file_paths)) - # Create the documents - logger.info("Creating the documents...") - try: - response = self.client.post( - "documents/", - json=[ - merge_dicts( - params, - { - "title": self._get_title(p), - "original_extension": os.path.splitext( - os.path.basename(p) - )[1] - .lower() - .lstrip("."), - }, - ) - for p in file_paths - ], - ) - except (APIError, RequestException) as exc: - if handle_errors: - logger.info( - "Error creating the following documents: %s\n%s", - exc, - "\n".join(file_paths), - ) - continue - else: - raise + create_json = self._create_documents(file_paths, params, handle_errors) + sorted_create_json = sorted(create_json, key=lambda j: j["title"]) + sorted_file_paths = sorted(file_paths, key=self._get_title) + obj_list.extend(sorted_create_json) + presigned_urls = [j["presigned_url"] for j in sorted_create_json] - # Upload the files directly to storage - create_json = response.json() - obj_list.extend(create_json) - presigned_urls = [j["presigned_url"] for j in create_json] - for url, file_path in zip(presigned_urls, file_paths): - logger.info("Uploading %s to S3...", file_path) - try: - with open(file_path, "rb") as file: - response = requests_retry_session().put(url, data=file.read()) - self.client.raise_for_status(response) - except (APIError, RequestException) as exc: - if handle_errors: - logger.info( - "Error uploading the following document: %s %s", - exc, - file_path, - ) - continue - else: - raise - - # Begin processing the documents - logger.info("Processing the documents...") - doc_ids = [j["id"] for j in create_json] - try: - response = self.client.post("documents/process/", json={"ids": doc_ids}) - except (APIError, RequestException) as exc: - if handle_errors: - logger.info( - "Error creating the following documents: %s\n%s", - exc, - "\n".join(file_paths), - ) - continue - else: - raise + self._upload_files_to_s3(sorted_file_paths, presigned_urls, handle_errors) + self._process_documents(create_json, force_ocr, ocr_engine, handle_errors) logger.info("Upload directory complete") - - # Pass back the list of documents return [Document(self.client, d) for d in obj_list] - def upload_urls(self, url_list, handle_errors=False, **kwargs): - """Upload documents from a list of URLs""" - - # Do not set the same title for all documents - kwargs.pop("title", None) - - obj_list = [] - params = self._format_upload_parameters("", **kwargs) - for i, url_group in enumerate(grouper(url_list, BULK_LIMIT)): - # Grouper will put None's on the end of the last group - url_group = [url for url in url_group if url is not None] - - logger.info("Uploading group %d: %s", i + 1, "\n".join(url_group)) - - # Create the documents - logger.info("Creating the documents...") - try: - response = self.client.post( - "documents/", - json=[ - merge_dicts( - params, - { - "title": self._get_title(url), - "file_url": url, - }, - ) - for url in url_group - ], + def _create_documents(self, file_paths, params, handle_errors): + body = [ + merge_dicts( + params, + { + "title": self._get_title(p), + "original_extension": os.path.splitext(os.path.basename(p))[1] + .lower() + .lstrip("."), + }, + ) + for p in sorted(file_paths) + ] + try: + response = self.client.post("documents/", json=body) + except (APIError, RequestException) as exc: + if handle_errors: + logger.info( + "Error creating the following documents: %s\n%s", + exc, + "\n".join(file_paths), ) + return [] + else: + raise + return response.json() + + def _upload_files_to_s3(self, file_paths, presigned_urls, handle_errors): + for url, file_path in zip(presigned_urls, file_paths): + logger.info("Uploading %s to S3...", file_path) + try: + with open(file_path, "rb") as f: + response = requests_retry_session().put(url, data=f.read()) + self.client.raise_for_status(response) except (APIError, RequestException) as exc: if handle_errors: logger.info( - "Error creating the following documents: %s\n%s", - str(exc), - "\n".join(url_group), + "Error uploading the following document: %s %s", exc, file_path ) - continue else: raise - create_json = response.json() - obj_list.extend(create_json) - - logger.info("Upload URLs complete") - - # Pass back the list of documents - return [Document(self.client, d) for d in obj_list] + def _process_documents(self, create_json, force_ocr, ocr_engine, handle_errors): + payload = [ + {"id": j["id"], "force_ocr": force_ocr, "ocr_engine": ocr_engine} + for j in create_json + ] + try: + self.client.post("documents/process/", json=payload) + except (APIError, RequestException) as exc: + if handle_errors: + logger.info("Error processing documents: %s", exc) + else: + raise class Mention: diff --git a/setup.py b/setup.py index ca2c6ca..9c15513 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="python-documentcloud", - version="4.4.1", + version="4.5.0", description="A simple Python wrapper for the DocumentCloud API", author="Mitchell Kotler", author_email="mitch@muckrock.com", diff --git a/tests/cassettes/fixtures/client.yaml b/tests/cassettes/fixtures/client.yaml index 2883d54..bb6defb 100644 --- a/tests/cassettes/fixtures/client.yaml +++ b/tests/cassettes/fixtures/client.yaml @@ -5,7 +5,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive Content-Length: @@ -13,36 +13,36 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://dev.squarelet.com/api/token/ response: body: - string: '{"refresh":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTczNTkzNjEzMCwianRpIjoiMTI1NjJjYjgyMzNjNDNiY2E4ZDA3NDBjNTY5ZjI4ZDEiLCJ1c2VyX2lkIjoiZjYwMjllOGEtZDhhMi00MTg4LThhMjEtY2QwNzNhMDJlZTVjIiwiYXVkIjpbInNxdWFyZWxldCIsIm11Y2tyb2NrIiwiZG9jdW1lbnRjbG91ZCJdLCJpc3MiOlsic3F1YXJlbGV0Il19.r16YnNmu67Vgylj5QfEW6qOsrBCfMvlDEuRSx2zM5KFZ0y_RHT2DCUp-91u0lrI2HRRIBnn8DdfBxKWrfbCjKnSc2hZZ4jGUnm3CwiLVjZbs4p5DKaL5LbA4XRqa3AbrE6Gc1yCvSoKz8EIkn-T8CdyALBztQgwdKhxR-ZdYtnlRz_354WJ_DrrG0Cw9nhs4WGfcSTsUt8vIdyjL4ENm-C8ZqMmLtOZgS_DZ1EyWfitD_D1hPrfi7YdEwLUrhTNX7dGYQ1Z-NjY2Dm60ekH6WPxaHJ2Zrb4k_BHyGxkjjOI73tLZcmAhEa3g5qjKEv0kbJCJ3Un2kvvXI5FnuJKfTQ","access":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w"}' + string: '{"refresh":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTc1ODgxNjUyOSwiaWF0IjoxNzU4NzMwMTI5LCJqdGkiOiIzZWI4MzExNmQzNTA0Njc0YTViZGFiOGEyYjFkNDA0ZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.jl0ql4G-9ZFn0yOWSyzlXLjBXaQF9ZzWoHf7vxfrK9e4MnQ5jZyCLrFR7-nkjbKy9q9WAjlO3u3ZV3bzYW0xobiOuZcvTEiucy8qnzQlXLDLOjMy1JLnyh7VJI4Si40BSs5l-UfSvUv3854l6V_fxwcx0asLFVclT0PrDnAuNt50uxxgsSAwzrsquqPOASuG_6DHiD-DIE-MrWYiNc2Z5fy7eQFRt600oTOPRfLLmVixlqN33QfHO6GZQsM20vinJxyOXWvjtsGmcaJooxIkyU56HLObx6fxokzEGKzvHXLeF7zbrZuHaww8fPmFTtq-QjaY7Pt2vxmJnbBIIvRh-g","access":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA"}' headers: Allow: - POST, OPTIONS Connection: - keep-alive Content-Length: - - '1313' + - '1359' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:28:50 GMT + - Wed, 24 Sep 2025 16:08:49 GMT Referrer-Policy: - same-origin Server: - nginx/1.25.2 Server-Timing: - - TimerPanel_utime;dur=255.48400000002403;desc="User CPU time", TimerPanel_stime;dur=47.80700000000593;desc="System - CPU time", TimerPanel_total;dur=303.29100000002995;desc="Total CPU time", - TimerPanel_total_time;dur=107.89275169372559;desc="Elapsed time", SQLPanel_sql_time;dur=8.965492248535156;desc="SQL - 3 queries", CachePanel_total_time;dur=0;desc="Cache 0 Calls" + - TimerPanel_utime;dur=223.58000000002676;desc="User CPU time", TimerPanel_stime;dur=41.8860000000052;desc="System + CPU time", TimerPanel_total;dur=265.46600000003195;desc="Total CPU time", + TimerPanel_total_time;dur=129.28208100493066;desc="Elapsed time", SQLPanel_sql_time;dur=4.6200070064514875;desc="SQL + 4 queries", CachePanel_total_time;dur=0;desc="Cache 0 Calls" Set-Cookie: - - op_browser_state=c253bb5b9d23f0670eb45f87ff522c6dad5d1366f8084ced5ef3c567; + - op_browser_state=f5448717470b879d75a31d1e1e832e10c24a7586f91c49d672dea82f; Path=/ Vary: - Accept, Origin, Cookie @@ -50,6 +50,8 @@ interactions: - nosniff X-Frame-Options: - DENY + djdt-store-id: + - 2262d688c46f4da090ad828bac248f04 status: code: 200 message: OK diff --git a/tests/cassettes/fixtures/document.yaml b/tests/cassettes/fixtures/document.yaml index ee7a641..0acfe76 100644 --- a/tests/cassettes/fixtures/document.yaml +++ b/tests/cassettes/fixtures/document.yaml @@ -2,15 +2,15 @@ interactions: - request: body: '{"title": "test", "access": "private", "description": "A simple test document", "related_article": "https://www.example.com/article/", "published_url": "https://www.example.com/article/test.pdf", - "source": "DocumentCloud", "data": {"_tag": ["document"]}, "projects": [200070], + "source": "DocumentCloud", "data": {"_tag": ["document"]}, "projects": [200056], "file_url": "https://assets.documentcloud.org/documents/20071460/test.pdf"}' headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive Content-Length: @@ -18,13 +18,13 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://api.dev.documentcloud.org/api/documents/ response: body: - string: '{"id":20000273,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000273-test","created_at":"2025-01-02T20:28:57.927312Z","data":{"_tag":["document"]},"description":"A - simple test document","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[200070],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"nofile","title":"test","updated_at":"2025-01-02T20:28:57.927531Z","user":100000}' + string: '{"id":20000200,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000200-test/","created_at":"2025-09-24T16:09:01.460974Z","data":{"_tag":["document"]},"description":"A + simple test document","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[200056],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"nofile","title":"test","updated_at":"2025-09-24T16:09:01.461086Z","user":100000}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -35,13 +35,13 @@ interactions: Content-Language: - en Content-Length: - - '747' + - '748' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:28:57 GMT + - Wed, 24 Sep 2025 16:09:01 GMT Referrer-Policy: - same-origin Server: @@ -61,19 +61,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000273/ + uri: https://api.dev.documentcloud.org/api/documents/20000200/ response: body: - string: '{"id":20000273,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000273-test","created_at":"2025-01-02T20:28:57.927312Z","data":{"_tag":["document"]},"description":"A - simple test document","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[200070],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"pending","title":"test","updated_at":"2025-01-02T20:28:58.669434Z","user":100000}' + string: '{"id":20000200,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000200-test/","created_at":"2025-09-24T16:09:01.460974Z","data":{"_tag":["document"]},"description":"A + simple test document","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[200056],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"pending","title":"test","updated_at":"2025-09-24T16:09:02.246279Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -84,13 +84,13 @@ interactions: Content-Language: - en Content-Length: - - '748' + - '749' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:28:59 GMT + - Wed, 24 Sep 2025 16:09:02 GMT Referrer-Policy: - same-origin Server: @@ -110,19 +110,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000273/ + uri: https://api.dev.documentcloud.org/api/documents/20000200/ response: body: - string: '{"id":20000273,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000273-test","created_at":"2025-01-02T20:28:57.927312Z","data":{"_tag":["document"]},"description":"A - simple test document","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[200070],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"pending","title":"test","updated_at":"2025-01-02T20:28:59.843763Z","user":100000}' + string: '{"id":20000200,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000200-test/","created_at":"2025-09-24T16:09:01.460974Z","data":{"_tag":["document"]},"description":"A + simple test document","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[200056],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"pending","title":"test","updated_at":"2025-09-24T16:09:03.337580Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -133,13 +133,13 @@ interactions: Content-Language: - en Content-Length: - - '748' + - '749' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:00 GMT + - Wed, 24 Sep 2025 16:09:03 GMT Referrer-Policy: - same-origin Server: @@ -159,19 +159,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000273/ + uri: https://api.dev.documentcloud.org/api/documents/20000200/ response: body: - string: '{"id":20000273,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000273-test","created_at":"2025-01-02T20:28:57.927312Z","data":{"_tag":["document"]},"description":"A - simple test document","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[200070],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"pending","title":"test","updated_at":"2025-01-02T20:28:59.843763Z","user":100000}' + string: '{"id":20000200,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000200-test/","created_at":"2025-09-24T16:09:01.460974Z","data":{"_tag":["document"]},"description":"A + simple test document","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[200056],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"pending","title":"test","updated_at":"2025-09-24T16:09:03.337580Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -182,13 +182,258 @@ interactions: Content-Language: - en Content-Length: - - '748' + - '749' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:09:04 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000200/ + response: + body: + string: '{"id":20000200,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000200-test/","created_at":"2025-09-24T16:09:01.460974Z","data":{"_tag":["document"]},"description":"A + simple test document","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[200056],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"pending","title":"test","updated_at":"2025-09-24T16:09:03.337580Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '749' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:09:05 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000200/ + response: + body: + string: '{"id":20000200,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000200-test/","created_at":"2025-09-24T16:09:01.460974Z","data":{"_tag":["document"]},"description":"A + simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[200056],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"pending","title":"test","updated_at":"2025-09-24T16:09:06.110722Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '804' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:09:06 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000200/ + response: + body: + string: '{"id":20000200,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000200-test/","created_at":"2025-09-24T16:09:01.460974Z","data":{"_tag":["document"]},"description":"A + simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[200056],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"pending","title":"test","updated_at":"2025-09-24T16:09:06.110722Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '804' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:09:07 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000200/ + response: + body: + string: '{"id":20000200,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000200-test/","created_at":"2025-09-24T16:09:01.460974Z","data":{"_tag":["document"]},"description":"A + simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[200056],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"pending","title":"test","updated_at":"2025-09-24T16:09:06.110722Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '804' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:09:09 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000200/ + response: + body: + string: '{"id":20000200,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000200-test/","created_at":"2025-09-24T16:09:01.460974Z","data":{"_tag":["document"]},"description":"A + simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[200056],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"pending","title":"test","updated_at":"2025-09-24T16:09:06.110722Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '804' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:01 GMT + - Wed, 24 Sep 2025 16:09:10 GMT Referrer-Policy: - same-origin Server: @@ -208,19 +453,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000273/ + uri: https://api.dev.documentcloud.org/api/documents/20000200/ response: body: - string: '{"id":20000273,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000273-test","created_at":"2025-01-02T20:28:57.927312Z","data":{"_tag":["document"]},"description":"A - simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[200070],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"pending","title":"test","updated_at":"2025-01-02T20:29:02.333772Z","user":100000}' + string: '{"id":20000200,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000200-test/","created_at":"2025-09-24T16:09:01.460974Z","data":{"_tag":["document"]},"description":"A + simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[200056],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"pending","title":"test","updated_at":"2025-09-24T16:09:06.110722Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -231,13 +476,13 @@ interactions: Content-Language: - en Content-Length: - - '801' + - '804' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:02 GMT + - Wed, 24 Sep 2025 16:09:11 GMT Referrer-Policy: - same-origin Server: @@ -257,19 +502,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000273/ + uri: https://api.dev.documentcloud.org/api/documents/20000200/ response: body: - string: '{"id":20000273,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000273-test","created_at":"2025-01-02T20:28:57.927312Z","data":{"_tag":["document"]},"description":"A - simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[200070],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"pending","title":"test","updated_at":"2025-01-02T20:29:02.333772Z","user":100000}' + string: '{"id":20000200,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000200-test/","created_at":"2025-09-24T16:09:01.460974Z","data":{"_tag":["document"]},"description":"A + simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[200056],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"pending","title":"test","updated_at":"2025-09-24T16:09:06.110722Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -280,13 +525,13 @@ interactions: Content-Language: - en Content-Length: - - '801' + - '804' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:03 GMT + - Wed, 24 Sep 2025 16:09:12 GMT Referrer-Policy: - same-origin Server: @@ -306,19 +551,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000273/ + uri: https://api.dev.documentcloud.org/api/documents/20000200/ response: body: - string: '{"id":20000273,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000273-test","created_at":"2025-01-02T20:28:57.927312Z","data":{"_tag":["document"]},"description":"A - simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[200070],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"success","title":"test","updated_at":"2025-01-02T20:29:04.258476Z","user":100000}' + string: '{"id":20000200,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000200-test/","created_at":"2025-09-24T16:09:01.460974Z","data":{"_tag":["document"]},"description":"A + simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[200056],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"success","title":"test","updated_at":"2025-09-24T16:09:12.774106Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -329,13 +574,13 @@ interactions: Content-Language: - en Content-Length: - - '801' + - '804' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:04 GMT + - Wed, 24 Sep 2025 16:09:13 GMT Referrer-Policy: - same-origin Server: @@ -355,9 +600,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive Content-Length: @@ -365,12 +610,12 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST - uri: https://api.dev.documentcloud.org/api/documents/20000273/sections/ + uri: https://api.dev.documentcloud.org/api/documents/20000200/sections/ response: body: - string: '{"id":65,"page_number":0,"title":"Test Section"}' + string: '{"id":47,"page_number":0,"title":"Test Section"}' headers: Allow: - GET, POST, HEAD, OPTIONS @@ -387,7 +632,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:04 GMT + - Wed, 24 Sep 2025 16:09:13 GMT Referrer-Policy: - same-origin Server: @@ -408,9 +653,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive Content-Length: @@ -418,13 +663,13 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST - uri: https://api.dev.documentcloud.org/api/documents/20000273/notes/ + uri: https://api.dev.documentcloud.org/api/documents/20000200/notes/ response: body: - string: '{"id":2000048,"user":100000,"organization":10004,"page_number":0,"access":"private","edit_access":true,"title":"Test - Note","content":"

A note!

","x1":0.1,"x2":0.2,"y1":0.1,"y2":0.2,"created_at":"2025-01-02T20:29:04.744542Z","updated_at":"2025-01-02T20:29:04.744761Z"}' + string: '{"id":2000036,"user":100000,"organization":10000,"page_number":0,"access":"private","edit_access":true,"title":"Test + Note","content":"

A note!

","x1":0.1,"x2":0.2,"y1":0.1,"y2":0.2,"created_at":"2025-09-24T16:09:13.585530Z","updated_at":"2025-09-24T16:09:13.585676Z"}' headers: Allow: - GET, POST, HEAD, OPTIONS @@ -441,7 +686,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:04 GMT + - Wed, 24 Sep 2025 16:09:13 GMT Referrer-Policy: - same-origin Server: @@ -461,17 +706,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/documents/20000273/ + uri: https://api.dev.documentcloud.org/api/documents/20000200/ response: body: string: '' @@ -489,7 +734,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:09 GMT + - Wed, 24 Sep 2025 16:11:27 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/fixtures/document_factory.yaml b/tests/cassettes/fixtures/document_factory.yaml index 62f1055..887792c 100644 --- a/tests/cassettes/fixtures/document_factory.yaml +++ b/tests/cassettes/fixtures/document_factory.yaml @@ -5,17 +5,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/documents/20000272/ + uri: https://api.dev.documentcloud.org/api/documents/20000199/ response: body: string: '' @@ -33,7 +33,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:09 GMT + - Wed, 24 Sep 2025 16:11:27 GMT Referrer-Policy: - same-origin Server: @@ -53,17 +53,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/documents/20000274/ + uri: https://api.dev.documentcloud.org/api/documents/20000201/ response: body: string: '' @@ -81,7 +81,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:10 GMT + - Wed, 24 Sep 2025 16:11:27 GMT Referrer-Policy: - same-origin Server: @@ -101,17 +101,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/documents/20000275/ + uri: https://api.dev.documentcloud.org/api/documents/20000202/ response: body: string: '' @@ -129,7 +129,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:10 GMT + - Wed, 24 Sep 2025 16:11:28 GMT Referrer-Policy: - same-origin Server: @@ -149,17 +149,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/documents/20000276/ + uri: https://api.dev.documentcloud.org/api/documents/20000203/ response: body: string: '' @@ -177,7 +177,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:10 GMT + - Wed, 24 Sep 2025 16:11:28 GMT Referrer-Policy: - same-origin Server: @@ -197,17 +197,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/documents/20000277/ + uri: https://api.dev.documentcloud.org/api/documents/20000204/ response: body: string: '{"detail":"Not found."}' @@ -227,7 +227,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:10 GMT + - Wed, 24 Sep 2025 16:11:28 GMT Referrer-Policy: - same-origin Server: @@ -247,17 +247,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/documents/20000278/ + uri: https://api.dev.documentcloud.org/api/documents/20000205/ response: body: string: '' @@ -275,7 +275,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:10 GMT + - Wed, 24 Sep 2025 16:11:28 GMT Referrer-Policy: - same-origin Server: @@ -295,17 +295,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/documents/20000279/ + uri: https://api.dev.documentcloud.org/api/documents/20000206/ response: body: string: '' @@ -323,7 +323,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:10 GMT + - Wed, 24 Sep 2025 16:11:28 GMT Referrer-Policy: - same-origin Server: @@ -343,17 +343,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/documents/20000280/ + uri: https://api.dev.documentcloud.org/api/documents/20000207/ response: body: string: '' @@ -371,7 +371,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:10 GMT + - Wed, 24 Sep 2025 16:11:28 GMT Referrer-Policy: - same-origin Server: @@ -391,17 +391,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/documents/20000281/ + uri: https://api.dev.documentcloud.org/api/documents/20000208/ response: body: string: '' @@ -419,7 +419,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:11 GMT + - Wed, 24 Sep 2025 16:11:28 GMT Referrer-Policy: - same-origin Server: @@ -439,17 +439,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/documents/20000284/ + uri: https://api.dev.documentcloud.org/api/documents/20000211/ response: body: string: '{"detail":"Not found."}' @@ -469,7 +469,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:11 GMT + - Wed, 24 Sep 2025 16:11:28 GMT Referrer-Policy: - same-origin Server: @@ -489,17 +489,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/documents/20000285/ + uri: https://api.dev.documentcloud.org/api/documents/20000212/ response: body: string: '' @@ -517,7 +517,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:11 GMT + - Wed, 24 Sep 2025 16:11:29 GMT Referrer-Policy: - same-origin Server: @@ -537,17 +537,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/documents/20000286/ + uri: https://api.dev.documentcloud.org/api/documents/20000213/ response: body: string: '' @@ -565,7 +565,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:11 GMT + - Wed, 24 Sep 2025 16:11:29 GMT Referrer-Policy: - same-origin Server: @@ -585,17 +585,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/documents/20000287/ + uri: https://api.dev.documentcloud.org/api/documents/20000214/ response: body: string: '' @@ -613,7 +613,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:11 GMT + - Wed, 24 Sep 2025 16:11:29 GMT Referrer-Policy: - same-origin Server: @@ -633,17 +633,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/documents/20000288/ + uri: https://api.dev.documentcloud.org/api/documents/20000215/ response: body: string: '' @@ -661,7 +661,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:11 GMT + - Wed, 24 Sep 2025 16:11:29 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/fixtures/project.yaml b/tests/cassettes/fixtures/project.yaml index af9759c..5fa2027 100644 --- a/tests/cassettes/fixtures/project.yaml +++ b/tests/cassettes/fixtures/project.yaml @@ -5,9 +5,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive Content-Length: @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://api.dev.documentcloud.org/api/documents/ response: body: - string: '{"id":20000272,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000272-test","created_at":"2025-01-02T20:28:50.994529Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-01-02T20:28:50.994858Z","user":100000}' + string: '{"id":20000199,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000199-test/","created_at":"2025-09-24T16:08:49.270524Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-09-24T16:08:49.270682Z","user":100000}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -31,13 +31,13 @@ interactions: Content-Language: - en Content-Length: - - '615' + - '616' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:28:51 GMT + - Wed, 24 Sep 2025 16:08:49 GMT Referrer-Policy: - same-origin Server: @@ -57,18 +57,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000272/ + uri: https://api.dev.documentcloud.org/api/documents/20000199/ response: body: - string: '{"id":20000272,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000272-test","created_at":"2025-01-02T20:28:50.994529Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:28:51.714237Z","user":100000}' + string: '{"id":20000199,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000199-test/","created_at":"2025-09-24T16:08:49.270524Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:08:50.289430Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -79,13 +79,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:28:52 GMT + - Wed, 24 Sep 2025 16:08:50 GMT Referrer-Policy: - same-origin Server: @@ -105,18 +105,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000272/ + uri: https://api.dev.documentcloud.org/api/documents/20000199/ response: body: - string: '{"id":20000272,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000272-test","created_at":"2025-01-02T20:28:50.994529Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:28:52.757034Z","user":100000}' + string: '{"id":20000199,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000199-test/","created_at":"2025-09-24T16:08:49.270524Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:08:51.380132Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -127,13 +127,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:28:53 GMT + - Wed, 24 Sep 2025 16:08:51 GMT Referrer-Policy: - same-origin Server: @@ -153,18 +153,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000272/ + uri: https://api.dev.documentcloud.org/api/documents/20000199/ response: body: - string: '{"id":20000272,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000272-test","created_at":"2025-01-02T20:28:50.994529Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:28:52.757034Z","user":100000}' + string: '{"id":20000199,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000199-test/","created_at":"2025-09-24T16:08:49.270524Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:08:51.380132Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -175,13 +175,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:28:54 GMT + - Wed, 24 Sep 2025 16:08:52 GMT Referrer-Policy: - same-origin Server: @@ -201,18 +201,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000272/ + uri: https://api.dev.documentcloud.org/api/documents/20000199/ response: body: - string: '{"id":20000272,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000272-test","created_at":"2025-01-02T20:28:50.994529Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:28:52.757034Z","user":100000}' + string: '{"id":20000199,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000199-test/","created_at":"2025-09-24T16:08:49.270524Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:08:51.380132Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -223,13 +223,253 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:08:53 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000199/ + response: + body: + string: '{"id":20000199,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000199-test/","created_at":"2025-09-24T16:08:49.270524Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:08:51.380132Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '617' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:08:54 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000199/ + response: + body: + string: '{"id":20000199,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000199-test/","created_at":"2025-09-24T16:08:49.270524Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:08:51.380132Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '617' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:08:55 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000199/ + response: + body: + string: '{"id":20000199,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000199-test/","created_at":"2025-09-24T16:08:49.270524Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:08:51.380132Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '617' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:08:56 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000199/ + response: + body: + string: '{"id":20000199,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000199-test/","created_at":"2025-09-24T16:08:49.270524Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:08:51.380132Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '617' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:08:57 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000199/ + response: + body: + string: '{"id":20000199,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000199-test/","created_at":"2025-09-24T16:08:49.270524Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:08:58.421301Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:28:55 GMT + - Wed, 24 Sep 2025 16:08:59 GMT Referrer-Policy: - same-origin Server: @@ -249,18 +489,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000272/ + uri: https://api.dev.documentcloud.org/api/documents/20000199/ response: body: - string: '{"id":20000272,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000272-test","created_at":"2025-01-02T20:28:50.994529Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:28:55.489029Z","user":100000}' + string: '{"id":20000199,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000199-test/","created_at":"2025-09-24T16:08:49.270524Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:08:58.421301Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -271,13 +511,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:28:56 GMT + - Wed, 24 Sep 2025 16:09:00 GMT Referrer-Policy: - same-origin Server: @@ -297,18 +537,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000272/ + uri: https://api.dev.documentcloud.org/api/documents/20000199/ response: body: - string: '{"id":20000272,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000272-test","created_at":"2025-01-02T20:28:50.994529Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:28:57.424689Z","user":100000}' + string: '{"id":20000199,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000199-test/","created_at":"2025-09-24T16:08:49.270524Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:09:00.406272Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -319,13 +559,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:28:57 GMT + - Wed, 24 Sep 2025 16:09:01 GMT Referrer-Policy: - same-origin Server: @@ -340,15 +580,15 @@ interactions: code: 200 message: OK - request: - body: '{"title": "This is a project for testing de8d0fca-731e-4c53-a143-252dd93ddc3a", + body: '{"title": "This is a project for testing 45fa0a7c-cdbc-479b-9c8f-c228b89681e7", "description": "This is a project for testing", "private": true}' headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive Content-Length: @@ -356,14 +596,14 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://api.dev.documentcloud.org/api/projects/ response: body: - string: '{"id":200070,"created_at":"2025-01-02T20:28:57.704656Z","description":"This - is a project for testing","edit_access":true,"add_remove_access":true,"private":true,"slug":"this-is-a-project-for-testing-de8d0fca-731e-4c53-a143-252dd93ddc3a","title":"This - is a project for testing de8d0fca-731e-4c53-a143-252dd93ddc3a","updated_at":"2025-01-02T20:28:57.704829Z","user":100000,"pinned":true}' + string: '{"id":200056,"created_at":"2025-09-24T16:09:01.241768Z","description":"This + is a project for testing","edit_access":true,"add_remove_access":true,"private":true,"slug":"this-is-a-project-for-testing-45fa0a7c-cdbc-479b-9c8f-c228b89681e7","title":"This + is a project for testing 45fa0a7c-cdbc-479b-9c8f-c228b89681e7","updated_at":"2025-09-24T16:09:01.241966Z","user":100000,"pinned":true}' headers: Allow: - GET, POST, HEAD, OPTIONS @@ -378,7 +618,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:28:57 GMT + - Wed, 24 Sep 2025 16:09:01 GMT Referrer-Policy: - same-origin Server: @@ -393,14 +633,14 @@ interactions: code: 201 message: Created - request: - body: '[{"document": 20000272}]' + body: '[{"document": 20000199}]' headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive Content-Length: @@ -408,12 +648,12 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: PUT - uri: https://api.dev.documentcloud.org/api/projects/200070/documents/ + uri: https://api.dev.documentcloud.org/api/projects/200056/documents/ response: body: - string: '[{"document":20000272,"edit_access":true}]' + string: '[{"document":20000199,"edit_access":true}]' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -430,7 +670,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:28:57 GMT + - Wed, 24 Sep 2025 16:09:01 GMT Referrer-Policy: - same-origin Server: @@ -450,17 +690,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/projects/200070/ + uri: https://api.dev.documentcloud.org/api/projects/200056/ response: body: string: '' @@ -476,7 +716,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:09 GMT + - Wed, 24 Sep 2025 16:11:27 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/fixtures/project_factory.yaml b/tests/cassettes/fixtures/project_factory.yaml index dec4569..02d2473 100644 --- a/tests/cassettes/fixtures/project_factory.yaml +++ b/tests/cassettes/fixtures/project_factory.yaml @@ -5,17 +5,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/projects/200071/ + uri: https://api.dev.documentcloud.org/api/projects/200057/ response: body: string: '' @@ -31,7 +31,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:09 GMT + - Wed, 24 Sep 2025 16:11:29 GMT Referrer-Policy: - same-origin Server: @@ -51,17 +51,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/projects/200072/ + uri: https://api.dev.documentcloud.org/api/projects/200058/ response: body: string: '' @@ -77,7 +77,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:09 GMT + - Wed, 24 Sep 2025 16:11:29 GMT Referrer-Policy: - same-origin Server: @@ -97,17 +97,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/projects/200073/ + uri: https://api.dev.documentcloud.org/api/projects/200059/ response: body: string: '' @@ -123,7 +123,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:09 GMT + - Wed, 24 Sep 2025 16:11:29 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/fixtures/rate_client.yaml b/tests/cassettes/fixtures/rate_client.yaml index 05af3ca..9485320 100644 --- a/tests/cassettes/fixtures/rate_client.yaml +++ b/tests/cassettes/fixtures/rate_client.yaml @@ -5,7 +5,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive Content-Length: @@ -13,36 +13,36 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://dev.squarelet.com/api/token/ response: body: - string: '{"refresh":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTczNTkzNjE3MiwianRpIjoiYTkwZWM1NDYzYTJmNGJkYzkxYmE0OWUwNDJhMThlZTQiLCJ1c2VyX2lkIjoiZjYwMjllOGEtZDhhMi00MTg4LThhMjEtY2QwNzNhMDJlZTVjIiwiYXVkIjpbInNxdWFyZWxldCIsIm11Y2tyb2NrIiwiZG9jdW1lbnRjbG91ZCJdLCJpc3MiOlsic3F1YXJlbGV0Il19.VQzi3tiquHSCVb29UfkFil3Ny8WZWXVvahou2immTQwIdpMWrzDr3DVbZI7HerT5ZflEZMtNKTmU4-Oc8A67yEXJi1pVwkXHvu5MffGAvln7fB6gUnA3ilReJuZIS9rNlJrpgRUkI-krHvalMA2xUxJVwDk2arf4bmfUVmIIza-CE2V1_l6-iu5yjfUjcsQAXhnd_INioXDnMELBz6zTfAxkp9q9hH3zrlVpb_fOtCoOHoAfAXsXKHTCmRwTqbjIwcYq0QpeuZ4KlMH1ChtJ66MyyqZvnxpIzjVTxxjWTBocBIyGcKtfUeRzX-XTTP6h9WiiY0_J3ft1J9vejU1IFw","access":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcyLCJqdGkiOiI1Yjc4ZGFkMGI3OTE0ZWVmYjM1ZWZhZWNjNWU2NmRkZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.PAxldB-wF4e0brniuTYlKO4bTO9J4A7-rd5Y4RDp2YRBS0wTSMpouEYK5Msb5GNPtMHs7A_0jiG5izzxOUlGFUCr-TVHnqEPuJwPB9UyEkS-Dh9aqlwEH7r4O81VBIITKgvnvvzt2OANZu5gWcq2k-oRFGMOsg4slY6QwHNZxc9AMvccc7d5HA8-9PIRHYDGJPvw0J3xS5VHAX7y5k3uSS8Y6DL6P7tWdsRNmAo0O3OmCX50XPxi5kZcmASfQVZw2UrTm_dqgesljq-sb_kbeVM6FcoupYJPzfjuGaFLx0pr2KiYLmlQvgPdCBZEtRyxmqrKjM5MWRgGp5phGCemmw"}' + string: '{"refresh":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTc1ODgxNjU5MiwiaWF0IjoxNzU4NzMwMTkyLCJqdGkiOiJmNmM4OGJiMzFmMTc0NmYyODQxZDcwMjExYjQ4ZGFmYyIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.HpfN4WVsSAuz2WwY982-JNNkGrRjTZfZxMfeV3NuGuWGBW00lwvZ_XCE00a-QV3mja4IPOz26b-EkB3EZ9kJip7-lf7wM-np8jgeM9ax0VY40WefJlSxhZ9kf9QpglRHb6hvADBKxwc0UZOxkA4yJ2zz5WofiSz2nV2sIKTPIe7vSt_djakGnllaG7lpXJBUMRsGDOREWUvkBpdBlVjXBDlpZAd0tQQ3mhobsgY8sYZU8Ik6J1zW4eek87JmgvN7vqbgGOhJ0ACcfpcZD_Q9DYNgWXXWHN3A7xV-e9rsGbn6ByELNVBV4CUVYpkSlLwe5bO48bBEc_n-idLaqt2Ymw","access":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkyLCJpYXQiOjE3NTg3MzAxOTIsImp0aSI6IjU5YmNiM2Y2NDIxODRlMjBhZTkxMDJmNzcxY2YxZjVjIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.wCg8nGWDXmp-Lq8Da1Ab2yZX0empxSlK_TX9UnvYZT1P1lLCGmZuxmJ_6iXXHM2hnZO4b020LLjLPQiGDGhmr07eKuJwavDCDUIQrHREx42suZ3vyltT5yuRpoV0HEXChtg-9SuT2Pq-v7DrVhdl-_3SOqfMUwwmgoiLM0gs28FWsdetW8quQCnSQ8oqWQQsOLzNeH6M9-Veb3RB2jIgasON9x3tsJBKARCNxJS16L4igugJotCrEhPgfPhqNo6QxPsqlrEqF7QvH3iQwg71vM5yTWMcu3HaOSuJbEb-aTJTDVr81SXEPSFd-zkVGB3UIjujkFRgw7uB2PVAdSlR7A"}' headers: Allow: - POST, OPTIONS Connection: - keep-alive Content-Length: - - '1313' + - '1359' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:32 GMT + - Wed, 24 Sep 2025 16:09:52 GMT Referrer-Policy: - same-origin Server: - nginx/1.25.2 Server-Timing: - - TimerPanel_utime;dur=265.99899999999366;desc="User CPU time", TimerPanel_stime;dur=79.65000000000089;desc="System - CPU time", TimerPanel_total;dur=345.64899999999454;desc="Total CPU time", - TimerPanel_total_time;dur=103.85584831237793;desc="Elapsed time", SQLPanel_sql_time;dur=5.276203155517578;desc="SQL - 3 queries", CachePanel_total_time;dur=0;desc="Cache 0 Calls" + - TimerPanel_utime;dur=242.89099999998598;desc="User CPU time", TimerPanel_stime;dur=59.72099999999614;desc="System + CPU time", TimerPanel_total;dur=302.6119999999821;desc="Total CPU time", TimerPanel_total_time;dur=141.50785699894186;desc="Elapsed + time", SQLPanel_sql_time;dur=5.120134010212496;desc="SQL 4 queries", CachePanel_total_time;dur=0;desc="Cache + 0 Calls" Set-Cookie: - - op_browser_state=c253bb5b9d23f0670eb45f87ff522c6dad5d1366f8084ced5ef3c567; + - op_browser_state=f5448717470b879d75a31d1e1e832e10c24a7586f91c49d672dea82f; Path=/ Vary: - Accept, Origin, Cookie @@ -50,6 +50,8 @@ interactions: - nosniff X-Frame-Options: - DENY + djdt-store-id: + - 672ee2a117e14e449191feb522fc27ad status: code: 200 message: OK diff --git a/tests/cassettes/short_fixtures/short_client.yaml b/tests/cassettes/short_fixtures/short_client.yaml index 4dafce0..b470bc2 100644 --- a/tests/cassettes/short_fixtures/short_client.yaml +++ b/tests/cassettes/short_fixtures/short_client.yaml @@ -5,7 +5,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive Content-Length: @@ -13,36 +13,36 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://dev.squarelet.com/api/token/ response: body: - string: '{"refresh":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTczNTg1MDAzMiwianRpIjoiNzFkNmNjOWY2MTRjNDhhZjlmNzQ0MTcyMjJiNzkwZjciLCJ1c2VyX2lkIjoiZjYwMjllOGEtZDhhMi00MTg4LThhMjEtY2QwNzNhMDJlZTVjIiwiYXVkIjpbInNxdWFyZWxldCIsIm11Y2tyb2NrIiwiZG9jdW1lbnRjbG91ZCJdLCJpc3MiOlsic3F1YXJlbGV0Il19.opKXe8RGn6DZXDjiJvpeV-T1fW1ue01uNQLCgS8KSl2isI7ilzyTLqTPC97mM8d87BEb8jTt2HPwWsAL7aNDYZVt8BvGRcNx4zHRCpul0o8YGTOdE-4ztzKSGoPr7yg_wKkiJeM_vGX-KvNomc2G8qkhbqjhC_OCIKv1glLZrkvrshvJg237dcbjt2sgfy3ZcCPHOgPR7vZ9RE97f7dLjVxFC4IUWznWGoX9ihvHt536F4aeFYpbuGWFiYOapMnSDFHMLsEVDblknPFhkoM8tdj0fNs1WKOZrA7kwovjCD5b1tv4pIKBBsxIK1hwhmQBfFip9H3b7VQ7yWBBnGpMWw","access":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDI5LCJqdGkiOiIwMTQ4ZWViMzQ5NzI0ODNmOWFmNWZhNmM3MGYzYjM0ZSIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.EL19djzJOv_h7chor0l-U-K1bnv0JWL-2w4hTHYRGwXczGuT2fz4HH1wep4I0kEh1B-_KHP7FtiTSuwA8kvwj3BMkcQktc87HNDp_2gU4IGQFr_SBqqZg0ETGaVsPY9lg1ZLpD_uwniAmvZSU9kMwVB-CMSw3jbAVKdLbzSM73-m2u_gL_e9UUO62xZ4ChU-KDk-OeUmsOfNwQl493T-Q_nSczpQo6S7gsUCdJNgOqEY1FAuh_ditiwJuDO6I45C-g0IMoHqCPViZYL--osRwpOFEC4Hl0pEcSgnMq6KzSsmxwdP5Pig88IW34EdjUdHxx-negKVHqCoKt-wLX7uig"}' + string: '{"refresh":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTc1ODY3MDM4NiwiaWF0IjoxNzU4NjcwMzgxLCJqdGkiOiJkYmY4MGRjMDNlYWM0MzcwYWQ1YTIyNzZlZmQwYjBmZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.WVgMIxP537VM0J4u9G07bxTh7ZvdcI0icLjcl6gTDj3t2R0gVPofNX6prnwO2gJBqQev2ZgOceAZV_yUqKq_hTC4pmFtlbdCzDOJGbCFvje_--cqShVitzRBgy1BgCStun1BpVQVZppft1ovvly5WZxv1pXSNOs2Uq2a4cN0OfPEG-1TIp3CVssmoAcobZpDGkc0QQFSlK1T8EbnxcpUMUZxVfiW1r09Pp838-1FN2J4xtD8QuVDpQPVnJKmHTg2MJVsnl46f70uVKFlIyJ0pH7BSwIIM6C6KekA5jsefoE_kCzdAsbSqdSwp8z3qcrAGoVekJCofSGIkjFv5aF24A","access":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NjcwMzgzLCJpYXQiOjE3NTg2NzAzODEsImp0aSI6IjE5YTUwZjQyMmEwZjRjYzJhYWNiZmIzOTdkYTU1ZmVkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.Q_qJv0FPUqwSjU_c0jjO-mZc-SETry2-ANlPbyopnwrzr0Jv5Uv4P2nqYVaWnKpr4AsQ6oBIyIPyeTkGbGO72aAVwPqU6FtCn2iyNT2qhczVFd3taz-DVfPJ6-xko8-eSU9FGM531ebTV-UxhrceRURqgSYs7Xzj-pk0j-nxU47RpRflrXYW7Q3V5r51StlKoIvzcFOgNgmCl_8pczrvPa1eQKz__FmxF8gb5FBaU8M6UT2AuaWH_5qv5pvU32U9hX20MNv-kpdIoPgkqMc3i4I1ZOj1gqeWZV0V_XPSasNFiuBmGrgCBOVYQZKgSiieu_2hO1PxljNkLh5hCIo83w"}' headers: Allow: - POST, OPTIONS Connection: - keep-alive Content-Length: - - '1313' + - '1359' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:33:47 GMT + - Tue, 23 Sep 2025 23:33:02 GMT Referrer-Policy: - same-origin Server: - nginx/1.25.2 Server-Timing: - - TimerPanel_utime;dur=335.65200000000004;desc="User CPU time", TimerPanel_stime;dur=91.332;desc="System - CPU time", TimerPanel_total;dur=426.98400000000004;desc="Total CPU time", - TimerPanel_total_time;dur=244.24362182617188;desc="Elapsed time", SQLPanel_sql_time;dur=8.667945861816406;desc="SQL - 3 queries", CachePanel_total_time;dur=0;desc="Cache 0 Calls" + - TimerPanel_utime;dur=283.12800000000004;desc="User CPU time", TimerPanel_stime;dur=67.37599999999999;desc="System + CPU time", TimerPanel_total;dur=350.504;desc="Total CPU time", TimerPanel_total_time;dur=221.3405980000971;desc="Elapsed + time", SQLPanel_sql_time;dur=5.318226008967031;desc="SQL 4 queries", CachePanel_total_time;dur=0;desc="Cache + 0 Calls" Set-Cookie: - - op_browser_state=ca7b2917673bad01a70c57734db274ab516b979b655517a5244357fc; + - op_browser_state=39a769c712d3b44d58f9f44ca8e01f5fab84591bf031542c96ad9f30; Path=/ Vary: - Accept, Origin, Cookie @@ -50,6 +50,8 @@ interactions: - nosniff X-Frame-Options: - DENY + djdt-store-id: + - ff3941dd3b1b46e1868aeee1a6e8991b status: code: 200 message: OK diff --git a/tests/cassettes/short_fixtures/test_expired_access_token.yaml b/tests/cassettes/short_fixtures/test_expired_access_token.yaml index 9fe1405..d9a41ea 100644 --- a/tests/cassettes/short_fixtures/test_expired_access_token.yaml +++ b/tests/cassettes/short_fixtures/test_expired_access_token.yaml @@ -1,48 +1,48 @@ interactions: - request: - body: '{"refresh": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTczNTg1MDAzMiwianRpIjoiNzFkNmNjOWY2MTRjNDhhZjlmNzQ0MTcyMjJiNzkwZjciLCJ1c2VyX2lkIjoiZjYwMjllOGEtZDhhMi00MTg4LThhMjEtY2QwNzNhMDJlZTVjIiwiYXVkIjpbInNxdWFyZWxldCIsIm11Y2tyb2NrIiwiZG9jdW1lbnRjbG91ZCJdLCJpc3MiOlsic3F1YXJlbGV0Il19.opKXe8RGn6DZXDjiJvpeV-T1fW1ue01uNQLCgS8KSl2isI7ilzyTLqTPC97mM8d87BEb8jTt2HPwWsAL7aNDYZVt8BvGRcNx4zHRCpul0o8YGTOdE-4ztzKSGoPr7yg_wKkiJeM_vGX-KvNomc2G8qkhbqjhC_OCIKv1glLZrkvrshvJg237dcbjt2sgfy3ZcCPHOgPR7vZ9RE97f7dLjVxFC4IUWznWGoX9ihvHt536F4aeFYpbuGWFiYOapMnSDFHMLsEVDblknPFhkoM8tdj0fNs1WKOZrA7kwovjCD5b1tv4pIKBBsxIK1hwhmQBfFip9H3b7VQ7yWBBnGpMWw"}' + body: '{"refresh": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTc1ODY3MDM4NiwiaWF0IjoxNzU4NjcwMzgxLCJqdGkiOiJkYmY4MGRjMDNlYWM0MzcwYWQ1YTIyNzZlZmQwYjBmZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.WVgMIxP537VM0J4u9G07bxTh7ZvdcI0icLjcl6gTDj3t2R0gVPofNX6prnwO2gJBqQev2ZgOceAZV_yUqKq_hTC4pmFtlbdCzDOJGbCFvje_--cqShVitzRBgy1BgCStun1BpVQVZppft1ovvly5WZxv1pXSNOs2Uq2a4cN0OfPEG-1TIp3CVssmoAcobZpDGkc0QQFSlK1T8EbnxcpUMUZxVfiW1r09Pp838-1FN2J4xtD8QuVDpQPVnJKmHTg2MJVsnl46f70uVKFlIyJ0pH7BSwIIM6C6KekA5jsefoE_kCzdAsbSqdSwp8z3qcrAGoVekJCofSGIkjFv5aF24A"}' headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive Content-Length: - - '659' + - '682' Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://dev.squarelet.com/api/refresh/ response: body: - string: '{"access":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDI5LCJqdGkiOiIwMGVhNmFiMTVjYjA0MWEyYWM2NWJmZDliYTkyM2RjYyIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.e1UFQsGYceHQv2ZWuYDiflEWpYduaIu0QvKFEaYYj4TOaJ1eF7NJ2ESJe_S6tQgCijUQBduUK3qq6_Iy5GJh5oUOWfKiJ_vxTpJ1QE9DPUfP1VD8aG4lLXZDUo-_B2GBu8bOEtTaOx25TGSksJAcBg3PWqmDApGzlpABZVmmpxnvLi9e7Wytpw7z-CbtEWvxVRHK5x3dvEptdpTEBXA0_5DLo0e18NnBZFY6hgN7XXDjZm2RvRpjjOLX6aGW5MWQ0LuKsSw2GhDFaV4gwRvPcghc7ZBHI8kjbBN6mmbdjPrOzxGZSUon_k2YW5CjOL0Un06Rm9ZysN8n47F2wUbVdg","refresh":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTczNTg1MDAzMiwianRpIjoiYzk5MGNiYzFiMjVkNGE2Y2I3YjFhNDljNzRlMWMzMTkiLCJ1c2VyX2lkIjoiZjYwMjllOGEtZDhhMi00MTg4LThhMjEtY2QwNzNhMDJlZTVjIiwiYXVkIjpbInNxdWFyZWxldCIsIm11Y2tyb2NrIiwiZG9jdW1lbnRjbG91ZCJdLCJpc3MiOlsic3F1YXJlbGV0Il19.YU1M0baGlsbCvgqo2cIJyBba5VDNgANN37SpjElueGz8UR0AOHGnmb9Jsyom9u_ePqIMh6deDV1XKQBiRSFZ3JjucQLGsPUIZpJTvsp2PEDpN07TkjgmfsdZXb_b8Ne1pdEaTwcJLOMjCIP-Iz-2nnm7up3hoIb0LKEz6iLyof0-LWVh711hHTlhQrUmvLZCqwcXwNCGd6raQ9hVI_nTSaiTrFbSTYvyQIQ9aGref5h-r8oX1liD-aGI_FlHbUgxHG3U1rYaZ1BbJJj76bpkEBerSwV0nORNYfPQEKrGr7OucvJNNb7j3RDXv71ksBOEgW5QCd5G4LCNzSskEwkghg"}' + string: '{"access":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NjcwMzg0LCJpYXQiOjE3NTg2NzAzODEsImp0aSI6ImM5MTE3ZDhiZWQ1YTQ0ZTliNmQ5NmNmYjM3ZDFmZTgxIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.Mqk6StLZy_vRNYA8z5AHU1TPr1cAK5p6lRyYZfh4V80Gcgx1iyrL8z82bdWL18cfc5NehFYFpg74GuXBOOUZaBEVDokSQ--WIXvLk7ggE3P81HTbDGL7lCa4IB_p0RqPgK-6jd2cChxJAxCl7GvtKpxQDMtWkAbxmeo05RIeeZ_PBZDR30woiS6fNe_S8ZKS-QnBKE0Dk-pYj1swSkdNCYuCkeFYEhVKePi8ueSBOQ35s608FeleZBA948Hyw2xT9klDnvu22ahF37QiWFBReE8VaqX8Rw8SxRI3N5VfWtRNySBoJJ-_84O86TuperajHt6dkBUhty-bud5P1AzBbA","refresh":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTc1ODY3MDM4NywiaWF0IjoxNzU4NjcwMzgyLCJqdGkiOiJhNmJmMzYzYTUyMzE0YWM0YjBjZTVmMTgyMzA2ZGVkNiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.Gq9JIkNW-jy7cVl_ThGTwBIHW9IidHub_Isp5q_tiIorYNTvm0QWBXYRPs80Z8rJD-ssmWiofRruH1iHeo47Nw-rpIdT4THlM_QkY1YlkHlZdcEII6T76WPsS3UCMNOYuwctBJ1pLIV3Rp4ll9i6UuW10F1wAsgSpjpJ-2QoloZCeBAD8fk5vTi1JmmzYGZDluAw4t_EmrXxFEKRrO25epGpU5HouZ3Hgq6OQGl1ktGV8HzHa04zmrdfLzqnzCQC2zbuEafZRv3n8MyHhmV8jq5ZHadC2PUjiOHvKAgN8SNpf7bS_tpoLz45o2KGvaf1xgQ7LXB78F9VvJZF-B4rBg"}' headers: Allow: - POST, OPTIONS Connection: - keep-alive Content-Length: - - '1313' + - '1359' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:33:47 GMT + - Tue, 23 Sep 2025 23:33:02 GMT Referrer-Policy: - same-origin Server: - nginx/1.25.2 Server-Timing: - - TimerPanel_utime;dur=25.203000000000088;desc="User CPU time", TimerPanel_stime;dur=4.658999999999969;desc="System - CPU time", TimerPanel_total;dur=29.86200000000006;desc="Total CPU time", TimerPanel_total_time;dur=33.85734558105469;desc="Elapsed - time", SQLPanel_sql_time;dur=0.6275177001953125;desc="SQL 2 queries", CachePanel_total_time;dur=0;desc="Cache - 0 Calls" + - TimerPanel_utime;dur=124.31199999999998;desc="User CPU time", TimerPanel_stime;dur=0.0;desc="System + CPU time", TimerPanel_total;dur=124.31199999999998;desc="Total CPU time", + TimerPanel_total_time;dur=138.8310239999555;desc="Elapsed time", SQLPanel_sql_time;dur=3.6951670044800267;desc="SQL + 9 queries", CachePanel_total_time;dur=0;desc="Cache 0 Calls" Set-Cookie: - - op_browser_state=ca7b2917673bad01a70c57734db274ab516b979b655517a5244357fc; + - op_browser_state=39a769c712d3b44d58f9f44ca8e01f5fab84591bf031542c96ad9f30; Path=/ Vary: - Accept, Origin, Cookie @@ -50,6 +50,8 @@ interactions: - nosniff X-Frame-Options: - DENY + djdt-store-id: + - f39e1685024440aabc94c9a3ade768db status: code: 200 message: OK @@ -59,13 +61,13 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDI5LCJqdGkiOiIwMGVhNmFiMTVjYjA0MWEyYWM2NWJmZDliYTkyM2RjYyIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.e1UFQsGYceHQv2ZWuYDiflEWpYduaIu0QvKFEaYYj4TOaJ1eF7NJ2ESJe_S6tQgCijUQBduUK3qq6_Iy5GJh5oUOWfKiJ_vxTpJ1QE9DPUfP1VD8aG4lLXZDUo-_B2GBu8bOEtTaOx25TGSksJAcBg3PWqmDApGzlpABZVmmpxnvLi9e7Wytpw7z-CbtEWvxVRHK5x3dvEptdpTEBXA0_5DLo0e18NnBZFY6hgN7XXDjZm2RvRpjjOLX6aGW5MWQ0LuKsSw2GhDFaV4gwRvPcghc7ZBHI8kjbBN6mmbdjPrOzxGZSUon_k2YW5CjOL0Un06Rm9ZysN8n47F2wUbVdg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NjcwMzg0LCJpYXQiOjE3NTg2NzAzODEsImp0aSI6ImM5MTE3ZDhiZWQ1YTQ0ZTliNmQ5NmNmYjM3ZDFmZTgxIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.Mqk6StLZy_vRNYA8z5AHU1TPr1cAK5p6lRyYZfh4V80Gcgx1iyrL8z82bdWL18cfc5NehFYFpg74GuXBOOUZaBEVDokSQ--WIXvLk7ggE3P81HTbDGL7lCa4IB_p0RqPgK-6jd2cChxJAxCl7GvtKpxQDMtWkAbxmeo05RIeeZ_PBZDR30woiS6fNe_S8ZKS-QnBKE0Dk-pYj1swSkdNCYuCkeFYEhVKePi8ueSBOQ35s608FeleZBA948Hyw2xT9klDnvu22ahF37QiWFBReE8VaqX8Rw8SxRI3N5VfWtRNySBoJJ-_84O86TuperajHt6dkBUhty-bud5P1AzBbA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/users/me/ response: @@ -86,7 +88,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:33:51 GMT + - Tue, 23 Sep 2025 23:33:05 GMT Referrer-Policy: - same-origin Server: @@ -101,49 +103,49 @@ interactions: code: 403 message: Forbidden - request: - body: '{"refresh": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTczNTg1MDAzMiwianRpIjoiYzk5MGNiYzFiMjVkNGE2Y2I3YjFhNDljNzRlMWMzMTkiLCJ1c2VyX2lkIjoiZjYwMjllOGEtZDhhMi00MTg4LThhMjEtY2QwNzNhMDJlZTVjIiwiYXVkIjpbInNxdWFyZWxldCIsIm11Y2tyb2NrIiwiZG9jdW1lbnRjbG91ZCJdLCJpc3MiOlsic3F1YXJlbGV0Il19.YU1M0baGlsbCvgqo2cIJyBba5VDNgANN37SpjElueGz8UR0AOHGnmb9Jsyom9u_ePqIMh6deDV1XKQBiRSFZ3JjucQLGsPUIZpJTvsp2PEDpN07TkjgmfsdZXb_b8Ne1pdEaTwcJLOMjCIP-Iz-2nnm7up3hoIb0LKEz6iLyof0-LWVh711hHTlhQrUmvLZCqwcXwNCGd6raQ9hVI_nTSaiTrFbSTYvyQIQ9aGref5h-r8oX1liD-aGI_FlHbUgxHG3U1rYaZ1BbJJj76bpkEBerSwV0nORNYfPQEKrGr7OucvJNNb7j3RDXv71ksBOEgW5QCd5G4LCNzSskEwkghg"}' + body: '{"refresh": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTc1ODY3MDM4NywiaWF0IjoxNzU4NjcwMzgyLCJqdGkiOiJhNmJmMzYzYTUyMzE0YWM0YjBjZTVmMTgyMzA2ZGVkNiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.Gq9JIkNW-jy7cVl_ThGTwBIHW9IidHub_Isp5q_tiIorYNTvm0QWBXYRPs80Z8rJD-ssmWiofRruH1iHeo47Nw-rpIdT4THlM_QkY1YlkHlZdcEII6T76WPsS3UCMNOYuwctBJ1pLIV3Rp4ll9i6UuW10F1wAsgSpjpJ-2QoloZCeBAD8fk5vTi1JmmzYGZDluAw4t_EmrXxFEKRrO25epGpU5HouZ3Hgq6OQGl1ktGV8HzHa04zmrdfLzqnzCQC2zbuEafZRv3n8MyHhmV8jq5ZHadC2PUjiOHvKAgN8SNpf7bS_tpoLz45o2KGvaf1xgQ7LXB78F9VvJZF-B4rBg"}' headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive Content-Length: - - '659' + - '682' Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://dev.squarelet.com/api/refresh/ response: body: - string: '{"access":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMzLCJqdGkiOiI2NzZiOTgzZTY5NWI0YzNjODVmZDU0OWFkZjcwNjM5ZCIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.RfwX9oFSKBvB9cl5NPAyblqj116I5-m3zEWR_XjwKpxw_SgfU5wntKRVtLGSLiA5yb3vDeZ-ujU5WA3FCj56IiNyuU6oJnOjnbp6lTPkeGIFFyieKz_4J5NXpift4qiLiKJVt0R6029FM3fBpjizFHMD_DNu8oyLPj-7qOJ_ZY0P_f06Uj9K-Sd3IIuH6XtSTrDv6kJm9ZG0oyYQt5qN3VJozpG7fY_8DCF2ol0LgDoN28InjygWmNKUnNQKmQqWzebtf-VdVdtxx_KEJmbBGwx-c5OEg3ZR4BLILJh5AZU2pLA6v4XnB1OCnNJfhmpPCQS96xmRA1lLKz8DgnHTSA","refresh":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTczNTg1MDAzNiwianRpIjoiODRkMDAxYzFmZTUwNDM2MWEzZTdjYTdhNzAzYmE4OGUiLCJ1c2VyX2lkIjoiZjYwMjllOGEtZDhhMi00MTg4LThhMjEtY2QwNzNhMDJlZTVjIiwiYXVkIjpbInNxdWFyZWxldCIsIm11Y2tyb2NrIiwiZG9jdW1lbnRjbG91ZCJdLCJpc3MiOlsic3F1YXJlbGV0Il19.v2Gx5efthho6r8wcG2pdiyDAW07VtjttM3FnsGKpfio6C_UQUTqSb1G9CgxejRJR01f1a3slbBuczV69RjWZiWgN-DbplCXNNKcQ1imjadf2Bbffu2JzhcRqdZEIl_1iG2Ou4vq3RlNFmEzX2AYTuWvGEnmI5rNC-so_htWZINac5fgBm-5c0cPc35TIkYDinisAaebK0vwklYjKVWPL4TTI0x5n4k5l9R7QDVcFi0-YdNQYQUT8xWPaeQXjP1yll0dt7aSIQ9RePALmQZw9u7aA4PjE9tq5xUjQNmWutLtycZ2HBCZNNryOlB8Vy-kntZdov1MfqWnw6FAKLM6xrA"}' + string: '{"access":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NjcwMzg3LCJpYXQiOjE3NTg2NzAzODIsImp0aSI6IjE0YTA5NDA2OWM3MDQwNjk4ZTBjMzM5OTJmNWQwNTI5IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.D5tyAI6cn2nhNT7kPvnJRB2-bPDn2QOq0baX5Gl1qxzME6WO0Ay08Y4zVmshuQ5qYAncfJqJHKDoSnBsuJWBsuxq2TK43vdvBCU4V0IgDNFiE9zP5qxCnmzXVlafG38WOyK_ZWHPpDYpV-JrTj7ENZegJxGLqndg7SD8JewlLbmvZjO4hDXMeuIDY0rQ0i2d4s2eI-QfqS1aDMUQFKx10wbkh0B0q44v4kUYArfJtQQDrM41nMtP9nsoAxnuv3_YeFg7IWvIiFioBx_gfnVEBnpW3FoqCXmrYwMjcOfDx_JOQwT7iq6xrqD3VZWV3_FmEyiTVP1aF-mJGcvwJuuQYw","refresh":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTc1ODY3MDM5MCwiaWF0IjoxNzU4NjcwMzg1LCJqdGkiOiIxYzY0MzFhZTU1MDk0MzUxOWRmZDk2NzEwODQ5Yjg4NCIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.rYIDE2_6EmG1rQa-l4kagUYUh181nin-aHdshBboa5Vosr7b7FErEDLKp5HEss56HBwkEf5RvDcnnN7jbcMSUVAwUzlaE7MQpiu7w-4X8CBtZMpjmp3DYUfb2D-hiIoUQm25c1kHF1W2CH7Lwy8u0WzBb19TrSi-2WvV2DDe-gJslBLgVdiUbjUhQPFcM0FlQud-8U6d_PhHzQ4wePsiVTUdFwnqq0I1pRmVxKBouqEmneWtF93qbvONdMwX3I6qzNizsTKXAaSc6XlkwXEl4qd0wsjCErW5x1j-eWk1-quSj7KkwWXnrSMRrdd9M8g51PZf43fAECT7yBLLkuemxA"}' headers: Allow: - POST, OPTIONS Connection: - keep-alive Content-Length: - - '1313' + - '1359' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:33:51 GMT + - Tue, 23 Sep 2025 23:33:05 GMT Referrer-Policy: - same-origin Server: - nginx/1.25.2 Server-Timing: - - TimerPanel_utime;dur=39.982000000000184;desc="User CPU time", TimerPanel_stime;dur=2.2940000000000182;desc="System - CPU time", TimerPanel_total;dur=42.2760000000002;desc="Total CPU time", TimerPanel_total_time;dur=47.69539833068848;desc="Elapsed - time", SQLPanel_sql_time;dur=0.6239414215087891;desc="SQL 2 queries", CachePanel_total_time;dur=0;desc="Cache - 0 Calls" + - TimerPanel_utime;dur=115.82899999999997;desc="User CPU time", TimerPanel_stime;dur=1.9859999999999878;desc="System + CPU time", TimerPanel_total;dur=117.81499999999996;desc="Total CPU time", + TimerPanel_total_time;dur=132.8537250010413;desc="Elapsed time", SQLPanel_sql_time;dur=3.6391250177985057;desc="SQL + 9 queries", CachePanel_total_time;dur=0;desc="Cache 0 Calls" Set-Cookie: - - op_browser_state=ca7b2917673bad01a70c57734db274ab516b979b655517a5244357fc; + - op_browser_state=39a769c712d3b44d58f9f44ca8e01f5fab84591bf031542c96ad9f30; Path=/ Vary: - Accept, Origin, Cookie @@ -151,6 +153,8 @@ interactions: - nosniff X-Frame-Options: - DENY + djdt-store-id: + - 6f92885e692e4ec9ad203881b585f50a status: code: 200 message: OK @@ -160,18 +164,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMzLCJqdGkiOiI2NzZiOTgzZTY5NWI0YzNjODVmZDU0OWFkZjcwNjM5ZCIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.RfwX9oFSKBvB9cl5NPAyblqj116I5-m3zEWR_XjwKpxw_SgfU5wntKRVtLGSLiA5yb3vDeZ-ujU5WA3FCj56IiNyuU6oJnOjnbp6lTPkeGIFFyieKz_4J5NXpift4qiLiKJVt0R6029FM3fBpjizFHMD_DNu8oyLPj-7qOJ_ZY0P_f06Uj9K-Sd3IIuH6XtSTrDv6kJm9ZG0oyYQt5qN3VJozpG7fY_8DCF2ol0LgDoN28InjygWmNKUnNQKmQqWzebtf-VdVdtxx_KEJmbBGwx-c5OEg3ZR4BLILJh5AZU2pLA6v4XnB1OCnNJfhmpPCQS96xmRA1lLKz8DgnHTSA + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NjcwMzg3LCJpYXQiOjE3NTg2NzAzODIsImp0aSI6IjE0YTA5NDA2OWM3MDQwNjk4ZTBjMzM5OTJmNWQwNTI5IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.D5tyAI6cn2nhNT7kPvnJRB2-bPDn2QOq0baX5Gl1qxzME6WO0Ay08Y4zVmshuQ5qYAncfJqJHKDoSnBsuJWBsuxq2TK43vdvBCU4V0IgDNFiE9zP5qxCnmzXVlafG38WOyK_ZWHPpDYpV-JrTj7ENZegJxGLqndg7SD8JewlLbmvZjO4hDXMeuIDY0rQ0i2d4s2eI-QfqS1aDMUQFKx10wbkh0B0q44v4kUYArfJtQQDrM41nMtP9nsoAxnuv3_YeFg7IWvIiFioBx_gfnVEBnpW3FoqCXmrYwMjcOfDx_JOQwT7iq6xrqD3VZWV3_FmEyiTVP1aF-mJGcvwJuuQYw Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/users/me/ response: body: - string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"is_staff":true,"name":"test-user","organization":10004,"organizations":[10000,10004],"admin_organizations":[10000,10004],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":""}' + string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"name":"hello + there","organization":10000,"organizations":[10001,10000],"admin_organizations":[10001,10000],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":"sanjin@muckrock.com"}' headers: Allow: - GET, PUT, PATCH, HEAD, OPTIONS @@ -180,13 +185,13 @@ interactions: Content-Language: - en Content-Length: - - '335' + - '340' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:33:51 GMT + - Tue, 23 Sep 2025 23:33:05 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/short_fixtures/test_expired_refresh_token.yaml b/tests/cassettes/short_fixtures/test_expired_refresh_token.yaml index fac7e3c..919227f 100644 --- a/tests/cassettes/short_fixtures/test_expired_refresh_token.yaml +++ b/tests/cassettes/short_fixtures/test_expired_refresh_token.yaml @@ -1,48 +1,48 @@ interactions: - request: - body: '{"refresh": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTczNTg1MDAzNiwianRpIjoiODRkMDAxYzFmZTUwNDM2MWEzZTdjYTdhNzAzYmE4OGUiLCJ1c2VyX2lkIjoiZjYwMjllOGEtZDhhMi00MTg4LThhMjEtY2QwNzNhMDJlZTVjIiwiYXVkIjpbInNxdWFyZWxldCIsIm11Y2tyb2NrIiwiZG9jdW1lbnRjbG91ZCJdLCJpc3MiOlsic3F1YXJlbGV0Il19.v2Gx5efthho6r8wcG2pdiyDAW07VtjttM3FnsGKpfio6C_UQUTqSb1G9CgxejRJR01f1a3slbBuczV69RjWZiWgN-DbplCXNNKcQ1imjadf2Bbffu2JzhcRqdZEIl_1iG2Ou4vq3RlNFmEzX2AYTuWvGEnmI5rNC-so_htWZINac5fgBm-5c0cPc35TIkYDinisAaebK0vwklYjKVWPL4TTI0x5n4k5l9R7QDVcFi0-YdNQYQUT8xWPaeQXjP1yll0dt7aSIQ9RePALmQZw9u7aA4PjE9tq5xUjQNmWutLtycZ2HBCZNNryOlB8Vy-kntZdov1MfqWnw6FAKLM6xrA"}' + body: '{"refresh": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTc1ODY3MDM5MCwiaWF0IjoxNzU4NjcwMzg1LCJqdGkiOiIxYzY0MzFhZTU1MDk0MzUxOWRmZDk2NzEwODQ5Yjg4NCIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.rYIDE2_6EmG1rQa-l4kagUYUh181nin-aHdshBboa5Vosr7b7FErEDLKp5HEss56HBwkEf5RvDcnnN7jbcMSUVAwUzlaE7MQpiu7w-4X8CBtZMpjmp3DYUfb2D-hiIoUQm25c1kHF1W2CH7Lwy8u0WzBb19TrSi-2WvV2DDe-gJslBLgVdiUbjUhQPFcM0FlQud-8U6d_PhHzQ4wePsiVTUdFwnqq0I1pRmVxKBouqEmneWtF93qbvONdMwX3I6qzNizsTKXAaSc6XlkwXEl4qd0wsjCErW5x1j-eWk1-quSj7KkwWXnrSMRrdd9M8g51PZf43fAECT7yBLLkuemxA"}' headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive Content-Length: - - '659' + - '682' Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://dev.squarelet.com/api/refresh/ response: body: - string: '{"access":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMzLCJqdGkiOiJkNThlYmU5ZTE3YzQ0ZWJlYTIyMWVlNmYxMzRjMTQ2NCIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.djjO37CKBpz7bNeAtvtCyDsQtXcsI4w4Gj62EUYnbi4POy3zylDnkBwOKzaDgfY4NAD8UIR4JKVY_ri3DQtXUDzLT4xEpVRLIivcL0UXf6ymDLH0pzp-P7QNaL9JcneFkIg8purKNX1xazL80RGmFe-5csCfATib5qDeX_hewoGBajFrwo9pKRrBa82Gi_jl6GGEvfnmfu3-U6e-o6tbZsmeXDcTefRqhfcSBrPdpxWFiHrT38Hxy_5xNUHKZLMaXNmJKys3o0-baMqZ9jp_TRx0sHNFe_fksopqi98ZIyodOXkstk1t3ySz6oBQvqnSXsG_MYMjxy93WmcSR9z8UA","refresh":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTczNTg1MDAzNiwianRpIjoiNTY2YTViYWI4MjI5NDlhZDgyNmNiODY3YzgzMjQ3ZWIiLCJ1c2VyX2lkIjoiZjYwMjllOGEtZDhhMi00MTg4LThhMjEtY2QwNzNhMDJlZTVjIiwiYXVkIjpbInNxdWFyZWxldCIsIm11Y2tyb2NrIiwiZG9jdW1lbnRjbG91ZCJdLCJpc3MiOlsic3F1YXJlbGV0Il19.fAUhmLkvP-Wx42UtwFkwkV_x6tszK2VNJSLTdO0bxSl58k1xbJpgfb4zQMcroJylgNyfCtvBoEv6YsP81f7yF5dWEmHhXPRecwNxyS78S-d0Br-DS3170uPUXdDvIBWlBLHBaC8Iz9bNV1fiSBA16UeGKx2mNy-1jnSu-wySAhz5YoWQn1rrqAKqsd2udfZ3H149BwfEhnRFFKW0x2dsZE3T-pZXFQnn1PdcgqH3VvCsfZ5CpLn5HaZ-ADVwUt77mIlDojK4GY6THl6nkzo06H7-xf8efPSs1kCGNEtV6LCe5JNNqrfPyA44YE0B65EaoBx1f0ZxJ1r2Im9viZNBgA"}' + string: '{"access":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NjcwMzg3LCJpYXQiOjE3NTg2NzAzODUsImp0aSI6ImQwNmVlZDNmNDZlMjQ2NWM5MTI5YzRjZjYzOWE3Y2FlIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.GcQOKHu2MuNrtOP0mMrdW1jGFZlUcBKz5mr_DJB0ZReR9B0FhH-QeqqCAeQ_N61rQto5imYC2xL0KeBiPSETInMCYwHkWIbdjP0SmqhR5dXsjeAZI88BiMD4KvRtJoM0Zd9RFicTecpd8IpzepxaHVuqh9opCdKKMcNS6QVKR0JjcxuUKDOc_Di8im-8lGI13tgHuudcK9OpFT1dYy--EZQ3qHeC1gORdS5luWW0cd3p3qbHd-C4H2uq4B8aGGV3YwkJx-U2fXd6Z-dsbH5pNfkOy6WaVImwLNpMmGdjRDi0JOB4CUF21Cx2Ac4oSLAH3fSqZIYFX94-FRzqDoJvsQ","refresh":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTc1ODY3MDM5MCwiaWF0IjoxNzU4NjcwMzg1LCJqdGkiOiIxNzdhOGU0MGY3NzI0YjE3OWU2MTU0ZTU1N2NmZjJhYyIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.AU_1f44czjCxlPebZYwzW74_Q5cDEl4eRw0qW9qkuu8h2qhZPxg-_N3sLbe1j7fvLVxvH4njUtrgionQybw0ZexoYp5V5-uQaN7kvD6SjEoENdL251BBtWyYU1ELsii7gGPq9eCOcxzR4E_pWlj3AslSvM0nyb4rjABLwTyj2qcHlfs3Ts-IoeHlbCQ42iN5uKCKfh20ezbDDCm9TiNimXKWwcABNFY0FXVqtNSq-yie4u1bzD6fJjpyGH8MoYLwmVU2A0sHjMbVezPT0eiEDwJyBQ4qVoMP_RofQFNVtp17LZcEiu7hqGoQZz2lAgDJBE_d2ZeGmw_Xs-AKnkLycA"}' headers: Allow: - POST, OPTIONS Connection: - keep-alive Content-Length: - - '1313' + - '1359' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:33:51 GMT + - Tue, 23 Sep 2025 23:33:05 GMT Referrer-Policy: - same-origin Server: - nginx/1.25.2 Server-Timing: - - TimerPanel_utime;dur=29.62700000000007;desc="User CPU time", TimerPanel_stime;dur=4.942000000000002;desc="System - CPU time", TimerPanel_total;dur=34.569000000000074;desc="Total CPU time", - TimerPanel_total_time;dur=38.84553909301758;desc="Elapsed time", SQLPanel_sql_time;dur=0.3571510314941406;desc="SQL - 2 queries", CachePanel_total_time;dur=0;desc="Cache 0 Calls" + - TimerPanel_utime;dur=110.35700000000004;desc="User CPU time", TimerPanel_stime;dur=0.08299999999999974;desc="System + CPU time", TimerPanel_total;dur=110.44000000000004;desc="Total CPU time", + TimerPanel_total_time;dur=123.58859699452296;desc="Elapsed time", SQLPanel_sql_time;dur=2.5116649849223904;desc="SQL + 9 queries", CachePanel_total_time;dur=0;desc="Cache 0 Calls" Set-Cookie: - - op_browser_state=ca7b2917673bad01a70c57734db274ab516b979b655517a5244357fc; + - op_browser_state=39a769c712d3b44d58f9f44ca8e01f5fab84591bf031542c96ad9f30; Path=/ Vary: - Accept, Origin, Cookie @@ -50,6 +50,8 @@ interactions: - nosniff X-Frame-Options: - DENY + djdt-store-id: + - 1d3d6a1c93f14522a0747c1af0cf7f6e status: code: 200 message: OK @@ -59,13 +61,13 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMzLCJqdGkiOiJkNThlYmU5ZTE3YzQ0ZWJlYTIyMWVlNmYxMzRjMTQ2NCIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.djjO37CKBpz7bNeAtvtCyDsQtXcsI4w4Gj62EUYnbi4POy3zylDnkBwOKzaDgfY4NAD8UIR4JKVY_ri3DQtXUDzLT4xEpVRLIivcL0UXf6ymDLH0pzp-P7QNaL9JcneFkIg8purKNX1xazL80RGmFe-5csCfATib5qDeX_hewoGBajFrwo9pKRrBa82Gi_jl6GGEvfnmfu3-U6e-o6tbZsmeXDcTefRqhfcSBrPdpxWFiHrT38Hxy_5xNUHKZLMaXNmJKys3o0-baMqZ9jp_TRx0sHNFe_fksopqi98ZIyodOXkstk1t3ySz6oBQvqnSXsG_MYMjxy93WmcSR9z8UA + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NjcwMzg3LCJpYXQiOjE3NTg2NzAzODUsImp0aSI6ImQwNmVlZDNmNDZlMjQ2NWM5MTI5YzRjZjYzOWE3Y2FlIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.GcQOKHu2MuNrtOP0mMrdW1jGFZlUcBKz5mr_DJB0ZReR9B0FhH-QeqqCAeQ_N61rQto5imYC2xL0KeBiPSETInMCYwHkWIbdjP0SmqhR5dXsjeAZI88BiMD4KvRtJoM0Zd9RFicTecpd8IpzepxaHVuqh9opCdKKMcNS6QVKR0JjcxuUKDOc_Di8im-8lGI13tgHuudcK9OpFT1dYy--EZQ3qHeC1gORdS5luWW0cd3p3qbHd-C4H2uq4B8aGGV3YwkJx-U2fXd6Z-dsbH5pNfkOy6WaVImwLNpMmGdjRDi0JOB4CUF21Cx2Ac4oSLAH3fSqZIYFX94-FRzqDoJvsQ Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/users/me/ response: @@ -86,7 +88,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:33:57 GMT + - Tue, 23 Sep 2025 23:33:11 GMT Referrer-Policy: - same-origin Server: @@ -101,49 +103,49 @@ interactions: code: 403 message: Forbidden - request: - body: '{"refresh": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTczNTg1MDAzNiwianRpIjoiNTY2YTViYWI4MjI5NDlhZDgyNmNiODY3YzgzMjQ3ZWIiLCJ1c2VyX2lkIjoiZjYwMjllOGEtZDhhMi00MTg4LThhMjEtY2QwNzNhMDJlZTVjIiwiYXVkIjpbInNxdWFyZWxldCIsIm11Y2tyb2NrIiwiZG9jdW1lbnRjbG91ZCJdLCJpc3MiOlsic3F1YXJlbGV0Il19.fAUhmLkvP-Wx42UtwFkwkV_x6tszK2VNJSLTdO0bxSl58k1xbJpgfb4zQMcroJylgNyfCtvBoEv6YsP81f7yF5dWEmHhXPRecwNxyS78S-d0Br-DS3170uPUXdDvIBWlBLHBaC8Iz9bNV1fiSBA16UeGKx2mNy-1jnSu-wySAhz5YoWQn1rrqAKqsd2udfZ3H149BwfEhnRFFKW0x2dsZE3T-pZXFQnn1PdcgqH3VvCsfZ5CpLn5HaZ-ADVwUt77mIlDojK4GY6THl6nkzo06H7-xf8efPSs1kCGNEtV6LCe5JNNqrfPyA44YE0B65EaoBx1f0ZxJ1r2Im9viZNBgA"}' + body: '{"refresh": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTc1ODY3MDM5MCwiaWF0IjoxNzU4NjcwMzg1LCJqdGkiOiIxNzdhOGU0MGY3NzI0YjE3OWU2MTU0ZTU1N2NmZjJhYyIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.AU_1f44czjCxlPebZYwzW74_Q5cDEl4eRw0qW9qkuu8h2qhZPxg-_N3sLbe1j7fvLVxvH4njUtrgionQybw0ZexoYp5V5-uQaN7kvD6SjEoENdL251BBtWyYU1ELsii7gGPq9eCOcxzR4E_pWlj3AslSvM0nyb4rjABLwTyj2qcHlfs3Ts-IoeHlbCQ42iN5uKCKfh20ezbDDCm9TiNimXKWwcABNFY0FXVqtNSq-yie4u1bzD6fJjpyGH8MoYLwmVU2A0sHjMbVezPT0eiEDwJyBQ4qVoMP_RofQFNVtp17LZcEiu7hqGoQZz2lAgDJBE_d2ZeGmw_Xs-AKnkLycA"}' headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive Content-Length: - - '659' + - '682' Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://dev.squarelet.com/api/refresh/ response: body: - string: '{"detail":"Token is invalid or expired","code":"token_not_valid"}' + string: '{"detail":"Token is expired","code":"token_not_valid"}' headers: Allow: - POST, OPTIONS Connection: - keep-alive Content-Length: - - '65' + - '54' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:33:57 GMT + - Tue, 23 Sep 2025 23:33:11 GMT Referrer-Policy: - same-origin Server: - nginx/1.25.2 Server-Timing: - - TimerPanel_utime;dur=44.52499999999993;desc="User CPU time", TimerPanel_stime;dur=9.89000000000001;desc="System - CPU time", TimerPanel_total;dur=54.414999999999935;desc="Total CPU time", - TimerPanel_total_time;dur=48.88796806335449;desc="Elapsed time", SQLPanel_sql_time;dur=0.9050369262695312;desc="SQL - 3 queries", CachePanel_total_time;dur=0;desc="Cache 0 Calls" + - TimerPanel_utime;dur=23.473999999999997;desc="User CPU time", TimerPanel_stime;dur=1.0960000000000414;desc="System + CPU time", TimerPanel_total;dur=24.57000000000004;desc="Total CPU time", TimerPanel_total_time;dur=29.10935399995651;desc="Elapsed + time", SQLPanel_sql_time;dur=0.581773005251307;desc="SQL 3 queries", CachePanel_total_time;dur=0;desc="Cache + 0 Calls" Set-Cookie: - - op_browser_state=ca7b2917673bad01a70c57734db274ab516b979b655517a5244357fc; + - op_browser_state=39a769c712d3b44d58f9f44ca8e01f5fab84591bf031542c96ad9f30; Path=/ Vary: - Accept, Origin, Cookie @@ -153,6 +155,8 @@ interactions: - nosniff X-Frame-Options: - DENY + djdt-store-id: + - b7b1821f9fa64a69931e7eea9b8f345a status: code: 401 message: Unauthorized @@ -162,7 +166,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive Content-Length: @@ -170,36 +174,36 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://dev.squarelet.com/api/token/ response: body: - string: '{"refresh":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTczNTg1MDA0MiwianRpIjoiMjA3OGViYzFiNDI3NGE0ZmI1YWEwOTM3MDJlOGQ0OTkiLCJ1c2VyX2lkIjoiZjYwMjllOGEtZDhhMi00MTg4LThhMjEtY2QwNzNhMDJlZTVjIiwiYXVkIjpbInNxdWFyZWxldCIsIm11Y2tyb2NrIiwiZG9jdW1lbnRjbG91ZCJdLCJpc3MiOlsic3F1YXJlbGV0Il19.SHNbpcpaqaA0yHTQeZ4H3NKwF5PiUG-ViAhQjotNIRfuEN0Oj-0rlpBexCjK1F9VdGg0eerzRCe4ufzMbRh6ySmnW4Is5QT_u_Eru6w4i8Cp2ca8ZhN0UtBrRS6GHUAKxrfk-UBIxPTAhpj2Uq9Sp6ri_3UdTkmubl8TkzAn2QdOuPenieEUyGQCWwzEoUwomEIeFu2lWIej1q6Evaz8u3ZN3sD6KMuFilUVttPiWW1MiYfNfHJ_CsmLywXrZWs43o9FPHEDBSdwH_K_igXUh8bwzCFlnh8zBLuV2x52L0_RFHBnyHVrJT9AOfxCGm4S8O3x26uX_MJJ_9I21ZD2jA","access":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDM5LCJqdGkiOiJiYjU4ZTQ4MjhmYmE0N2QzYTQ5ZDc4Y2Q3ZDI2MTNjZCIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.WEbSISzKAqFSYDf7hy9G5_KnpCkyqdSvT8YZ50l9y3ttXv9I9Wr5ecjEuN-Rnz-8CTp1X9UCGrZrrBZuIRjjd5KsoiWUodfAPz44hKJHZj27BA6-50ipqEjjSaXByu1QB-dgz-HPHpNjOl_xf3T-mxBw5FYGgxWCwGiKWyE2zlkwUqjdgyeq6ABCc88BqYPemPBAWxCNmUDzB0zm8zP2ER-OGrdoyFPAcI1DbL1WfWjOchNb2knAfl2RR-VNJ4km0WzbRXAw8laVpb4h8YhRxoW3FqzC7axAqRYtlCr3MB8MLaQOGwCLdIq07xMlRGmHyxDdYcfYLhvJbfrpgkubRg"}' + string: '{"refresh":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTc1ODY3MDM5NiwiaWF0IjoxNzU4NjcwMzkxLCJqdGkiOiI4OWRiNzA2MGM3Y2E0Yjc0YTY0NWI3NjMxNTU0ZWE4MyIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.hNRIFz6xhzUZrzfuC8WIqclBj1J3LuRNpCf7lgZzuASAmdaYwk9vKCQkJgiL8MbzFsPBNvl5V8jsW37pPI6ry5pDo30eJSdCq5W7zQfWpKtwQGYYnfo6_x-EZhCDpP725qGZpwE6mOGNM3aLsSX2xMIOmuFtUZ_apKrdossH3gl-HpKuf_mauTQpI_bELsbUo6WW831Qtz5e6DtY4fv_MoYZ9cLm9S8xb3eez2TDsnWGLXcxbhB4byQOmjYXRrEqlpyxs5MHpJcvQKHu5R0jU-HK1IyEB9RbNZuFipTMItN6QCNUCbZCPizHEDS2qsT9bi-Fioui6-4KHcgcbe_FfA","access":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NjcwMzkzLCJpYXQiOjE3NTg2NzAzOTEsImp0aSI6IjRhZWJlMmFlNmUwYjQ3YzZiMTRjNTY4YzQ2MjNkYjkwIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.oPTuIdNP_o1PAbLb0u4-9Uaw8qCIVT_WECkZKyyYT9WsS2IGV4dctRpTFwp4q1sF8o4CfjI-wENXenypjelTvehUk_ajpL4R2w0KLotRjnuvmwuwUkx11l6yZK6XI3qvpGgLTHazxz_Cb5tELd9qyNtha_VVSM6Vpedy6EJ1fpKKfHTyrLgGtGwhvMQBe1h3qSC5Fnpqp1tdntf2NuPFsCKU9Nc7TNmqGh-YeUGUM-T5a3RmAuJqrDp_nylwbRhWr2xmdi5To3ZvuunQPinzOtzHzrgysoNY167I4JAwqHoV-ziOzBdqzmtZwyUBqdVj5Q7m4iIfCfXtdWobfmGeEQ"}' headers: Allow: - POST, OPTIONS Connection: - keep-alive Content-Length: - - '1313' + - '1359' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:33:57 GMT + - Tue, 23 Sep 2025 23:33:12 GMT Referrer-Policy: - same-origin Server: - nginx/1.25.2 Server-Timing: - - TimerPanel_utime;dur=236.27300000000017;desc="User CPU time", TimerPanel_stime;dur=69.87900000000002;desc="System - CPU time", TimerPanel_total;dur=306.15200000000016;desc="Total CPU time", - TimerPanel_total_time;dur=104.5987606048584;desc="Elapsed time", SQLPanel_sql_time;dur=6.898164749145508;desc="SQL - 3 queries", CachePanel_total_time;dur=0;desc="Cache 0 Calls" + - TimerPanel_utime;dur=248.93500000000034;desc="User CPU time", TimerPanel_stime;dur=73.12299999999999;desc="System + CPU time", TimerPanel_total;dur=322.05800000000033;desc="Total CPU time", + TimerPanel_total_time;dur=158.69212400139077;desc="Elapsed time", SQLPanel_sql_time;dur=10.649048002960626;desc="SQL + 4 queries", CachePanel_total_time;dur=0;desc="Cache 0 Calls" Set-Cookie: - - op_browser_state=ca7b2917673bad01a70c57734db274ab516b979b655517a5244357fc; + - op_browser_state=39a769c712d3b44d58f9f44ca8e01f5fab84591bf031542c96ad9f30; Path=/ Vary: - Accept, Origin, Cookie @@ -207,6 +211,8 @@ interactions: - nosniff X-Frame-Options: - DENY + djdt-store-id: + - d88c7bd2f2cf44fba38f536e08cdb5e8 status: code: 200 message: OK @@ -216,18 +222,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDM5LCJqdGkiOiJiYjU4ZTQ4MjhmYmE0N2QzYTQ5ZDc4Y2Q3ZDI2MTNjZCIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.WEbSISzKAqFSYDf7hy9G5_KnpCkyqdSvT8YZ50l9y3ttXv9I9Wr5ecjEuN-Rnz-8CTp1X9UCGrZrrBZuIRjjd5KsoiWUodfAPz44hKJHZj27BA6-50ipqEjjSaXByu1QB-dgz-HPHpNjOl_xf3T-mxBw5FYGgxWCwGiKWyE2zlkwUqjdgyeq6ABCc88BqYPemPBAWxCNmUDzB0zm8zP2ER-OGrdoyFPAcI1DbL1WfWjOchNb2knAfl2RR-VNJ4km0WzbRXAw8laVpb4h8YhRxoW3FqzC7axAqRYtlCr3MB8MLaQOGwCLdIq07xMlRGmHyxDdYcfYLhvJbfrpgkubRg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NjcwMzkzLCJpYXQiOjE3NTg2NzAzOTEsImp0aSI6IjRhZWJlMmFlNmUwYjQ3YzZiMTRjNTY4YzQ2MjNkYjkwIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.oPTuIdNP_o1PAbLb0u4-9Uaw8qCIVT_WECkZKyyYT9WsS2IGV4dctRpTFwp4q1sF8o4CfjI-wENXenypjelTvehUk_ajpL4R2w0KLotRjnuvmwuwUkx11l6yZK6XI3qvpGgLTHazxz_Cb5tELd9qyNtha_VVSM6Vpedy6EJ1fpKKfHTyrLgGtGwhvMQBe1h3qSC5Fnpqp1tdntf2NuPFsCKU9Nc7TNmqGh-YeUGUM-T5a3RmAuJqrDp_nylwbRhWr2xmdi5To3ZvuunQPinzOtzHzrgysoNY167I4JAwqHoV-ziOzBdqzmtZwyUBqdVj5Q7m4iIfCfXtdWobfmGeEQ Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/users/me/ response: body: - string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"is_staff":true,"name":"test-user","organization":10004,"organizations":[10000,10004],"admin_organizations":[10000,10004],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":""}' + string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"name":"hello + there","organization":10000,"organizations":[10001,10000],"admin_organizations":[10001,10000],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":"sanjin@muckrock.com"}' headers: Allow: - GET, PUT, PATCH, HEAD, OPTIONS @@ -236,13 +243,13 @@ interactions: Content-Language: - en Content-Length: - - '335' + - '340' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:33:57 GMT + - Tue, 23 Sep 2025 23:33:12 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_annotations/TestAnnotation.test_create_delete.yaml b/tests/cassettes/test_annotations/TestAnnotation.test_create_delete.yaml index 0f4ade7..bd82e28 100644 --- a/tests/cassettes/test_annotations/TestAnnotation.test_create_delete.yaml +++ b/tests/cassettes/test_annotations/TestAnnotation.test_create_delete.yaml @@ -5,19 +5,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000273/notes/ + uri: https://api.dev.documentcloud.org/api/documents/20000200/notes/ response: body: - string: '{"count":1,"next":null,"previous":null,"results":[{"id":2000048,"user":100000,"organization":10004,"page_number":0,"access":"private","edit_access":true,"title":"Test - Note","content":"

A note!

","x1":0.1,"x2":0.2,"y1":0.1,"y2":0.2,"created_at":"2025-01-02T20:29:04.744542Z","updated_at":"2025-01-02T20:29:04.744761Z"}]}' + string: '{"count":1,"next":null,"previous":null,"results":[{"id":2000036,"user":100000,"organization":10000,"page_number":0,"access":"private","edit_access":true,"title":"Test + Note","content":"

A note!

","x1":0.1,"x2":0.2,"y1":0.1,"y2":0.2,"created_at":"2025-09-24T16:09:13.585530Z","updated_at":"2025-09-24T16:09:13.585676Z"}]}' headers: Allow: - GET, POST, HEAD, OPTIONS @@ -34,7 +34,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:04 GMT + - Wed, 24 Sep 2025 16:09:13 GMT Referrer-Policy: - same-origin Server: @@ -55,9 +55,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive Content-Length: @@ -65,13 +65,13 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST - uri: https://api.dev.documentcloud.org/api/documents/20000273/notes/ + uri: https://api.dev.documentcloud.org/api/documents/20000200/notes/ response: body: - string: '{"id":2000049,"user":100000,"organization":10004,"page_number":0,"access":"private","edit_access":true,"title":"Test - Note","content":"

Note content!

","x1":0.1,"x2":0.2,"y1":0.1,"y2":0.2,"created_at":"2025-01-02T20:29:04.936278Z","updated_at":"2025-01-02T20:29:04.936462Z"}' + string: '{"id":2000037,"user":100000,"organization":10000,"page_number":0,"access":"private","edit_access":true,"title":"Test + Note","content":"

Note content!

","x1":0.1,"x2":0.2,"y1":0.1,"y2":0.2,"created_at":"2025-09-24T16:09:13.810986Z","updated_at":"2025-09-24T16:09:13.811092Z"}' headers: Allow: - GET, POST, HEAD, OPTIONS @@ -88,7 +88,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:04 GMT + - Wed, 24 Sep 2025 16:09:13 GMT Referrer-Policy: - same-origin Server: @@ -108,20 +108,20 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000273/notes/ + uri: https://api.dev.documentcloud.org/api/documents/20000200/notes/ response: body: - string: '{"count":2,"next":null,"previous":null,"results":[{"id":2000048,"user":100000,"organization":10004,"page_number":0,"access":"private","edit_access":true,"title":"Test - Note","content":"

A note!

","x1":0.1,"x2":0.2,"y1":0.1,"y2":0.2,"created_at":"2025-01-02T20:29:04.744542Z","updated_at":"2025-01-02T20:29:04.744761Z"},{"id":2000049,"user":100000,"organization":10004,"page_number":0,"access":"private","edit_access":true,"title":"Test - Note","content":"

Note content!

","x1":0.1,"x2":0.2,"y1":0.1,"y2":0.2,"created_at":"2025-01-02T20:29:04.936278Z","updated_at":"2025-01-02T20:29:04.936462Z"}]}' + string: '{"count":2,"next":null,"previous":null,"results":[{"id":2000036,"user":100000,"organization":10000,"page_number":0,"access":"private","edit_access":true,"title":"Test + Note","content":"

A note!

","x1":0.1,"x2":0.2,"y1":0.1,"y2":0.2,"created_at":"2025-09-24T16:09:13.585530Z","updated_at":"2025-09-24T16:09:13.585676Z"},{"id":2000037,"user":100000,"organization":10000,"page_number":0,"access":"private","edit_access":true,"title":"Test + Note","content":"

Note content!

","x1":0.1,"x2":0.2,"y1":0.1,"y2":0.2,"created_at":"2025-09-24T16:09:13.810986Z","updated_at":"2025-09-24T16:09:13.811092Z"}]}' headers: Allow: - GET, POST, HEAD, OPTIONS @@ -138,7 +138,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:05 GMT + - Wed, 24 Sep 2025 16:09:13 GMT Referrer-Policy: - same-origin Server: @@ -158,20 +158,20 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000273/notes/ + uri: https://api.dev.documentcloud.org/api/documents/20000200/notes/ response: body: - string: '{"count":2,"next":null,"previous":null,"results":[{"id":2000048,"user":100000,"organization":10004,"page_number":0,"access":"private","edit_access":true,"title":"Test - Note","content":"

A note!

","x1":0.1,"x2":0.2,"y1":0.1,"y2":0.2,"created_at":"2025-01-02T20:29:04.744542Z","updated_at":"2025-01-02T20:29:04.744761Z"},{"id":2000049,"user":100000,"organization":10004,"page_number":0,"access":"private","edit_access":true,"title":"Test - Note","content":"

Note content!

","x1":0.1,"x2":0.2,"y1":0.1,"y2":0.2,"created_at":"2025-01-02T20:29:04.936278Z","updated_at":"2025-01-02T20:29:04.936462Z"}]}' + string: '{"count":2,"next":null,"previous":null,"results":[{"id":2000036,"user":100000,"organization":10000,"page_number":0,"access":"private","edit_access":true,"title":"Test + Note","content":"

A note!

","x1":0.1,"x2":0.2,"y1":0.1,"y2":0.2,"created_at":"2025-09-24T16:09:13.585530Z","updated_at":"2025-09-24T16:09:13.585676Z"},{"id":2000037,"user":100000,"organization":10000,"page_number":0,"access":"private","edit_access":true,"title":"Test + Note","content":"

Note content!

","x1":0.1,"x2":0.2,"y1":0.1,"y2":0.2,"created_at":"2025-09-24T16:09:13.810986Z","updated_at":"2025-09-24T16:09:13.811092Z"}]}' headers: Allow: - GET, POST, HEAD, OPTIONS @@ -188,7 +188,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:05 GMT + - Wed, 24 Sep 2025 16:09:14 GMT Referrer-Policy: - same-origin Server: @@ -208,17 +208,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/documents/20000273/notes/2000049/ + uri: https://api.dev.documentcloud.org/api/documents/20000200/notes/2000037/ response: body: string: '' @@ -236,7 +236,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:05 GMT + - Wed, 24 Sep 2025 16:09:14 GMT Referrer-Policy: - same-origin Server: @@ -256,19 +256,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000273/notes/ + uri: https://api.dev.documentcloud.org/api/documents/20000200/notes/ response: body: - string: '{"count":1,"next":null,"previous":null,"results":[{"id":2000048,"user":100000,"organization":10004,"page_number":0,"access":"private","edit_access":true,"title":"Test - Note","content":"

A note!

","x1":0.1,"x2":0.2,"y1":0.1,"y2":0.2,"created_at":"2025-01-02T20:29:04.744542Z","updated_at":"2025-01-02T20:29:04.744761Z"}]}' + string: '{"count":1,"next":null,"previous":null,"results":[{"id":2000036,"user":100000,"organization":10000,"page_number":0,"access":"private","edit_access":true,"title":"Test + Note","content":"

A note!

","x1":0.1,"x2":0.2,"y1":0.1,"y2":0.2,"created_at":"2025-09-24T16:09:13.585530Z","updated_at":"2025-09-24T16:09:13.585676Z"}]}' headers: Allow: - GET, POST, HEAD, OPTIONS @@ -285,7 +285,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:05 GMT + - Wed, 24 Sep 2025 16:09:14 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_annotations/TestAnnotation.test_create_page_note.yaml b/tests/cassettes/test_annotations/TestAnnotation.test_create_page_note.yaml index 7bb49c4..3fe26db 100644 --- a/tests/cassettes/test_annotations/TestAnnotation.test_create_page_note.yaml +++ b/tests/cassettes/test_annotations/TestAnnotation.test_create_page_note.yaml @@ -6,9 +6,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive Content-Length: @@ -16,13 +16,13 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST - uri: https://api.dev.documentcloud.org/api/documents/20000273/notes/ + uri: https://api.dev.documentcloud.org/api/documents/20000200/notes/ response: body: - string: '{"id":2000050,"user":100000,"organization":10004,"page_number":0,"access":"private","edit_access":true,"title":"Test - Note","content":"

Page note!

","x1":null,"x2":null,"y1":null,"y2":null,"created_at":"2025-01-02T20:29:05.437243Z","updated_at":"2025-01-02T20:29:05.437402Z"}' + string: '{"id":2000038,"user":100000,"organization":10000,"page_number":0,"access":"private","edit_access":true,"title":"Test + Note","content":"

Page note!

","x1":null,"x2":null,"y1":null,"y2":null,"created_at":"2025-09-24T16:09:14.292745Z","updated_at":"2025-09-24T16:09:14.292885Z"}' headers: Allow: - GET, POST, HEAD, OPTIONS @@ -39,7 +39,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:05 GMT + - Wed, 24 Sep 2025 16:09:14 GMT Referrer-Policy: - same-origin Server: @@ -59,17 +59,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/documents/20000273/notes/2000050/ + uri: https://api.dev.documentcloud.org/api/documents/20000200/notes/2000038/ response: body: string: '' @@ -87,7 +87,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:05 GMT + - Wed, 24 Sep 2025 16:09:14 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_annotations/TestAnnotation.test_location.yaml b/tests/cassettes/test_annotations/TestAnnotation.test_location.yaml index 48107a3..8ee681c 100644 --- a/tests/cassettes/test_annotations/TestAnnotation.test_location.yaml +++ b/tests/cassettes/test_annotations/TestAnnotation.test_location.yaml @@ -5,19 +5,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000273/notes/ + uri: https://api.dev.documentcloud.org/api/documents/20000200/notes/ response: body: - string: '{"count":1,"next":null,"previous":null,"results":[{"id":2000048,"user":100000,"organization":10004,"page_number":0,"access":"private","edit_access":true,"title":"Test - Note","content":"

A note!

","x1":0.1,"x2":0.2,"y1":0.1,"y2":0.2,"created_at":"2025-01-02T20:29:04.744542Z","updated_at":"2025-01-02T20:29:04.744761Z"}]}' + string: '{"count":1,"next":null,"previous":null,"results":[{"id":2000036,"user":100000,"organization":10000,"page_number":0,"access":"private","edit_access":true,"title":"Test + Note","content":"

A note!

","x1":0.1,"x2":0.2,"y1":0.1,"y2":0.2,"created_at":"2025-09-24T16:09:13.585530Z","updated_at":"2025-09-24T16:09:13.585676Z"}]}' headers: Allow: - GET, POST, HEAD, OPTIONS @@ -34,7 +34,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:05 GMT + - Wed, 24 Sep 2025 16:09:14 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_annotations/TestAnnotation.test_str.yaml b/tests/cassettes/test_annotations/TestAnnotation.test_str.yaml index 48107a3..8ee681c 100644 --- a/tests/cassettes/test_annotations/TestAnnotation.test_str.yaml +++ b/tests/cassettes/test_annotations/TestAnnotation.test_str.yaml @@ -5,19 +5,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000273/notes/ + uri: https://api.dev.documentcloud.org/api/documents/20000200/notes/ response: body: - string: '{"count":1,"next":null,"previous":null,"results":[{"id":2000048,"user":100000,"organization":10004,"page_number":0,"access":"private","edit_access":true,"title":"Test - Note","content":"

A note!

","x1":0.1,"x2":0.2,"y1":0.1,"y2":0.2,"created_at":"2025-01-02T20:29:04.744542Z","updated_at":"2025-01-02T20:29:04.744761Z"}]}' + string: '{"count":1,"next":null,"previous":null,"results":[{"id":2000036,"user":100000,"organization":10000,"page_number":0,"access":"private","edit_access":true,"title":"Test + Note","content":"

A note!

","x1":0.1,"x2":0.2,"y1":0.1,"y2":0.2,"created_at":"2025-09-24T16:09:13.585530Z","updated_at":"2025-09-24T16:09:13.585676Z"}]}' headers: Allow: - GET, POST, HEAD, OPTIONS @@ -34,7 +34,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:05 GMT + - Wed, 24 Sep 2025 16:09:14 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_base/TestAPIResults.test_getitem.yaml b/tests/cassettes/test_base/TestAPIResults.test_getitem.yaml index 13748ca..1146cf5 100644 --- a/tests/cassettes/test_base/TestAPIResults.test_getitem.yaml +++ b/tests/cassettes/test_base/TestAPIResults.test_getitem.yaml @@ -5,18 +5,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/ response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=2","previous":null,"results":[{"id":20000010,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000010-test","created_at":"2024-12-12T00:23:13.365192Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2024-12-12T00:23:19.106274Z","user":100000},{"id":20000011,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000011-text","created_at":"2024-12-12T00:23:13.365274Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2024-12-12T00:23:19.325229Z","user":100000},{"id":20000027,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000027-test","created_at":"2024-12-12T00:30:12.606658Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2024-12-12T00:30:18.462609Z","user":100000},{"id":20000028,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000028-text","created_at":"2024-12-12T00:30:12.606689Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2024-12-12T00:30:18.446041Z","user":100000},{"id":20000044,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000044-test","created_at":"2025-01-02T17:35:42.271979Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T17:35:53.579946Z","user":100000},{"id":20000045,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000045-text","created_at":"2025-01-02T17:35:42.272045Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T17:35:52.821026Z","user":100000},{"id":20000061,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000061-test","created_at":"2025-01-02T17:52:19.844665Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T17:52:25.470318Z","user":100000},{"id":20000062,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000062-text","created_at":"2025-01-02T17:52:19.844743Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T17:52:25.021059Z","user":100000},{"id":20000078,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000078-test","created_at":"2025-01-02T17:59:08.935604Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T17:59:14.581074Z","user":100000},{"id":20000079,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000079-text","created_at":"2025-01-02T17:59:08.935637Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T17:59:14.573546Z","user":100000},{"id":20000095,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000095-test","created_at":"2025-01-02T18:02:04.051573Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:02:10.243219Z","user":100000},{"id":20000096,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000096-text","created_at":"2025-01-02T18:02:04.051629Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:02:10.172910Z","user":100000},{"id":20000112,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000112-test","created_at":"2025-01-02T18:19:20.038399Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:19:26.512686Z","user":100000},{"id":20000113,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000113-text","created_at":"2025-01-02T18:19:20.038433Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:19:26.235813Z","user":100000},{"id":20000129,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000129-test","created_at":"2025-01-02T18:36:41.047671Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:36:47.597018Z","user":100000},{"id":20000130,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000130-text","created_at":"2025-01-02T18:36:41.047701Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:36:46.660069Z","user":100000},{"id":20000146,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000146-test","created_at":"2025-01-02T18:40:02.275568Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:40:07.691288Z","user":100000},{"id":20000147,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000147-text","created_at":"2025-01-02T18:40:02.275599Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:40:07.605110Z","user":100000},{"id":20000163,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000163-test","created_at":"2025-01-02T19:22:41.925163Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T19:22:47.480302Z","user":100000},{"id":20000164,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000164-text","created_at":"2025-01-02T19:22:41.925261Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T19:22:47.817473Z","user":100000},{"id":20000180,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000180-test","created_at":"2025-01-02T19:41:24.016515Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T19:41:30.504415Z","user":100000},{"id":20000181,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000181-text","created_at":"2025-01-02T19:41:24.016613Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T19:41:30.680316Z","user":100000},{"id":20000197,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000197-test","created_at":"2025-01-02T19:50:13.091759Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T19:50:19.471640Z","user":100000},{"id":20000198,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000198-text","created_at":"2025-01-02T19:50:13.091857Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T19:50:19.855788Z","user":100000},{"id":20000214,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000214-test","created_at":"2025-01-02T20:03:04.316156Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:03:10.653328Z","user":100000}]}' + string: '{"count":31,"next":"https://api.dev.documentcloud.org/api/documents/?page=2","previous":null,"results":[{"id":20000010,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000010-test/","created_at":"2025-09-23T20:03:52.712360Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:03:58.421127Z","user":100000},{"id":20000011,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000011-text/","created_at":"2025-09-23T20:03:52.712448Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:03:59.506643Z","user":100000},{"id":20000017,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000017-dossier-recu-complet-le-3-mars-2025/","created_at":"2025-09-23T20:05:23.161046Z","data":{},"description":"","edit_access":true,"file_hash":"0c2645e8c409304f4af9d30da322ee32a5a275cc","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":13,"page_spec":"595.28x841.89:0-12","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"dossier-recu-complet-le-3-mars-2025","source":"","status":"success","title":"dossier-recu-complet-le-3-mars-2025","updated_at":"2025-09-23T20:05:49.048694Z","user":100000},{"id":20000028,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000028-test/","created_at":"2025-09-23T20:07:22.126274Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:07:28.615882Z","user":100000},{"id":20000029,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000029-text/","created_at":"2025-09-23T20:07:22.126305Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:07:28.307485Z","user":100000},{"id":20000034,"access":"public","admin_noindex":false,"asset_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/","canonical_url":"https://www.dev.documentcloud.org/documents/20000034-dossier-recu-complet-le-3-mars-2025/","created_at":"2025-09-23T20:11:49.428616Z","data":{},"description":"","edit_access":false,"file_hash":"0c2645e8c409304f4af9d30da322ee32a5a275cc","noindex":false,"language":"eng","organization":10002,"original_extension":"pdf","page_count":13,"page_spec":"595.28x841.89:0-12","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"dossier-recu-complet-le-3-mars-2025","source":"","status":"success","title":"dossier-recu-complet-le-3-mars-2025","updated_at":"2025-09-23T20:14:19.900642Z","user":100001},{"id":20000045,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000045-test/","created_at":"2025-09-23T20:13:31.955748Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:13:38.728774Z","user":100000},{"id":20000046,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000046-text/","created_at":"2025-09-23T20:13:31.955780Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:13:38.309234Z","user":100000},{"id":20000052,"access":"public","admin_noindex":false,"asset_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/","canonical_url":"https://www.dev.documentcloud.org/documents/20000052-cerfa-14734-04-dortan-signed/","created_at":"2025-09-23T20:14:54.050113Z","data":{},"description":"","edit_access":false,"file_hash":"68008c61169fd94554cbac3e868fb6d957c33f8e","noindex":false,"language":"eng","organization":10002,"original_extension":"pdf","page_count":13,"page_spec":"595.28x841.89:0-12","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"cerfa-14734-04-dortan-signed","source":"","status":"success","title":"cerfa + 14734-04 dortan signed","updated_at":"2025-09-23T20:15:18.102769Z","user":100001},{"id":20000063,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000063-test/","created_at":"2025-09-23T20:16:31.439732Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:16:37.611731Z","user":100000},{"id":20000064,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000064-text/","created_at":"2025-09-23T20:16:31.439775Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:16:37.298379Z","user":100000},{"id":20000076,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000076-test/","created_at":"2025-09-23T22:50:54.616236Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:51:46.781874Z","user":100000},{"id":20000077,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000077-test/","created_at":"2025-09-23T22:51:48.088605Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:53:39.716202Z","user":100000},{"id":20000078,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000078-test/","created_at":"2025-09-23T22:53:40.862933Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:55:00.005915Z","user":100000},{"id":20000079,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000079-test/","created_at":"2025-09-23T22:55:00.936162Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:56:32.611824Z","user":100000},{"id":20000090,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000090-test/","created_at":"2025-09-23T23:24:41.476623Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T23:25:35.735664Z","user":100000},{"id":20000091,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000091-text/","created_at":"2025-09-23T23:24:41.476663Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T23:25:49.733428Z","user":100000},{"id":20000107,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000107-test/","created_at":"2025-09-24T15:03:00.852905Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:03:07.014325Z","user":100000},{"id":20000108,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000108-text/","created_at":"2025-09-24T15:03:00.852944Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:03:07.054945Z","user":100000},{"id":20000124,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000124-test/","created_at":"2025-09-24T15:11:48.338041Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:11:54.136033Z","user":100000},{"id":20000125,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000125-text/","created_at":"2025-09-24T15:11:48.338121Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:11:54.167704Z","user":100000},{"id":20000141,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000141-test/","created_at":"2025-09-24T15:16:33.299662Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:16:39.650121Z","user":100000},{"id":20000142,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000142-text/","created_at":"2025-09-24T15:16:33.299696Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:16:39.157575Z","user":100000},{"id":20000158,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000158-test/","created_at":"2025-09-24T15:50:20.737003Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:50:26.737759Z","user":100000},{"id":20000159,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000159-text/","created_at":"2025-09-24T15:50:20.737036Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:50:26.972793Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -27,13 +28,13 @@ interactions: Content-Language: - en Content-Length: - - '17071' + - '17220' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:06 GMT + - Wed, 24 Sep 2025 16:09:14 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_base/TestAPIResults.test_getitem_index_error.yaml b/tests/cassettes/test_base/TestAPIResults.test_getitem_index_error.yaml index 68cbb18..d556a35 100644 --- a/tests/cassettes/test_base/TestAPIResults.test_getitem_index_error.yaml +++ b/tests/cassettes/test_base/TestAPIResults.test_getitem_index_error.yaml @@ -5,18 +5,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/ response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=2","previous":null,"results":[{"id":20000010,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000010-test","created_at":"2024-12-12T00:23:13.365192Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2024-12-12T00:23:19.106274Z","user":100000},{"id":20000011,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000011-text","created_at":"2024-12-12T00:23:13.365274Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2024-12-12T00:23:19.325229Z","user":100000},{"id":20000027,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000027-test","created_at":"2024-12-12T00:30:12.606658Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2024-12-12T00:30:18.462609Z","user":100000},{"id":20000028,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000028-text","created_at":"2024-12-12T00:30:12.606689Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2024-12-12T00:30:18.446041Z","user":100000},{"id":20000044,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000044-test","created_at":"2025-01-02T17:35:42.271979Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T17:35:53.579946Z","user":100000},{"id":20000045,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000045-text","created_at":"2025-01-02T17:35:42.272045Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T17:35:52.821026Z","user":100000},{"id":20000061,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000061-test","created_at":"2025-01-02T17:52:19.844665Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T17:52:25.470318Z","user":100000},{"id":20000062,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000062-text","created_at":"2025-01-02T17:52:19.844743Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T17:52:25.021059Z","user":100000},{"id":20000078,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000078-test","created_at":"2025-01-02T17:59:08.935604Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T17:59:14.581074Z","user":100000},{"id":20000079,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000079-text","created_at":"2025-01-02T17:59:08.935637Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T17:59:14.573546Z","user":100000},{"id":20000095,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000095-test","created_at":"2025-01-02T18:02:04.051573Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:02:10.243219Z","user":100000},{"id":20000096,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000096-text","created_at":"2025-01-02T18:02:04.051629Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:02:10.172910Z","user":100000},{"id":20000112,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000112-test","created_at":"2025-01-02T18:19:20.038399Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:19:26.512686Z","user":100000},{"id":20000113,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000113-text","created_at":"2025-01-02T18:19:20.038433Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:19:26.235813Z","user":100000},{"id":20000129,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000129-test","created_at":"2025-01-02T18:36:41.047671Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:36:47.597018Z","user":100000},{"id":20000130,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000130-text","created_at":"2025-01-02T18:36:41.047701Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:36:46.660069Z","user":100000},{"id":20000146,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000146-test","created_at":"2025-01-02T18:40:02.275568Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:40:07.691288Z","user":100000},{"id":20000147,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000147-text","created_at":"2025-01-02T18:40:02.275599Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:40:07.605110Z","user":100000},{"id":20000163,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000163-test","created_at":"2025-01-02T19:22:41.925163Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T19:22:47.480302Z","user":100000},{"id":20000164,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000164-text","created_at":"2025-01-02T19:22:41.925261Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T19:22:47.817473Z","user":100000},{"id":20000180,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000180-test","created_at":"2025-01-02T19:41:24.016515Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T19:41:30.504415Z","user":100000},{"id":20000181,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000181-text","created_at":"2025-01-02T19:41:24.016613Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T19:41:30.680316Z","user":100000},{"id":20000197,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000197-test","created_at":"2025-01-02T19:50:13.091759Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T19:50:19.471640Z","user":100000},{"id":20000198,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000198-text","created_at":"2025-01-02T19:50:13.091857Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T19:50:19.855788Z","user":100000},{"id":20000214,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000214-test","created_at":"2025-01-02T20:03:04.316156Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:03:10.653328Z","user":100000}]}' + string: '{"count":31,"next":"https://api.dev.documentcloud.org/api/documents/?page=2","previous":null,"results":[{"id":20000010,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000010-test/","created_at":"2025-09-23T20:03:52.712360Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:03:58.421127Z","user":100000},{"id":20000011,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000011-text/","created_at":"2025-09-23T20:03:52.712448Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:03:59.506643Z","user":100000},{"id":20000017,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000017-dossier-recu-complet-le-3-mars-2025/","created_at":"2025-09-23T20:05:23.161046Z","data":{},"description":"","edit_access":true,"file_hash":"0c2645e8c409304f4af9d30da322ee32a5a275cc","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":13,"page_spec":"595.28x841.89:0-12","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"dossier-recu-complet-le-3-mars-2025","source":"","status":"success","title":"dossier-recu-complet-le-3-mars-2025","updated_at":"2025-09-23T20:05:49.048694Z","user":100000},{"id":20000028,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000028-test/","created_at":"2025-09-23T20:07:22.126274Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:07:28.615882Z","user":100000},{"id":20000029,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000029-text/","created_at":"2025-09-23T20:07:22.126305Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:07:28.307485Z","user":100000},{"id":20000034,"access":"public","admin_noindex":false,"asset_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/","canonical_url":"https://www.dev.documentcloud.org/documents/20000034-dossier-recu-complet-le-3-mars-2025/","created_at":"2025-09-23T20:11:49.428616Z","data":{},"description":"","edit_access":false,"file_hash":"0c2645e8c409304f4af9d30da322ee32a5a275cc","noindex":false,"language":"eng","organization":10002,"original_extension":"pdf","page_count":13,"page_spec":"595.28x841.89:0-12","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"dossier-recu-complet-le-3-mars-2025","source":"","status":"success","title":"dossier-recu-complet-le-3-mars-2025","updated_at":"2025-09-23T20:14:19.900642Z","user":100001},{"id":20000045,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000045-test/","created_at":"2025-09-23T20:13:31.955748Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:13:38.728774Z","user":100000},{"id":20000046,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000046-text/","created_at":"2025-09-23T20:13:31.955780Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:13:38.309234Z","user":100000},{"id":20000052,"access":"public","admin_noindex":false,"asset_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/","canonical_url":"https://www.dev.documentcloud.org/documents/20000052-cerfa-14734-04-dortan-signed/","created_at":"2025-09-23T20:14:54.050113Z","data":{},"description":"","edit_access":false,"file_hash":"68008c61169fd94554cbac3e868fb6d957c33f8e","noindex":false,"language":"eng","organization":10002,"original_extension":"pdf","page_count":13,"page_spec":"595.28x841.89:0-12","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"cerfa-14734-04-dortan-signed","source":"","status":"success","title":"cerfa + 14734-04 dortan signed","updated_at":"2025-09-23T20:15:18.102769Z","user":100001},{"id":20000063,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000063-test/","created_at":"2025-09-23T20:16:31.439732Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:16:37.611731Z","user":100000},{"id":20000064,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000064-text/","created_at":"2025-09-23T20:16:31.439775Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:16:37.298379Z","user":100000},{"id":20000076,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000076-test/","created_at":"2025-09-23T22:50:54.616236Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:51:46.781874Z","user":100000},{"id":20000077,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000077-test/","created_at":"2025-09-23T22:51:48.088605Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:53:39.716202Z","user":100000},{"id":20000078,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000078-test/","created_at":"2025-09-23T22:53:40.862933Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:55:00.005915Z","user":100000},{"id":20000079,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000079-test/","created_at":"2025-09-23T22:55:00.936162Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:56:32.611824Z","user":100000},{"id":20000090,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000090-test/","created_at":"2025-09-23T23:24:41.476623Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T23:25:35.735664Z","user":100000},{"id":20000091,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000091-text/","created_at":"2025-09-23T23:24:41.476663Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T23:25:49.733428Z","user":100000},{"id":20000107,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000107-test/","created_at":"2025-09-24T15:03:00.852905Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:03:07.014325Z","user":100000},{"id":20000108,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000108-text/","created_at":"2025-09-24T15:03:00.852944Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:03:07.054945Z","user":100000},{"id":20000124,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000124-test/","created_at":"2025-09-24T15:11:48.338041Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:11:54.136033Z","user":100000},{"id":20000125,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000125-text/","created_at":"2025-09-24T15:11:48.338121Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:11:54.167704Z","user":100000},{"id":20000141,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000141-test/","created_at":"2025-09-24T15:16:33.299662Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:16:39.650121Z","user":100000},{"id":20000142,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000142-text/","created_at":"2025-09-24T15:16:33.299696Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:16:39.157575Z","user":100000},{"id":20000158,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000158-test/","created_at":"2025-09-24T15:50:20.737003Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:50:26.737759Z","user":100000},{"id":20000159,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000159-text/","created_at":"2025-09-24T15:50:20.737036Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:50:26.972793Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -27,13 +28,13 @@ interactions: Content-Language: - en Content-Length: - - '17071' + - '17220' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:06 GMT + - Wed, 24 Sep 2025 16:09:15 GMT Referrer-Policy: - same-origin Server: @@ -53,19 +54,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=2 response: body: - string: '{"count":34,"next":null,"previous":"https://api.dev.documentcloud.org/api/documents/","results":[{"id":20000215,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000215-text","created_at":"2025-01-02T20:03:04.316218Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T20:03:10.920371Z","user":100000},{"id":20000231,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000231-test","created_at":"2025-01-02T20:09:28.107799Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:09:35.483550Z","user":100000},{"id":20000232,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000232-text","created_at":"2025-01-02T20:09:28.107859Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T20:09:35.556437Z","user":100000},{"id":20000248,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000248-test","created_at":"2025-01-02T20:14:38.056818Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:14:49.547678Z","user":100000},{"id":20000249,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000249-text","created_at":"2025-01-02T20:14:38.056913Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T20:14:49.530132Z","user":100000},{"id":20000265,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000265-test","created_at":"2025-01-02T20:19:06.335137Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:19:12.838465Z","user":100000},{"id":20000266,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000266-text","created_at":"2025-01-02T20:19:06.335203Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T20:19:13.219304Z","user":100000},{"id":20000272,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000272-test","created_at":"2025-01-02T20:28:50.994529Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[200070],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:28:57.821892Z","user":100000},{"id":20000273,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000273-test","created_at":"2025-01-02T20:28:57.927312Z","data":{"_tag":["document"]},"description":"A - simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[200070],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"success","title":"test","updated_at":"2025-01-02T20:29:04.258476Z","user":100000}]}' + string: '{"count":31,"next":null,"previous":"https://api.dev.documentcloud.org/api/documents/","results":[{"id":20000175,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000175-test/","created_at":"2025-09-24T16:04:58.966581Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:05:05.605664Z","user":100000},{"id":20000176,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000176-text/","created_at":"2025-09-24T16:04:58.966637Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T16:05:05.299525Z","user":100000},{"id":20000192,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000192-test/","created_at":"2025-09-24T16:07:32.184295Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:07:38.307434Z","user":100000},{"id":20000193,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000193-text/","created_at":"2025-09-24T16:07:32.184330Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T16:07:37.945030Z","user":100000},{"id":20000199,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000199-test/","created_at":"2025-09-24T16:08:49.270524Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[200056],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:09:01.334883Z","user":100000},{"id":20000200,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000200-test/","created_at":"2025-09-24T16:09:01.460974Z","data":{"_tag":["document"]},"description":"A + simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[200056],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"success","title":"test","updated_at":"2025-09-24T16:09:12.774106Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -76,13 +77,13 @@ interactions: Content-Language: - en Content-Length: - - '6338' + - '4274' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:06 GMT + - Wed, 24 Sep 2025 16:09:15 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_base/TestAPIResults.test_getitem_paginate.yaml b/tests/cassettes/test_base/TestAPIResults.test_getitem_paginate.yaml index f3461fc..3ba7b64 100644 --- a/tests/cassettes/test_base/TestAPIResults.test_getitem_paginate.yaml +++ b/tests/cassettes/test_base/TestAPIResults.test_getitem_paginate.yaml @@ -5,18 +5,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?per_page=2 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=2&per_page=2","previous":null,"results":[{"id":20000010,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000010-test","created_at":"2024-12-12T00:23:13.365192Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2024-12-12T00:23:19.106274Z","user":100000},{"id":20000011,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000011-text","created_at":"2024-12-12T00:23:13.365274Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2024-12-12T00:23:19.325229Z","user":100000}]}' + string: '{"count":31,"next":"https://api.dev.documentcloud.org/api/documents/?page=2&per_page=2","previous":null,"results":[{"id":20000010,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000010-test/","created_at":"2025-09-23T20:03:52.712360Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:03:58.421127Z","user":100000},{"id":20000011,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000011-text/","created_at":"2025-09-23T20:03:52.712448Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:03:59.506643Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -27,13 +27,13 @@ interactions: Content-Language: - en Content-Length: - - '1474' + - '1462' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:06 GMT + - Wed, 24 Sep 2025 16:09:14 GMT Referrer-Policy: - same-origin Server: @@ -53,18 +53,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=2&per_page=2 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=3&per_page=2","previous":"https://api.dev.documentcloud.org/api/documents/?per_page=2","results":[{"id":20000027,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000027-test","created_at":"2024-12-12T00:30:12.606658Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2024-12-12T00:30:18.462609Z","user":100000},{"id":20000028,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000028-text","created_at":"2024-12-12T00:30:12.606689Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2024-12-12T00:30:18.446041Z","user":100000}]}' + string: '{"count":31,"next":"https://api.dev.documentcloud.org/api/documents/?page=3&per_page=2","previous":"https://api.dev.documentcloud.org/api/documents/?per_page=2","results":[{"id":20000017,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000017-dossier-recu-complet-le-3-mars-2025/","created_at":"2025-09-23T20:05:23.161046Z","data":{},"description":"","edit_access":true,"file_hash":"0c2645e8c409304f4af9d30da322ee32a5a275cc","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":13,"page_spec":"595.28x841.89:0-12","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"dossier-recu-complet-le-3-mars-2025","source":"","status":"success","title":"dossier-recu-complet-le-3-mars-2025","updated_at":"2025-09-23T20:05:49.048694Z","user":100000},{"id":20000028,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000028-test/","created_at":"2025-09-23T20:07:22.126274Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:07:28.615882Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -75,13 +75,13 @@ interactions: Content-Language: - en Content-Length: - - '1531' + - '1616' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:06 GMT + - Wed, 24 Sep 2025 16:09:14 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_base/TestAPIResults.test_iter.yaml b/tests/cassettes/test_base/TestAPIResults.test_iter.yaml index 68cbb18..d556a35 100644 --- a/tests/cassettes/test_base/TestAPIResults.test_iter.yaml +++ b/tests/cassettes/test_base/TestAPIResults.test_iter.yaml @@ -5,18 +5,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/ response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=2","previous":null,"results":[{"id":20000010,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000010-test","created_at":"2024-12-12T00:23:13.365192Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2024-12-12T00:23:19.106274Z","user":100000},{"id":20000011,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000011-text","created_at":"2024-12-12T00:23:13.365274Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2024-12-12T00:23:19.325229Z","user":100000},{"id":20000027,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000027-test","created_at":"2024-12-12T00:30:12.606658Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2024-12-12T00:30:18.462609Z","user":100000},{"id":20000028,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000028-text","created_at":"2024-12-12T00:30:12.606689Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2024-12-12T00:30:18.446041Z","user":100000},{"id":20000044,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000044-test","created_at":"2025-01-02T17:35:42.271979Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T17:35:53.579946Z","user":100000},{"id":20000045,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000045-text","created_at":"2025-01-02T17:35:42.272045Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T17:35:52.821026Z","user":100000},{"id":20000061,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000061-test","created_at":"2025-01-02T17:52:19.844665Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T17:52:25.470318Z","user":100000},{"id":20000062,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000062-text","created_at":"2025-01-02T17:52:19.844743Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T17:52:25.021059Z","user":100000},{"id":20000078,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000078-test","created_at":"2025-01-02T17:59:08.935604Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T17:59:14.581074Z","user":100000},{"id":20000079,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000079-text","created_at":"2025-01-02T17:59:08.935637Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T17:59:14.573546Z","user":100000},{"id":20000095,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000095-test","created_at":"2025-01-02T18:02:04.051573Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:02:10.243219Z","user":100000},{"id":20000096,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000096-text","created_at":"2025-01-02T18:02:04.051629Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:02:10.172910Z","user":100000},{"id":20000112,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000112-test","created_at":"2025-01-02T18:19:20.038399Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:19:26.512686Z","user":100000},{"id":20000113,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000113-text","created_at":"2025-01-02T18:19:20.038433Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:19:26.235813Z","user":100000},{"id":20000129,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000129-test","created_at":"2025-01-02T18:36:41.047671Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:36:47.597018Z","user":100000},{"id":20000130,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000130-text","created_at":"2025-01-02T18:36:41.047701Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:36:46.660069Z","user":100000},{"id":20000146,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000146-test","created_at":"2025-01-02T18:40:02.275568Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:40:07.691288Z","user":100000},{"id":20000147,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000147-text","created_at":"2025-01-02T18:40:02.275599Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:40:07.605110Z","user":100000},{"id":20000163,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000163-test","created_at":"2025-01-02T19:22:41.925163Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T19:22:47.480302Z","user":100000},{"id":20000164,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000164-text","created_at":"2025-01-02T19:22:41.925261Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T19:22:47.817473Z","user":100000},{"id":20000180,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000180-test","created_at":"2025-01-02T19:41:24.016515Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T19:41:30.504415Z","user":100000},{"id":20000181,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000181-text","created_at":"2025-01-02T19:41:24.016613Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T19:41:30.680316Z","user":100000},{"id":20000197,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000197-test","created_at":"2025-01-02T19:50:13.091759Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T19:50:19.471640Z","user":100000},{"id":20000198,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000198-text","created_at":"2025-01-02T19:50:13.091857Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T19:50:19.855788Z","user":100000},{"id":20000214,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000214-test","created_at":"2025-01-02T20:03:04.316156Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:03:10.653328Z","user":100000}]}' + string: '{"count":31,"next":"https://api.dev.documentcloud.org/api/documents/?page=2","previous":null,"results":[{"id":20000010,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000010-test/","created_at":"2025-09-23T20:03:52.712360Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:03:58.421127Z","user":100000},{"id":20000011,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000011-text/","created_at":"2025-09-23T20:03:52.712448Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:03:59.506643Z","user":100000},{"id":20000017,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000017-dossier-recu-complet-le-3-mars-2025/","created_at":"2025-09-23T20:05:23.161046Z","data":{},"description":"","edit_access":true,"file_hash":"0c2645e8c409304f4af9d30da322ee32a5a275cc","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":13,"page_spec":"595.28x841.89:0-12","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"dossier-recu-complet-le-3-mars-2025","source":"","status":"success","title":"dossier-recu-complet-le-3-mars-2025","updated_at":"2025-09-23T20:05:49.048694Z","user":100000},{"id":20000028,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000028-test/","created_at":"2025-09-23T20:07:22.126274Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:07:28.615882Z","user":100000},{"id":20000029,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000029-text/","created_at":"2025-09-23T20:07:22.126305Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:07:28.307485Z","user":100000},{"id":20000034,"access":"public","admin_noindex":false,"asset_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/","canonical_url":"https://www.dev.documentcloud.org/documents/20000034-dossier-recu-complet-le-3-mars-2025/","created_at":"2025-09-23T20:11:49.428616Z","data":{},"description":"","edit_access":false,"file_hash":"0c2645e8c409304f4af9d30da322ee32a5a275cc","noindex":false,"language":"eng","organization":10002,"original_extension":"pdf","page_count":13,"page_spec":"595.28x841.89:0-12","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"dossier-recu-complet-le-3-mars-2025","source":"","status":"success","title":"dossier-recu-complet-le-3-mars-2025","updated_at":"2025-09-23T20:14:19.900642Z","user":100001},{"id":20000045,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000045-test/","created_at":"2025-09-23T20:13:31.955748Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:13:38.728774Z","user":100000},{"id":20000046,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000046-text/","created_at":"2025-09-23T20:13:31.955780Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:13:38.309234Z","user":100000},{"id":20000052,"access":"public","admin_noindex":false,"asset_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/","canonical_url":"https://www.dev.documentcloud.org/documents/20000052-cerfa-14734-04-dortan-signed/","created_at":"2025-09-23T20:14:54.050113Z","data":{},"description":"","edit_access":false,"file_hash":"68008c61169fd94554cbac3e868fb6d957c33f8e","noindex":false,"language":"eng","organization":10002,"original_extension":"pdf","page_count":13,"page_spec":"595.28x841.89:0-12","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"cerfa-14734-04-dortan-signed","source":"","status":"success","title":"cerfa + 14734-04 dortan signed","updated_at":"2025-09-23T20:15:18.102769Z","user":100001},{"id":20000063,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000063-test/","created_at":"2025-09-23T20:16:31.439732Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:16:37.611731Z","user":100000},{"id":20000064,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000064-text/","created_at":"2025-09-23T20:16:31.439775Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:16:37.298379Z","user":100000},{"id":20000076,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000076-test/","created_at":"2025-09-23T22:50:54.616236Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:51:46.781874Z","user":100000},{"id":20000077,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000077-test/","created_at":"2025-09-23T22:51:48.088605Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:53:39.716202Z","user":100000},{"id":20000078,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000078-test/","created_at":"2025-09-23T22:53:40.862933Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:55:00.005915Z","user":100000},{"id":20000079,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000079-test/","created_at":"2025-09-23T22:55:00.936162Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:56:32.611824Z","user":100000},{"id":20000090,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000090-test/","created_at":"2025-09-23T23:24:41.476623Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T23:25:35.735664Z","user":100000},{"id":20000091,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000091-text/","created_at":"2025-09-23T23:24:41.476663Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T23:25:49.733428Z","user":100000},{"id":20000107,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000107-test/","created_at":"2025-09-24T15:03:00.852905Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:03:07.014325Z","user":100000},{"id":20000108,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000108-text/","created_at":"2025-09-24T15:03:00.852944Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:03:07.054945Z","user":100000},{"id":20000124,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000124-test/","created_at":"2025-09-24T15:11:48.338041Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:11:54.136033Z","user":100000},{"id":20000125,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000125-text/","created_at":"2025-09-24T15:11:48.338121Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:11:54.167704Z","user":100000},{"id":20000141,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000141-test/","created_at":"2025-09-24T15:16:33.299662Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:16:39.650121Z","user":100000},{"id":20000142,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000142-text/","created_at":"2025-09-24T15:16:33.299696Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:16:39.157575Z","user":100000},{"id":20000158,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000158-test/","created_at":"2025-09-24T15:50:20.737003Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:50:26.737759Z","user":100000},{"id":20000159,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000159-text/","created_at":"2025-09-24T15:50:20.737036Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:50:26.972793Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -27,13 +28,13 @@ interactions: Content-Language: - en Content-Length: - - '17071' + - '17220' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:06 GMT + - Wed, 24 Sep 2025 16:09:15 GMT Referrer-Policy: - same-origin Server: @@ -53,19 +54,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=2 response: body: - string: '{"count":34,"next":null,"previous":"https://api.dev.documentcloud.org/api/documents/","results":[{"id":20000215,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000215-text","created_at":"2025-01-02T20:03:04.316218Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T20:03:10.920371Z","user":100000},{"id":20000231,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000231-test","created_at":"2025-01-02T20:09:28.107799Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:09:35.483550Z","user":100000},{"id":20000232,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000232-text","created_at":"2025-01-02T20:09:28.107859Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T20:09:35.556437Z","user":100000},{"id":20000248,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000248-test","created_at":"2025-01-02T20:14:38.056818Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:14:49.547678Z","user":100000},{"id":20000249,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000249-text","created_at":"2025-01-02T20:14:38.056913Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T20:14:49.530132Z","user":100000},{"id":20000265,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000265-test","created_at":"2025-01-02T20:19:06.335137Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:19:12.838465Z","user":100000},{"id":20000266,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000266-text","created_at":"2025-01-02T20:19:06.335203Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T20:19:13.219304Z","user":100000},{"id":20000272,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000272-test","created_at":"2025-01-02T20:28:50.994529Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[200070],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:28:57.821892Z","user":100000},{"id":20000273,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000273-test","created_at":"2025-01-02T20:28:57.927312Z","data":{"_tag":["document"]},"description":"A - simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[200070],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"success","title":"test","updated_at":"2025-01-02T20:29:04.258476Z","user":100000}]}' + string: '{"count":31,"next":null,"previous":"https://api.dev.documentcloud.org/api/documents/","results":[{"id":20000175,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000175-test/","created_at":"2025-09-24T16:04:58.966581Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:05:05.605664Z","user":100000},{"id":20000176,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000176-text/","created_at":"2025-09-24T16:04:58.966637Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T16:05:05.299525Z","user":100000},{"id":20000192,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000192-test/","created_at":"2025-09-24T16:07:32.184295Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:07:38.307434Z","user":100000},{"id":20000193,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000193-text/","created_at":"2025-09-24T16:07:32.184330Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T16:07:37.945030Z","user":100000},{"id":20000199,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000199-test/","created_at":"2025-09-24T16:08:49.270524Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[200056],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:09:01.334883Z","user":100000},{"id":20000200,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000200-test/","created_at":"2025-09-24T16:09:01.460974Z","data":{"_tag":["document"]},"description":"A + simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[200056],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"success","title":"test","updated_at":"2025-09-24T16:09:12.774106Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -76,13 +77,13 @@ interactions: Content-Language: - en Content-Length: - - '6338' + - '4274' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:06 GMT + - Wed, 24 Sep 2025 16:09:15 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_base/TestAPIResults.test_len.yaml b/tests/cassettes/test_base/TestAPIResults.test_len.yaml index 13748ca..d18746c 100644 --- a/tests/cassettes/test_base/TestAPIResults.test_len.yaml +++ b/tests/cassettes/test_base/TestAPIResults.test_len.yaml @@ -5,18 +5,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/ response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=2","previous":null,"results":[{"id":20000010,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000010-test","created_at":"2024-12-12T00:23:13.365192Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2024-12-12T00:23:19.106274Z","user":100000},{"id":20000011,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000011-text","created_at":"2024-12-12T00:23:13.365274Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2024-12-12T00:23:19.325229Z","user":100000},{"id":20000027,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000027-test","created_at":"2024-12-12T00:30:12.606658Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2024-12-12T00:30:18.462609Z","user":100000},{"id":20000028,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000028-text","created_at":"2024-12-12T00:30:12.606689Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2024-12-12T00:30:18.446041Z","user":100000},{"id":20000044,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000044-test","created_at":"2025-01-02T17:35:42.271979Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T17:35:53.579946Z","user":100000},{"id":20000045,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000045-text","created_at":"2025-01-02T17:35:42.272045Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T17:35:52.821026Z","user":100000},{"id":20000061,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000061-test","created_at":"2025-01-02T17:52:19.844665Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T17:52:25.470318Z","user":100000},{"id":20000062,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000062-text","created_at":"2025-01-02T17:52:19.844743Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T17:52:25.021059Z","user":100000},{"id":20000078,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000078-test","created_at":"2025-01-02T17:59:08.935604Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T17:59:14.581074Z","user":100000},{"id":20000079,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000079-text","created_at":"2025-01-02T17:59:08.935637Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T17:59:14.573546Z","user":100000},{"id":20000095,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000095-test","created_at":"2025-01-02T18:02:04.051573Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:02:10.243219Z","user":100000},{"id":20000096,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000096-text","created_at":"2025-01-02T18:02:04.051629Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:02:10.172910Z","user":100000},{"id":20000112,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000112-test","created_at":"2025-01-02T18:19:20.038399Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:19:26.512686Z","user":100000},{"id":20000113,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000113-text","created_at":"2025-01-02T18:19:20.038433Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:19:26.235813Z","user":100000},{"id":20000129,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000129-test","created_at":"2025-01-02T18:36:41.047671Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:36:47.597018Z","user":100000},{"id":20000130,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000130-text","created_at":"2025-01-02T18:36:41.047701Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:36:46.660069Z","user":100000},{"id":20000146,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000146-test","created_at":"2025-01-02T18:40:02.275568Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:40:07.691288Z","user":100000},{"id":20000147,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000147-text","created_at":"2025-01-02T18:40:02.275599Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:40:07.605110Z","user":100000},{"id":20000163,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000163-test","created_at":"2025-01-02T19:22:41.925163Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T19:22:47.480302Z","user":100000},{"id":20000164,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000164-text","created_at":"2025-01-02T19:22:41.925261Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T19:22:47.817473Z","user":100000},{"id":20000180,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000180-test","created_at":"2025-01-02T19:41:24.016515Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T19:41:30.504415Z","user":100000},{"id":20000181,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000181-text","created_at":"2025-01-02T19:41:24.016613Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T19:41:30.680316Z","user":100000},{"id":20000197,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000197-test","created_at":"2025-01-02T19:50:13.091759Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T19:50:19.471640Z","user":100000},{"id":20000198,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000198-text","created_at":"2025-01-02T19:50:13.091857Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T19:50:19.855788Z","user":100000},{"id":20000214,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000214-test","created_at":"2025-01-02T20:03:04.316156Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:03:10.653328Z","user":100000}]}' + string: '{"count":31,"next":"https://api.dev.documentcloud.org/api/documents/?page=2","previous":null,"results":[{"id":20000010,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000010-test/","created_at":"2025-09-23T20:03:52.712360Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:03:58.421127Z","user":100000},{"id":20000011,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000011-text/","created_at":"2025-09-23T20:03:52.712448Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:03:59.506643Z","user":100000},{"id":20000017,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000017-dossier-recu-complet-le-3-mars-2025/","created_at":"2025-09-23T20:05:23.161046Z","data":{},"description":"","edit_access":true,"file_hash":"0c2645e8c409304f4af9d30da322ee32a5a275cc","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":13,"page_spec":"595.28x841.89:0-12","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"dossier-recu-complet-le-3-mars-2025","source":"","status":"success","title":"dossier-recu-complet-le-3-mars-2025","updated_at":"2025-09-23T20:05:49.048694Z","user":100000},{"id":20000028,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000028-test/","created_at":"2025-09-23T20:07:22.126274Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:07:28.615882Z","user":100000},{"id":20000029,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000029-text/","created_at":"2025-09-23T20:07:22.126305Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:07:28.307485Z","user":100000},{"id":20000034,"access":"public","admin_noindex":false,"asset_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/","canonical_url":"https://www.dev.documentcloud.org/documents/20000034-dossier-recu-complet-le-3-mars-2025/","created_at":"2025-09-23T20:11:49.428616Z","data":{},"description":"","edit_access":false,"file_hash":"0c2645e8c409304f4af9d30da322ee32a5a275cc","noindex":false,"language":"eng","organization":10002,"original_extension":"pdf","page_count":13,"page_spec":"595.28x841.89:0-12","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"dossier-recu-complet-le-3-mars-2025","source":"","status":"success","title":"dossier-recu-complet-le-3-mars-2025","updated_at":"2025-09-23T20:14:19.900642Z","user":100001},{"id":20000045,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000045-test/","created_at":"2025-09-23T20:13:31.955748Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:13:38.728774Z","user":100000},{"id":20000046,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000046-text/","created_at":"2025-09-23T20:13:31.955780Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:13:38.309234Z","user":100000},{"id":20000052,"access":"public","admin_noindex":false,"asset_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/","canonical_url":"https://www.dev.documentcloud.org/documents/20000052-cerfa-14734-04-dortan-signed/","created_at":"2025-09-23T20:14:54.050113Z","data":{},"description":"","edit_access":false,"file_hash":"68008c61169fd94554cbac3e868fb6d957c33f8e","noindex":false,"language":"eng","organization":10002,"original_extension":"pdf","page_count":13,"page_spec":"595.28x841.89:0-12","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"cerfa-14734-04-dortan-signed","source":"","status":"success","title":"cerfa + 14734-04 dortan signed","updated_at":"2025-09-23T20:15:18.102769Z","user":100001},{"id":20000063,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000063-test/","created_at":"2025-09-23T20:16:31.439732Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:16:37.611731Z","user":100000},{"id":20000064,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000064-text/","created_at":"2025-09-23T20:16:31.439775Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:16:37.298379Z","user":100000},{"id":20000076,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000076-test/","created_at":"2025-09-23T22:50:54.616236Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:51:46.781874Z","user":100000},{"id":20000077,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000077-test/","created_at":"2025-09-23T22:51:48.088605Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:53:39.716202Z","user":100000},{"id":20000078,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000078-test/","created_at":"2025-09-23T22:53:40.862933Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:55:00.005915Z","user":100000},{"id":20000079,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000079-test/","created_at":"2025-09-23T22:55:00.936162Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:56:32.611824Z","user":100000},{"id":20000090,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000090-test/","created_at":"2025-09-23T23:24:41.476623Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T23:25:35.735664Z","user":100000},{"id":20000091,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000091-text/","created_at":"2025-09-23T23:24:41.476663Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T23:25:49.733428Z","user":100000},{"id":20000107,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000107-test/","created_at":"2025-09-24T15:03:00.852905Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:03:07.014325Z","user":100000},{"id":20000108,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000108-text/","created_at":"2025-09-24T15:03:00.852944Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:03:07.054945Z","user":100000},{"id":20000124,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000124-test/","created_at":"2025-09-24T15:11:48.338041Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:11:54.136033Z","user":100000},{"id":20000125,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000125-text/","created_at":"2025-09-24T15:11:48.338121Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:11:54.167704Z","user":100000},{"id":20000141,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000141-test/","created_at":"2025-09-24T15:16:33.299662Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:16:39.650121Z","user":100000},{"id":20000142,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000142-text/","created_at":"2025-09-24T15:16:33.299696Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:16:39.157575Z","user":100000},{"id":20000158,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000158-test/","created_at":"2025-09-24T15:50:20.737003Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:50:26.737759Z","user":100000},{"id":20000159,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000159-text/","created_at":"2025-09-24T15:50:20.737036Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:50:26.972793Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -27,13 +28,13 @@ interactions: Content-Language: - en Content-Length: - - '17071' + - '17220' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:06 GMT + - Wed, 24 Sep 2025 16:09:15 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_base/TestAPIResults.test_next.yaml b/tests/cassettes/test_base/TestAPIResults.test_next.yaml index a7f11f4..a0b916f 100644 --- a/tests/cassettes/test_base/TestAPIResults.test_next.yaml +++ b/tests/cassettes/test_base/TestAPIResults.test_next.yaml @@ -5,18 +5,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/users/me/ response: body: - string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"is_staff":true,"name":"test-user","organization":10004,"organizations":[10000,10004],"admin_organizations":[10000,10004],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":""}' + string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"name":"hello + there","organization":10000,"organizations":[10001,10000],"admin_organizations":[10001,10000],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":"sanjin@muckrock.com"}' headers: Allow: - GET, PUT, PATCH, HEAD, OPTIONS @@ -25,13 +26,13 @@ interactions: Content-Language: - en Content-Length: - - '335' + - '340' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:06 GMT + - Wed, 24 Sep 2025 16:09:15 GMT Referrer-Policy: - same-origin Server: @@ -51,18 +52,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?user=100000&per_page=1 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=2&per_page=1&user=100000","previous":null,"results":[{"id":20000010,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000010-test","created_at":"2024-12-12T00:23:13.365192Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2024-12-12T00:23:19.106274Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=2&per_page=1&user=100000","previous":null,"results":[{"id":20000010,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000010-test/","created_at":"2025-09-23T20:03:52.712360Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:03:58.421127Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -73,13 +74,13 @@ interactions: Content-Language: - en Content-Length: - - '798' + - '801' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:07 GMT + - Wed, 24 Sep 2025 16:09:15 GMT Referrer-Policy: - same-origin Server: @@ -99,18 +100,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=2&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=3&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?per_page=1&user=100000","results":[{"id":20000011,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000011-text","created_at":"2024-12-12T00:23:13.365274Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2024-12-12T00:23:19.325229Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=3&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?per_page=1&user=100000","results":[{"id":20000011,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000011-text/","created_at":"2025-09-23T20:03:52.712448Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:03:59.506643Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -121,13 +122,13 @@ interactions: Content-Language: - en Content-Length: - - '885' + - '870' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:07 GMT + - Wed, 24 Sep 2025 16:09:15 GMT Referrer-Policy: - same-origin Server: @@ -147,18 +148,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=3&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=4&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=2&per_page=1&user=100000","results":[{"id":20000027,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000027-test","created_at":"2024-12-12T00:30:12.606658Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2024-12-12T00:30:18.462609Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=4&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=2&per_page=1&user=100000","results":[{"id":20000017,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000017-dossier-recu-complet-le-3-mars-2025/","created_at":"2025-09-23T20:05:23.161046Z","data":{},"description":"","edit_access":true,"file_hash":"0c2645e8c409304f4af9d30da322ee32a5a275cc","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":13,"page_spec":"595.28x841.89:0-12","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"dossier-recu-complet-le-3-mars-2025","source":"","status":"success","title":"dossier-recu-complet-le-3-mars-2025","updated_at":"2025-09-23T20:05:49.048694Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -169,13 +170,13 @@ interactions: Content-Language: - en Content-Length: - - '874' + - '974' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:07 GMT + - Wed, 24 Sep 2025 16:09:15 GMT Referrer-Policy: - same-origin Server: @@ -195,18 +196,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=4&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=5&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=3&per_page=1&user=100000","results":[{"id":20000028,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000028-text","created_at":"2024-12-12T00:30:12.606689Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2024-12-12T00:30:18.446041Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=5&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=3&per_page=1&user=100000","results":[{"id":20000028,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000028-test/","created_at":"2025-09-23T20:07:22.126274Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:07:28.615882Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -217,13 +218,13 @@ interactions: Content-Language: - en Content-Length: - - '892' + - '877' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:07 GMT + - Wed, 24 Sep 2025 16:09:15 GMT Referrer-Policy: - same-origin Server: @@ -243,18 +244,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=5&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=6&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=4&per_page=1&user=100000","results":[{"id":20000044,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000044-test","created_at":"2025-01-02T17:35:42.271979Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T17:35:53.579946Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=6&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=4&per_page=1&user=100000","results":[{"id":20000029,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000029-text/","created_at":"2025-09-23T20:07:22.126305Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:07:28.307485Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -265,13 +266,13 @@ interactions: Content-Language: - en Content-Length: - - '874' + - '877' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:07 GMT + - Wed, 24 Sep 2025 16:09:15 GMT Referrer-Policy: - same-origin Server: @@ -291,18 +292,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=6&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=7&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=5&per_page=1&user=100000","results":[{"id":20000045,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000045-text","created_at":"2025-01-02T17:35:42.272045Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T17:35:52.821026Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=7&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=5&per_page=1&user=100000","results":[{"id":20000045,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000045-test/","created_at":"2025-09-23T20:13:31.955748Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:13:38.728774Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -313,13 +314,13 @@ interactions: Content-Language: - en Content-Length: - - '892' + - '877' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:07 GMT + - Wed, 24 Sep 2025 16:09:15 GMT Referrer-Policy: - same-origin Server: @@ -339,18 +340,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=7&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=8&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=6&per_page=1&user=100000","results":[{"id":20000061,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000061-test","created_at":"2025-01-02T17:52:19.844665Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T17:52:25.470318Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=8&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=6&per_page=1&user=100000","results":[{"id":20000046,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000046-text/","created_at":"2025-09-23T20:13:31.955780Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:13:38.309234Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -361,13 +362,13 @@ interactions: Content-Language: - en Content-Length: - - '874' + - '877' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:07 GMT + - Wed, 24 Sep 2025 16:09:16 GMT Referrer-Policy: - same-origin Server: @@ -387,18 +388,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=8&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=9&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=7&per_page=1&user=100000","results":[{"id":20000062,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000062-text","created_at":"2025-01-02T17:52:19.844743Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T17:52:25.021059Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=9&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=7&per_page=1&user=100000","results":[{"id":20000063,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000063-test/","created_at":"2025-09-23T20:16:31.439732Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:16:37.611731Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -409,13 +410,13 @@ interactions: Content-Language: - en Content-Length: - - '892' + - '877' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:07 GMT + - Wed, 24 Sep 2025 16:09:16 GMT Referrer-Policy: - same-origin Server: @@ -435,18 +436,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=9&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=10&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=8&per_page=1&user=100000","results":[{"id":20000078,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000078-test","created_at":"2025-01-02T17:59:08.935604Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T17:59:14.581074Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=10&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=8&per_page=1&user=100000","results":[{"id":20000064,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000064-text/","created_at":"2025-09-23T20:16:31.439775Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:16:37.298379Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -457,13 +458,13 @@ interactions: Content-Language: - en Content-Length: - - '875' + - '878' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:07 GMT + - Wed, 24 Sep 2025 16:09:16 GMT Referrer-Policy: - same-origin Server: @@ -483,18 +484,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=10&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=11&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=9&per_page=1&user=100000","results":[{"id":20000079,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000079-text","created_at":"2025-01-02T17:59:08.935637Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T17:59:14.573546Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=11&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=9&per_page=1&user=100000","results":[{"id":20000076,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000076-test/","created_at":"2025-09-23T22:50:54.616236Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:51:46.781874Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -505,13 +506,13 @@ interactions: Content-Language: - en Content-Length: - - '893' + - '878' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:08 GMT + - Wed, 24 Sep 2025 16:09:16 GMT Referrer-Policy: - same-origin Server: @@ -531,18 +532,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=11&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=12&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=10&per_page=1&user=100000","results":[{"id":20000095,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000095-test","created_at":"2025-01-02T18:02:04.051573Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:02:10.243219Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=12&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=10&per_page=1&user=100000","results":[{"id":20000077,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000077-test/","created_at":"2025-09-23T22:51:48.088605Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:53:39.716202Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -553,13 +554,13 @@ interactions: Content-Language: - en Content-Length: - - '876' + - '879' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:08 GMT + - Wed, 24 Sep 2025 16:09:16 GMT Referrer-Policy: - same-origin Server: @@ -579,18 +580,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=12&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=13&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=11&per_page=1&user=100000","results":[{"id":20000096,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000096-text","created_at":"2025-01-02T18:02:04.051629Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:02:10.172910Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=13&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=11&per_page=1&user=100000","results":[{"id":20000078,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000078-test/","created_at":"2025-09-23T22:53:40.862933Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:55:00.005915Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -601,13 +602,13 @@ interactions: Content-Language: - en Content-Length: - - '894' + - '879' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:08 GMT + - Wed, 24 Sep 2025 16:09:16 GMT Referrer-Policy: - same-origin Server: @@ -627,18 +628,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=13&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=14&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=12&per_page=1&user=100000","results":[{"id":20000112,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000112-test","created_at":"2025-01-02T18:19:20.038399Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:19:26.512686Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=14&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=12&per_page=1&user=100000","results":[{"id":20000079,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000079-test/","created_at":"2025-09-23T22:55:00.936162Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:56:32.611824Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -649,13 +650,13 @@ interactions: Content-Language: - en Content-Length: - - '876' + - '879' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:08 GMT + - Wed, 24 Sep 2025 16:09:16 GMT Referrer-Policy: - same-origin Server: @@ -675,18 +676,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=14&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=15&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=13&per_page=1&user=100000","results":[{"id":20000113,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000113-text","created_at":"2025-01-02T18:19:20.038433Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:19:26.235813Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=15&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=13&per_page=1&user=100000","results":[{"id":20000090,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000090-test/","created_at":"2025-09-23T23:24:41.476623Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T23:25:35.735664Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -697,13 +698,13 @@ interactions: Content-Language: - en Content-Length: - - '894' + - '879' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:08 GMT + - Wed, 24 Sep 2025 16:09:16 GMT Referrer-Policy: - same-origin Server: @@ -723,18 +724,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=15&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=16&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=14&per_page=1&user=100000","results":[{"id":20000129,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000129-test","created_at":"2025-01-02T18:36:41.047671Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:36:47.597018Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=16&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=14&per_page=1&user=100000","results":[{"id":20000091,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000091-text/","created_at":"2025-09-23T23:24:41.476663Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T23:25:49.733428Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -745,13 +746,13 @@ interactions: Content-Language: - en Content-Length: - - '876' + - '879' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:08 GMT + - Wed, 24 Sep 2025 16:09:16 GMT Referrer-Policy: - same-origin Server: @@ -771,18 +772,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=16&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=17&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=15&per_page=1&user=100000","results":[{"id":20000130,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000130-text","created_at":"2025-01-02T18:36:41.047701Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:36:46.660069Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=17&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=15&per_page=1&user=100000","results":[{"id":20000107,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000107-test/","created_at":"2025-09-24T15:03:00.852905Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:03:07.014325Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -793,13 +794,13 @@ interactions: Content-Language: - en Content-Length: - - '894' + - '879' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:08 GMT + - Wed, 24 Sep 2025 16:09:16 GMT Referrer-Policy: - same-origin Server: @@ -819,18 +820,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=17&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=18&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=16&per_page=1&user=100000","results":[{"id":20000146,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000146-test","created_at":"2025-01-02T18:40:02.275568Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:40:07.691288Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=18&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=16&per_page=1&user=100000","results":[{"id":20000108,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000108-text/","created_at":"2025-09-24T15:03:00.852944Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:03:07.054945Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -841,13 +842,13 @@ interactions: Content-Language: - en Content-Length: - - '876' + - '879' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:08 GMT + - Wed, 24 Sep 2025 16:09:16 GMT Referrer-Policy: - same-origin Server: @@ -867,18 +868,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=18&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=19&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=17&per_page=1&user=100000","results":[{"id":20000147,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000147-text","created_at":"2025-01-02T18:40:02.275599Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:40:07.605110Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=19&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=17&per_page=1&user=100000","results":[{"id":20000124,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000124-test/","created_at":"2025-09-24T15:11:48.338041Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:11:54.136033Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -889,13 +890,13 @@ interactions: Content-Language: - en Content-Length: - - '894' + - '879' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:08 GMT + - Wed, 24 Sep 2025 16:09:16 GMT Referrer-Policy: - same-origin Server: @@ -915,18 +916,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=19&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=20&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=18&per_page=1&user=100000","results":[{"id":20000163,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000163-test","created_at":"2025-01-02T19:22:41.925163Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T19:22:47.480302Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=20&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=18&per_page=1&user=100000","results":[{"id":20000125,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000125-text/","created_at":"2025-09-24T15:11:48.338121Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:11:54.167704Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -937,13 +938,13 @@ interactions: Content-Language: - en Content-Length: - - '876' + - '879' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:08 GMT + - Wed, 24 Sep 2025 16:09:17 GMT Referrer-Policy: - same-origin Server: @@ -963,18 +964,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=20&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=21&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=19&per_page=1&user=100000","results":[{"id":20000164,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000164-text","created_at":"2025-01-02T19:22:41.925261Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T19:22:47.817473Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=21&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=19&per_page=1&user=100000","results":[{"id":20000141,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000141-test/","created_at":"2025-09-24T15:16:33.299662Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:16:39.650121Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -985,13 +986,13 @@ interactions: Content-Language: - en Content-Length: - - '894' + - '879' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:09 GMT + - Wed, 24 Sep 2025 16:09:17 GMT Referrer-Policy: - same-origin Server: @@ -1011,18 +1012,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=21&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=22&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=20&per_page=1&user=100000","results":[{"id":20000180,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000180-test","created_at":"2025-01-02T19:41:24.016515Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T19:41:30.504415Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=22&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=20&per_page=1&user=100000","results":[{"id":20000142,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000142-text/","created_at":"2025-09-24T15:16:33.299696Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:16:39.157575Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -1033,13 +1034,13 @@ interactions: Content-Language: - en Content-Length: - - '876' + - '879' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:09 GMT + - Wed, 24 Sep 2025 16:09:17 GMT Referrer-Policy: - same-origin Server: @@ -1059,18 +1060,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=22&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=23&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=21&per_page=1&user=100000","results":[{"id":20000181,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000181-text","created_at":"2025-01-02T19:41:24.016613Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T19:41:30.680316Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=23&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=21&per_page=1&user=100000","results":[{"id":20000158,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000158-test/","created_at":"2025-09-24T15:50:20.737003Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:50:26.737759Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -1081,13 +1082,13 @@ interactions: Content-Language: - en Content-Length: - - '894' + - '879' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:09 GMT + - Wed, 24 Sep 2025 16:09:17 GMT Referrer-Policy: - same-origin Server: @@ -1107,18 +1108,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=23&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=24&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=22&per_page=1&user=100000","results":[{"id":20000197,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000197-test","created_at":"2025-01-02T19:50:13.091759Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T19:50:19.471640Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=24&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=22&per_page=1&user=100000","results":[{"id":20000159,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000159-text/","created_at":"2025-09-24T15:50:20.737036Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:50:26.972793Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -1129,13 +1130,13 @@ interactions: Content-Language: - en Content-Length: - - '876' + - '879' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:09 GMT + - Wed, 24 Sep 2025 16:09:17 GMT Referrer-Policy: - same-origin Server: @@ -1155,18 +1156,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=24&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=25&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=23&per_page=1&user=100000","results":[{"id":20000198,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000198-text","created_at":"2025-01-02T19:50:13.091857Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T19:50:19.855788Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=25&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=23&per_page=1&user=100000","results":[{"id":20000175,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000175-test/","created_at":"2025-09-24T16:04:58.966581Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:05:05.605664Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -1177,13 +1178,13 @@ interactions: Content-Language: - en Content-Length: - - '894' + - '879' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:09 GMT + - Wed, 24 Sep 2025 16:09:17 GMT Referrer-Policy: - same-origin Server: @@ -1203,18 +1204,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=25&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=26&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=24&per_page=1&user=100000","results":[{"id":20000214,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000214-test","created_at":"2025-01-02T20:03:04.316156Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:03:10.653328Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=26&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=24&per_page=1&user=100000","results":[{"id":20000176,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000176-text/","created_at":"2025-09-24T16:04:58.966637Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T16:05:05.299525Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -1225,13 +1226,13 @@ interactions: Content-Language: - en Content-Length: - - '876' + - '879' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:09 GMT + - Wed, 24 Sep 2025 16:09:17 GMT Referrer-Policy: - same-origin Server: @@ -1251,18 +1252,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=26&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=27&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=25&per_page=1&user=100000","results":[{"id":20000215,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000215-text","created_at":"2025-01-02T20:03:04.316218Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T20:03:10.920371Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=27&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=25&per_page=1&user=100000","results":[{"id":20000192,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000192-test/","created_at":"2025-09-24T16:07:32.184295Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:07:38.307434Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -1273,13 +1274,13 @@ interactions: Content-Language: - en Content-Length: - - '894' + - '879' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:09 GMT + - Wed, 24 Sep 2025 16:09:17 GMT Referrer-Policy: - same-origin Server: @@ -1299,18 +1300,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=27&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=28&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=26&per_page=1&user=100000","results":[{"id":20000231,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000231-test","created_at":"2025-01-02T20:09:28.107799Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:09:35.483550Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=28&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=26&per_page=1&user=100000","results":[{"id":20000193,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000193-text/","created_at":"2025-09-24T16:07:32.184330Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T16:07:37.945030Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -1321,13 +1322,13 @@ interactions: Content-Language: - en Content-Length: - - '876' + - '879' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:09 GMT + - Wed, 24 Sep 2025 16:09:17 GMT Referrer-Policy: - same-origin Server: @@ -1347,18 +1348,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=28&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=29&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=27&per_page=1&user=100000","results":[{"id":20000232,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000232-text","created_at":"2025-01-02T20:09:28.107859Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T20:09:35.556437Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=29&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=27&per_page=1&user=100000","results":[{"id":20000199,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000199-test/","created_at":"2025-09-24T16:08:49.270524Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[200056],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:09:01.334883Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -1369,13 +1370,13 @@ interactions: Content-Language: - en Content-Length: - - '894' + - '885' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:09 GMT + - Wed, 24 Sep 2025 16:09:17 GMT Referrer-Policy: - same-origin Server: @@ -1395,259 +1396,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=29&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=30&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=28&per_page=1&user=100000","results":[{"id":20000248,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000248-test","created_at":"2025-01-02T20:14:38.056818Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:14:49.547678Z","user":100000}]}' - headers: - Allow: - - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '876' - Content-Type: - - application/json - Cross-Origin-Opener-Policy: - - same-origin - Date: - - Thu, 02 Jan 2025 20:29:10 GMT - Referrer-Policy: - - same-origin - Server: - - nginx/1.25.2 - Vary: - - Accept, Origin, Accept-Language, Cookie - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: https://api.dev.documentcloud.org/api/documents/?page=30&per_page=1&user=100000 - response: - body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=31&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=29&per_page=1&user=100000","results":[{"id":20000249,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000249-text","created_at":"2025-01-02T20:14:38.056913Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T20:14:49.530132Z","user":100000}]}' - headers: - Allow: - - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '894' - Content-Type: - - application/json - Cross-Origin-Opener-Policy: - - same-origin - Date: - - Thu, 02 Jan 2025 20:29:10 GMT - Referrer-Policy: - - same-origin - Server: - - nginx/1.25.2 - Vary: - - Accept, Origin, Accept-Language, Cookie - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: https://api.dev.documentcloud.org/api/documents/?page=31&per_page=1&user=100000 - response: - body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=32&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=30&per_page=1&user=100000","results":[{"id":20000265,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000265-test","created_at":"2025-01-02T20:19:06.335137Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:19:12.838465Z","user":100000}]}' - headers: - Allow: - - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '876' - Content-Type: - - application/json - Cross-Origin-Opener-Policy: - - same-origin - Date: - - Thu, 02 Jan 2025 20:29:10 GMT - Referrer-Policy: - - same-origin - Server: - - nginx/1.25.2 - Vary: - - Accept, Origin, Accept-Language, Cookie - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: https://api.dev.documentcloud.org/api/documents/?page=32&per_page=1&user=100000 - response: - body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=33&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=31&per_page=1&user=100000","results":[{"id":20000266,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000266-text","created_at":"2025-01-02T20:19:06.335203Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T20:19:13.219304Z","user":100000}]}' - headers: - Allow: - - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '894' - Content-Type: - - application/json - Cross-Origin-Opener-Policy: - - same-origin - Date: - - Thu, 02 Jan 2025 20:29:10 GMT - Referrer-Policy: - - same-origin - Server: - - nginx/1.25.2 - Vary: - - Accept, Origin, Accept-Language, Cookie - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: https://api.dev.documentcloud.org/api/documents/?page=33&per_page=1&user=100000 - response: - body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=34&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?page=32&per_page=1&user=100000","results":[{"id":20000272,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000272-test","created_at":"2025-01-02T20:28:50.994529Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[200070],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:28:57.821892Z","user":100000}]}' - headers: - Allow: - - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS - Cache-Control: - - no-cache - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '882' - Content-Type: - - application/json - Cross-Origin-Opener-Policy: - - same-origin - Date: - - Thu, 02 Jan 2025 20:29:10 GMT - Referrer-Policy: - - same-origin - Server: - - nginx/1.25.2 - Vary: - - Accept, Origin, Accept-Language, Cookie - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: https://api.dev.documentcloud.org/api/documents/?page=34&per_page=1&user=100000 - response: - body: - string: '{"count":34,"next":null,"previous":"https://api.dev.documentcloud.org/api/documents/?page=33&per_page=1&user=100000","results":[{"id":20000273,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000273-test","created_at":"2025-01-02T20:28:57.927312Z","data":{"_tag":["document"]},"description":"A - simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[200070],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"success","title":"test","updated_at":"2025-01-02T20:29:04.258476Z","user":100000}]}' + string: '{"count":29,"next":null,"previous":"https://api.dev.documentcloud.org/api/documents/?page=28&per_page=1&user=100000","results":[{"id":20000200,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000200-test/","created_at":"2025-09-24T16:09:01.460974Z","data":{"_tag":["document"]},"description":"A + simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[200056],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"success","title":"test","updated_at":"2025-09-24T16:09:12.774106Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -1658,13 +1419,13 @@ interactions: Content-Language: - en Content-Length: - - '931' + - '934' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:10 GMT + - Wed, 24 Sep 2025 16:09:17 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_base/TestAPIResults.test_previous.yaml b/tests/cassettes/test_base/TestAPIResults.test_previous.yaml index 9298e65..9950c55 100644 --- a/tests/cassettes/test_base/TestAPIResults.test_previous.yaml +++ b/tests/cassettes/test_base/TestAPIResults.test_previous.yaml @@ -5,18 +5,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?user=100000&per_page=1 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=2&per_page=1&user=100000","previous":null,"results":[{"id":20000010,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000010-test","created_at":"2024-12-12T00:23:13.365192Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2024-12-12T00:23:19.106274Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=2&per_page=1&user=100000","previous":null,"results":[{"id":20000010,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000010-test/","created_at":"2025-09-23T20:03:52.712360Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:03:58.421127Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -27,13 +27,13 @@ interactions: Content-Language: - en Content-Length: - - '798' + - '801' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:10 GMT + - Wed, 24 Sep 2025 16:09:18 GMT Referrer-Policy: - same-origin Server: @@ -53,18 +53,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=2&per_page=1&user=100000 response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=3&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?per_page=1&user=100000","results":[{"id":20000011,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000011-text","created_at":"2024-12-12T00:23:13.365274Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2024-12-12T00:23:19.325229Z","user":100000}]}' + string: '{"count":29,"next":"https://api.dev.documentcloud.org/api/documents/?page=3&per_page=1&user=100000","previous":"https://api.dev.documentcloud.org/api/documents/?per_page=1&user=100000","results":[{"id":20000011,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000011-text/","created_at":"2025-09-23T20:03:52.712448Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:03:59.506643Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -75,13 +75,13 @@ interactions: Content-Language: - en Content-Length: - - '885' + - '870' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:10 GMT + - Wed, 24 Sep 2025 16:09:18 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_base/TestAPIResults.test_str.yaml b/tests/cassettes/test_base/TestAPIResults.test_str.yaml index 066d07a..1146cf5 100644 --- a/tests/cassettes/test_base/TestAPIResults.test_str.yaml +++ b/tests/cassettes/test_base/TestAPIResults.test_str.yaml @@ -5,18 +5,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/ response: body: - string: '{"count":34,"next":"https://api.dev.documentcloud.org/api/documents/?page=2","previous":null,"results":[{"id":20000010,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000010-test","created_at":"2024-12-12T00:23:13.365192Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2024-12-12T00:23:19.106274Z","user":100000},{"id":20000011,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000011-text","created_at":"2024-12-12T00:23:13.365274Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2024-12-12T00:23:19.325229Z","user":100000},{"id":20000027,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000027-test","created_at":"2024-12-12T00:30:12.606658Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2024-12-12T00:30:18.462609Z","user":100000},{"id":20000028,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000028-text","created_at":"2024-12-12T00:30:12.606689Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2024-12-12T00:30:18.446041Z","user":100000},{"id":20000044,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000044-test","created_at":"2025-01-02T17:35:42.271979Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T17:35:53.579946Z","user":100000},{"id":20000045,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000045-text","created_at":"2025-01-02T17:35:42.272045Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T17:35:52.821026Z","user":100000},{"id":20000061,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000061-test","created_at":"2025-01-02T17:52:19.844665Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T17:52:25.470318Z","user":100000},{"id":20000062,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000062-text","created_at":"2025-01-02T17:52:19.844743Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T17:52:25.021059Z","user":100000},{"id":20000078,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000078-test","created_at":"2025-01-02T17:59:08.935604Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T17:59:14.581074Z","user":100000},{"id":20000079,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000079-text","created_at":"2025-01-02T17:59:08.935637Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T17:59:14.573546Z","user":100000},{"id":20000095,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000095-test","created_at":"2025-01-02T18:02:04.051573Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:02:10.243219Z","user":100000},{"id":20000096,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000096-text","created_at":"2025-01-02T18:02:04.051629Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:02:10.172910Z","user":100000},{"id":20000112,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000112-test","created_at":"2025-01-02T18:19:20.038399Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:19:26.512686Z","user":100000},{"id":20000113,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000113-text","created_at":"2025-01-02T18:19:20.038433Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:19:26.235813Z","user":100000},{"id":20000129,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000129-test","created_at":"2025-01-02T18:36:41.047671Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:36:47.597018Z","user":100000},{"id":20000130,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000130-text","created_at":"2025-01-02T18:36:41.047701Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:36:46.660069Z","user":100000},{"id":20000146,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000146-test","created_at":"2025-01-02T18:40:02.275568Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:40:07.691288Z","user":100000},{"id":20000147,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000147-text","created_at":"2025-01-02T18:40:02.275599Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:40:07.605110Z","user":100000},{"id":20000163,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000163-test","created_at":"2025-01-02T19:22:41.925163Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T19:22:47.480302Z","user":100000},{"id":20000164,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000164-text","created_at":"2025-01-02T19:22:41.925261Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T19:22:47.817473Z","user":100000},{"id":20000180,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000180-test","created_at":"2025-01-02T19:41:24.016515Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T19:41:30.504415Z","user":100000},{"id":20000181,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000181-text","created_at":"2025-01-02T19:41:24.016613Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T19:41:30.680316Z","user":100000},{"id":20000197,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000197-test","created_at":"2025-01-02T19:50:13.091759Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T19:50:19.471640Z","user":100000},{"id":20000198,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000198-text","created_at":"2025-01-02T19:50:13.091857Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T19:50:19.855788Z","user":100000},{"id":20000214,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000214-test","created_at":"2025-01-02T20:03:04.316156Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:03:10.653328Z","user":100000}]}' + string: '{"count":31,"next":"https://api.dev.documentcloud.org/api/documents/?page=2","previous":null,"results":[{"id":20000010,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000010-test/","created_at":"2025-09-23T20:03:52.712360Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:03:58.421127Z","user":100000},{"id":20000011,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000011-text/","created_at":"2025-09-23T20:03:52.712448Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:03:59.506643Z","user":100000},{"id":20000017,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000017-dossier-recu-complet-le-3-mars-2025/","created_at":"2025-09-23T20:05:23.161046Z","data":{},"description":"","edit_access":true,"file_hash":"0c2645e8c409304f4af9d30da322ee32a5a275cc","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":13,"page_spec":"595.28x841.89:0-12","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"dossier-recu-complet-le-3-mars-2025","source":"","status":"success","title":"dossier-recu-complet-le-3-mars-2025","updated_at":"2025-09-23T20:05:49.048694Z","user":100000},{"id":20000028,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000028-test/","created_at":"2025-09-23T20:07:22.126274Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:07:28.615882Z","user":100000},{"id":20000029,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000029-text/","created_at":"2025-09-23T20:07:22.126305Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:07:28.307485Z","user":100000},{"id":20000034,"access":"public","admin_noindex":false,"asset_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/","canonical_url":"https://www.dev.documentcloud.org/documents/20000034-dossier-recu-complet-le-3-mars-2025/","created_at":"2025-09-23T20:11:49.428616Z","data":{},"description":"","edit_access":false,"file_hash":"0c2645e8c409304f4af9d30da322ee32a5a275cc","noindex":false,"language":"eng","organization":10002,"original_extension":"pdf","page_count":13,"page_spec":"595.28x841.89:0-12","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"dossier-recu-complet-le-3-mars-2025","source":"","status":"success","title":"dossier-recu-complet-le-3-mars-2025","updated_at":"2025-09-23T20:14:19.900642Z","user":100001},{"id":20000045,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000045-test/","created_at":"2025-09-23T20:13:31.955748Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:13:38.728774Z","user":100000},{"id":20000046,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000046-text/","created_at":"2025-09-23T20:13:31.955780Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:13:38.309234Z","user":100000},{"id":20000052,"access":"public","admin_noindex":false,"asset_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/","canonical_url":"https://www.dev.documentcloud.org/documents/20000052-cerfa-14734-04-dortan-signed/","created_at":"2025-09-23T20:14:54.050113Z","data":{},"description":"","edit_access":false,"file_hash":"68008c61169fd94554cbac3e868fb6d957c33f8e","noindex":false,"language":"eng","organization":10002,"original_extension":"pdf","page_count":13,"page_spec":"595.28x841.89:0-12","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"cerfa-14734-04-dortan-signed","source":"","status":"success","title":"cerfa + 14734-04 dortan signed","updated_at":"2025-09-23T20:15:18.102769Z","user":100001},{"id":20000063,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000063-test/","created_at":"2025-09-23T20:16:31.439732Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:16:37.611731Z","user":100000},{"id":20000064,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000064-text/","created_at":"2025-09-23T20:16:31.439775Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:16:37.298379Z","user":100000},{"id":20000076,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000076-test/","created_at":"2025-09-23T22:50:54.616236Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:51:46.781874Z","user":100000},{"id":20000077,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000077-test/","created_at":"2025-09-23T22:51:48.088605Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:53:39.716202Z","user":100000},{"id":20000078,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000078-test/","created_at":"2025-09-23T22:53:40.862933Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:55:00.005915Z","user":100000},{"id":20000079,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000079-test/","created_at":"2025-09-23T22:55:00.936162Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:56:32.611824Z","user":100000},{"id":20000090,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000090-test/","created_at":"2025-09-23T23:24:41.476623Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T23:25:35.735664Z","user":100000},{"id":20000091,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000091-text/","created_at":"2025-09-23T23:24:41.476663Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T23:25:49.733428Z","user":100000},{"id":20000107,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000107-test/","created_at":"2025-09-24T15:03:00.852905Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:03:07.014325Z","user":100000},{"id":20000108,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000108-text/","created_at":"2025-09-24T15:03:00.852944Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:03:07.054945Z","user":100000},{"id":20000124,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000124-test/","created_at":"2025-09-24T15:11:48.338041Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:11:54.136033Z","user":100000},{"id":20000125,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000125-text/","created_at":"2025-09-24T15:11:48.338121Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:11:54.167704Z","user":100000},{"id":20000141,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000141-test/","created_at":"2025-09-24T15:16:33.299662Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:16:39.650121Z","user":100000},{"id":20000142,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000142-text/","created_at":"2025-09-24T15:16:33.299696Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:16:39.157575Z","user":100000},{"id":20000158,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000158-test/","created_at":"2025-09-24T15:50:20.737003Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:50:26.737759Z","user":100000},{"id":20000159,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000159-text/","created_at":"2025-09-24T15:50:20.737036Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:50:26.972793Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -27,13 +28,13 @@ interactions: Content-Language: - en Content-Length: - - '17071' + - '17220' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:05 GMT + - Wed, 24 Sep 2025 16:09:14 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_base/TestAPISet.test_add.yaml b/tests/cassettes/test_base/TestAPISet.test_add.yaml index 8609d57..3ceb42a 100644 --- a/tests/cassettes/test_base/TestAPISet.test_add.yaml +++ b/tests/cassettes/test_base/TestAPISet.test_add.yaml @@ -5,9 +5,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive Content-Length: @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://api.dev.documentcloud.org/api/documents/ response: body: - string: '{"id":20000275,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000275-test","created_at":"2025-01-02T20:29:17.918630Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-01-02T20:29:17.918891Z","user":100000}' + string: '{"id":20000202,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000202-test/","created_at":"2025-09-24T16:09:32.595158Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-09-24T16:09:32.595363Z","user":100000}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -31,13 +31,13 @@ interactions: Content-Language: - en Content-Length: - - '615' + - '616' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:17 GMT + - Wed, 24 Sep 2025 16:09:32 GMT Referrer-Policy: - same-origin Server: @@ -57,18 +57,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000275/ + uri: https://api.dev.documentcloud.org/api/documents/20000202/ response: body: - string: '{"id":20000275,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000275-test","created_at":"2025-01-02T20:29:17.918630Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:18.593163Z","user":100000}' + string: '{"id":20000202,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000202-test/","created_at":"2025-09-24T16:09:32.595158Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:33.328993Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -79,13 +79,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:19 GMT + - Wed, 24 Sep 2025 16:09:33 GMT Referrer-Policy: - same-origin Server: @@ -105,18 +105,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000275/ + uri: https://api.dev.documentcloud.org/api/documents/20000202/ response: body: - string: '{"id":20000275,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000275-test","created_at":"2025-01-02T20:29:17.918630Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:19.587818Z","user":100000}' + string: '{"id":20000202,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000202-test/","created_at":"2025-09-24T16:09:32.595158Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:34.422373Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -127,13 +127,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:20 GMT + - Wed, 24 Sep 2025 16:09:34 GMT Referrer-Policy: - same-origin Server: @@ -153,18 +153,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000275/ + uri: https://api.dev.documentcloud.org/api/documents/20000202/ response: body: - string: '{"id":20000275,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000275-test","created_at":"2025-01-02T20:29:17.918630Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:19.587818Z","user":100000}' + string: '{"id":20000202,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000202-test/","created_at":"2025-09-24T16:09:32.595158Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:34.422373Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -175,13 +175,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:21 GMT + - Wed, 24 Sep 2025 16:09:35 GMT Referrer-Policy: - same-origin Server: @@ -201,18 +201,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000275/ + uri: https://api.dev.documentcloud.org/api/documents/20000202/ response: body: - string: '{"id":20000275,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000275-test","created_at":"2025-01-02T20:29:17.918630Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:19.587818Z","user":100000}' + string: '{"id":20000202,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000202-test/","created_at":"2025-09-24T16:09:32.595158Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:34.422373Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -223,13 +223,205 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:09:36 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000202/ + response: + body: + string: '{"id":20000202,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000202-test/","created_at":"2025-09-24T16:09:32.595158Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:37.214201Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '672' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:09:38 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000202/ + response: + body: + string: '{"id":20000202,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000202-test/","created_at":"2025-09-24T16:09:32.595158Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:37.214201Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '672' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:09:39 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000202/ + response: + body: + string: '{"id":20000202,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000202-test/","created_at":"2025-09-24T16:09:32.595158Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:37.214201Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '672' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:09:40 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000202/ + response: + body: + string: '{"id":20000202,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000202-test/","created_at":"2025-09-24T16:09:32.595158Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:37.214201Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:22 GMT + - Wed, 24 Sep 2025 16:09:41 GMT Referrer-Policy: - same-origin Server: @@ -249,18 +441,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000275/ + uri: https://api.dev.documentcloud.org/api/documents/20000202/ response: body: - string: '{"id":20000275,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000275-test","created_at":"2025-01-02T20:29:17.918630Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:22.319244Z","user":100000}' + string: '{"id":20000202,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000202-test/","created_at":"2025-09-24T16:09:32.595158Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:37.214201Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -271,13 +463,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:23 GMT + - Wed, 24 Sep 2025 16:09:42 GMT Referrer-Policy: - same-origin Server: @@ -297,18 +489,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000275/ + uri: https://api.dev.documentcloud.org/api/documents/20000202/ response: body: - string: '{"id":20000275,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000275-test","created_at":"2025-01-02T20:29:17.918630Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:29:24.196506Z","user":100000}' + string: '{"id":20000202,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000202-test/","created_at":"2025-09-24T16:09:32.595158Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:09:42.840754Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -319,13 +511,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:24 GMT + - Wed, 24 Sep 2025 16:09:43 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_base/TestAPISet.test_append.yaml b/tests/cassettes/test_base/TestAPISet.test_append.yaml index 3d6f1b9..08e762a 100644 --- a/tests/cassettes/test_base/TestAPISet.test_append.yaml +++ b/tests/cassettes/test_base/TestAPISet.test_append.yaml @@ -5,9 +5,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive Content-Length: @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://api.dev.documentcloud.org/api/documents/ response: body: - string: '{"id":20000274,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000274-test","created_at":"2025-01-02T20:29:11.150604Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-01-02T20:29:11.150883Z","user":100000}' + string: '{"id":20000201,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000201-test/","created_at":"2025-09-24T16:09:18.343484Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-09-24T16:09:18.343607Z","user":100000}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -31,13 +31,13 @@ interactions: Content-Language: - en Content-Length: - - '615' + - '616' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:11 GMT + - Wed, 24 Sep 2025 16:09:18 GMT Referrer-Policy: - same-origin Server: @@ -57,18 +57,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000274/ + uri: https://api.dev.documentcloud.org/api/documents/20000201/ response: body: - string: '{"id":20000274,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000274-test","created_at":"2025-01-02T20:29:11.150604Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:11.818331Z","user":100000}' + string: '{"id":20000201,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000201-test/","created_at":"2025-09-24T16:09:18.343484Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000201/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T160919Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=6836d35773fa0951e2187e9c573a6e4595edcee26ddd12265ee584e632347db4","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-09-24T16:09:18.343607Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -79,13 +79,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '978' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:12 GMT + - Wed, 24 Sep 2025 16:09:19 GMT Referrer-Policy: - same-origin Server: @@ -105,18 +105,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000274/ + uri: https://api.dev.documentcloud.org/api/documents/20000201/ response: body: - string: '{"id":20000274,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000274-test","created_at":"2025-01-02T20:29:11.150604Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:12.863164Z","user":100000}' + string: '{"id":20000201,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000201-test/","created_at":"2025-09-24T16:09:18.343484Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000201/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T160920Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=5ce1dc8c1a956781927c4d380fb5cf8014cb44338bee670e52daba936a0ee4aa","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-09-24T16:09:18.343607Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -127,13 +127,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '978' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:13 GMT + - Wed, 24 Sep 2025 16:09:20 GMT Referrer-Policy: - same-origin Server: @@ -153,18 +153,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000274/ + uri: https://api.dev.documentcloud.org/api/documents/20000201/ response: body: - string: '{"id":20000274,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000274-test","created_at":"2025-01-02T20:29:11.150604Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:12.863164Z","user":100000}' + string: '{"id":20000201,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000201-test/","created_at":"2025-09-24T16:09:18.343484Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000201/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T160921Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=9b751e0c01a66e7d94e5b54753c34cadc80b2a78d189f812d04e728138d289c9","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-09-24T16:09:18.343607Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -175,13 +175,349 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '978' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:09:21 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000201/ + response: + body: + string: '{"id":20000201,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000201-test/","created_at":"2025-09-24T16:09:18.343484Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:21.698923Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '617' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:09:22 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000201/ + response: + body: + string: '{"id":20000201,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000201-test/","created_at":"2025-09-24T16:09:18.343484Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:22.825368Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '617' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:09:23 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000201/ + response: + body: + string: '{"id":20000201,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000201-test/","created_at":"2025-09-24T16:09:18.343484Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:22.825368Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '617' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:09:24 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000201/ + response: + body: + string: '{"id":20000201,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000201-test/","created_at":"2025-09-24T16:09:18.343484Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:25.647711Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '672' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:09:25 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000201/ + response: + body: + string: '{"id":20000201,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000201-test/","created_at":"2025-09-24T16:09:18.343484Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:25.647711Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '672' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:09:27 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000201/ + response: + body: + string: '{"id":20000201,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000201-test/","created_at":"2025-09-24T16:09:18.343484Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:25.647711Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '672' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:09:28 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000201/ + response: + body: + string: '{"id":20000201,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000201-test/","created_at":"2025-09-24T16:09:18.343484Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:25.647711Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:14 GMT + - Wed, 24 Sep 2025 16:09:29 GMT Referrer-Policy: - same-origin Server: @@ -201,18 +537,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000274/ + uri: https://api.dev.documentcloud.org/api/documents/20000201/ response: body: - string: '{"id":20000274,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000274-test","created_at":"2025-01-02T20:29:11.150604Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:15.521126Z","user":100000}' + string: '{"id":20000201,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000201-test/","created_at":"2025-09-24T16:09:18.343484Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:25.647711Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -223,13 +559,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:15 GMT + - Wed, 24 Sep 2025 16:09:30 GMT Referrer-Policy: - same-origin Server: @@ -249,18 +585,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000274/ + uri: https://api.dev.documentcloud.org/api/documents/20000201/ response: body: - string: '{"id":20000274,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000274-test","created_at":"2025-01-02T20:29:11.150604Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:15.521126Z","user":100000}' + string: '{"id":20000201,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000201-test/","created_at":"2025-09-24T16:09:18.343484Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:25.647711Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -271,13 +607,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:16 GMT + - Wed, 24 Sep 2025 16:09:31 GMT Referrer-Policy: - same-origin Server: @@ -297,18 +633,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000274/ + uri: https://api.dev.documentcloud.org/api/documents/20000201/ response: body: - string: '{"id":20000274,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000274-test","created_at":"2025-01-02T20:29:11.150604Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:29:17.379391Z","user":100000}' + string: '{"id":20000201,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000201-test/","created_at":"2025-09-24T16:09:18.343484Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:09:32.251707Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -319,13 +655,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:17 GMT + - Wed, 24 Sep 2025 16:09:32 GMT Referrer-Policy: - same-origin Server: @@ -345,19 +681,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/projects/200070/documents/?per_page=100&expand=document + uri: https://api.dev.documentcloud.org/api/projects/200056/documents/?per_page=100&expand=document response: body: - string: '{"count":2,"next":null,"previous":null,"results":[{"document":{"id":20000273,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000273-test","created_at":"2025-01-02T20:28:57.927312Z","data":{"_tag":["document"]},"description":"A - simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000273/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T202917Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=e38663b52d9b0b3c8cbb61386d64efa29e67191969608c0f19adb47a52a4632c","projects":[200070],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"success","title":"test","updated_at":"2025-01-02T20:29:04.258476Z","user":100000},"edit_access":true},{"document":{"id":20000272,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000272-test","created_at":"2025-01-02T20:28:50.994529Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000272/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T202917Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=1f0da388b86a4ce2ad3ce2a8202db3e4a08d2062f321a772a6163549211b6f63","projects":[200070],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:28:57.821892Z","user":100000},"edit_access":true}]}' + string: '{"count":2,"next":null,"previous":null,"results":[{"document":{"id":20000200,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000200-test/","created_at":"2025-09-24T16:09:01.460974Z","data":{"_tag":["document"]},"description":"A + simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000200/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T160932Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=d8a832ce3d0bbebab86fe4aa03da2bdc9bbb505cb4fa6fbdc1dbfc9a37ec9e5b","projects":[200056],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"success","title":"test","updated_at":"2025-09-24T16:09:12.774106Z","user":100000},"edit_access":true},{"document":{"id":20000199,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000199-test/","created_at":"2025-09-24T16:08:49.270524Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000199/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T160932Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=357f9fa57699f42c430fa167287f9b8bc1e247a33f631525ad0a6b17f9d2033e","projects":[200056],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:09:01.334883Z","user":100000},"edit_access":true}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -368,13 +704,13 @@ interactions: Content-Language: - en Content-Length: - - '2317' + - '2323' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:17 GMT + - Wed, 24 Sep 2025 16:09:32 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_base/TestAPISet.test_extend.yaml b/tests/cassettes/test_base/TestAPISet.test_extend.yaml index 2e9b6c3..74248e4 100644 --- a/tests/cassettes/test_base/TestAPISet.test_extend.yaml +++ b/tests/cassettes/test_base/TestAPISet.test_extend.yaml @@ -5,9 +5,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive Content-Length: @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://api.dev.documentcloud.org/api/documents/ response: body: - string: '{"id":20000276,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000276-test","created_at":"2025-01-02T20:29:24.628700Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-01-02T20:29:24.629025Z","user":100000}' + string: '{"id":20000203,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000203-test/","created_at":"2025-09-24T16:09:43.485666Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-09-24T16:09:43.485803Z","user":100000}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -31,13 +31,13 @@ interactions: Content-Language: - en Content-Length: - - '615' + - '616' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:24 GMT + - Wed, 24 Sep 2025 16:09:43 GMT Referrer-Policy: - same-origin Server: @@ -57,18 +57,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000276/ + uri: https://api.dev.documentcloud.org/api/documents/20000203/ response: body: - string: '{"id":20000276,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000276-test","created_at":"2025-01-02T20:29:24.628700Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:25.292932Z","user":100000}' + string: '{"id":20000203,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000203-test/","created_at":"2025-09-24T16:09:43.485666Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000203/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T160944Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=efd95447bbfe5431ca17e90521804b5f8de59f25d3da13d84a62e97995023fae","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-09-24T16:09:43.485803Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -79,13 +79,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '978' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:25 GMT + - Wed, 24 Sep 2025 16:09:44 GMT Referrer-Policy: - same-origin Server: @@ -105,18 +105,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000276/ + uri: https://api.dev.documentcloud.org/api/documents/20000203/ response: body: - string: '{"id":20000276,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000276-test","created_at":"2025-01-02T20:29:24.628700Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:26.415212Z","user":100000}' + string: '{"id":20000203,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000203-test/","created_at":"2025-09-24T16:09:43.485666Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:45.672150Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -127,13 +127,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:26 GMT + - Wed, 24 Sep 2025 16:09:45 GMT Referrer-Policy: - same-origin Server: @@ -153,18 +153,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000276/ + uri: https://api.dev.documentcloud.org/api/documents/20000203/ response: body: - string: '{"id":20000276,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000276-test","created_at":"2025-01-02T20:29:24.628700Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:26.415212Z","user":100000}' + string: '{"id":20000203,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000203-test/","created_at":"2025-09-24T16:09:43.485666Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:45.672150Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -175,13 +175,61 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:09:46 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000203/ + response: + body: + string: '{"id":20000203,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000203-test/","created_at":"2025-09-24T16:09:43.485666Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:45.672150Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:27 GMT + - Wed, 24 Sep 2025 16:09:47 GMT Referrer-Policy: - same-origin Server: @@ -201,18 +249,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000276/ + uri: https://api.dev.documentcloud.org/api/documents/20000203/ response: body: - string: '{"id":20000276,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000276-test","created_at":"2025-01-02T20:29:24.628700Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:28.925079Z","user":100000}' + string: '{"id":20000203,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000203-test/","created_at":"2025-09-24T16:09:43.485666Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:48.182544Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -223,13 +271,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:29 GMT + - Wed, 24 Sep 2025 16:09:48 GMT Referrer-Policy: - same-origin Server: @@ -249,18 +297,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000276/ + uri: https://api.dev.documentcloud.org/api/documents/20000203/ response: body: - string: '{"id":20000276,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000276-test","created_at":"2025-01-02T20:29:24.628700Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:28.925079Z","user":100000}' + string: '{"id":20000203,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000203-test/","created_at":"2025-09-24T16:09:43.485666Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:48.182544Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -271,13 +319,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:30 GMT + - Wed, 24 Sep 2025 16:09:50 GMT Referrer-Policy: - same-origin Server: @@ -297,18 +345,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000276/ + uri: https://api.dev.documentcloud.org/api/documents/20000203/ response: body: - string: '{"id":20000276,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000276-test","created_at":"2025-01-02T20:29:24.628700Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:29:30.892726Z","user":100000}' + string: '{"id":20000203,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000203-test/","created_at":"2025-09-24T16:09:43.485666Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:09:50.509016Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -319,13 +367,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:31 GMT + - Wed, 24 Sep 2025 16:09:51 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_base/TestAPISet.test_init.yaml b/tests/cassettes/test_base/TestAPISet.test_init.yaml index 7fd96d4..c71af39 100644 --- a/tests/cassettes/test_base/TestAPISet.test_init.yaml +++ b/tests/cassettes/test_base/TestAPISet.test_init.yaml @@ -5,9 +5,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive Content-Length: @@ -15,13 +15,13 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://api.dev.documentcloud.org/api/projects/ response: body: - string: '{"id":200071,"created_at":"2025-01-02T20:29:10.954754Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"project-factory","title":"Project - Factory","updated_at":"2025-01-02T20:29:10.955008Z","user":100000,"pinned":true}' + string: '{"id":200057,"created_at":"2025-09-24T16:09:18.182482Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"project-factory","title":"Project + Factory","updated_at":"2025-09-24T16:09:18.182658Z","user":100000,"pinned":true}' headers: Allow: - GET, POST, HEAD, OPTIONS @@ -36,7 +36,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:10 GMT + - Wed, 24 Sep 2025 16:09:18 GMT Referrer-Policy: - same-origin Server: @@ -56,15 +56,15 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDMwLCJqdGkiOiI4YTA4YmMwNmI4ODE0ZTA0YTRlMjAxOTJkMDc0OTE2MiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.VzUHJ6CcrWOE8zbAM3wZ4O3lQnaMhGzOp3QJniEzuLH6uae9o9Rvlkc94bFiZIOnlhTwUYlWJJQTh1wtmQriQLMoA56q-43Y3F-dUTXC6oGN5iCcrOD7VplGZc6oBDrPtRrayxJSE8GKs1yY7-oWgYhBRhI7Omekpk-g83fM-uXfVH1pQlvKqTFDsGFoFNn8xzIEQDoxuHJilj2dPHkxdBcF-dInTlokE8tjOTLyVggKYfyp0bqIz8UjyfPjXMqcsbPJOlFhf9hRE8Ha23HMNdFiuVM9sHnQP1fBpC8Ti3QOdqLoqSvRenviB80erRiM-c1-nRYFPeJN_SUnOjpY3w + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDI5LCJpYXQiOjE3NTg3MzAxMjksImp0aSI6IjEyMzE1OGFkOWExYjQ3YTE5ZDdhMjdlYjMwNTdmMzRkIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.LduwXStVTHJGEoNw9eO-xQ0OVLF6b-kaeq-qXOCGJ06mc6JygXWOE7D9NnV7m-PzdtTKCGyQtOCe1RvU51ho5yFNJUwlLcYlmABbOQnvWOuuyqYvzoGXwULm99lV8KWW2Aetmldo_pUU3LY0VJS4Qe13ZaussP1Emsr68_uvy99FU8Xkm_jQqt4qoUDWuj-IeXkVj024Mv70VrCOBiTs_fmRHJixo12aNadUe9D0MhHoJxgBmRiRDqlq0Tu-jjP5I2_wY-c7iVSMUJTFInXHKRJadBaavvllrLZ4t47nc9G-ustuqnT_i8vrkN95LJmL87EK6NoVzS_O84c6DySZDA Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/projects/200071/documents/?per_page=100&expand=document + uri: https://api.dev.documentcloud.org/api/projects/200057/documents/?per_page=100&expand=document response: body: string: '{"count":0,"next":null,"previous":null,"results":[]}' @@ -84,7 +84,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:11 GMT + - Wed, 24 Sep 2025 16:09:18 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_client/test_get_tokens.yaml b/tests/cassettes/test_client/test_get_tokens.yaml index 0550de2..9991d30 100644 --- a/tests/cassettes/test_client/test_get_tokens.yaml +++ b/tests/cassettes/test_client/test_get_tokens.yaml @@ -5,7 +5,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive Content-Length: @@ -13,36 +13,36 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://dev.squarelet.com/api/token/ response: body: - string: '{"refresh":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTczNTkzNjE3MSwianRpIjoiZTA1NjNmNjBiN2FjNDkxYTlmZjdkOTAwMGYxMjNiYWEiLCJ1c2VyX2lkIjoiZjYwMjllOGEtZDhhMi00MTg4LThhMjEtY2QwNzNhMDJlZTVjIiwiYXVkIjpbInNxdWFyZWxldCIsIm11Y2tyb2NrIiwiZG9jdW1lbnRjbG91ZCJdLCJpc3MiOlsic3F1YXJlbGV0Il19.M6PUZ54xRwg0k99DO39aZiMIRMkI0bBHoQXBU6n-EoQL7tBEVW1Koifpn-Ys0UdK7Tvimira1Wj1P0o13RnJJcwXJeJboMCaPhyYiWPAixRIdak74ETJ0h1hdSazN0hmD7kzIS3wsfQTTsR_YwduzkHUSlKp333k9bOqKuX6hTu1W6FG6RS5BrKSvLpkYyf1NTP_N3Gy1VnnMWA1fps0__grlVujGaI2sdjkH4EmVoNZaER-lwS8LamKyFXQ6TU6aCuSnlPrkQzv2SYxImaViwv4fGc8xnosTxH96UVzs2BN42WgbUaRB09cL3_ptr49ZekLYIcw4vBMj8235vhS-Q","access":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiJiZWEzMDY2YTZhNjA0NzBiYjBmM2Q4N2RjMzFjNDIwMCIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.cHo48Jmjvc6CCggZDkwody26qz0nTo85JwFmHpZemeQ1l74Bz__Bnm8Y_NML6vN1g8xiPDZFM7OkJwIcH5jAqvqbquwTc1nWEOsCJm3ZMv6AV_iTFMVy4KL1ylvt6Bg3sid0Yd03icAnP5iWlWkHdrxnP4jDFeeng7sPM1nbz47SMo6mMndonVjr33rSHXibuxyXKRTau9qK381DYSxAWuyFlEs7C1Ej5TXTgWYMaB3QTCfS3xyphta30GBtB44ory0aTRmJbhBSqIPzOwVOtxu_AXtQbH6iHiIlde_AiN7mP-s2eVo3SoITK2ZqgEFe0-mybOIc-U72d1i9Z-4Qfw"}' + string: '{"refresh":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTc1ODgxNjU5MSwiaWF0IjoxNzU4NzMwMTkxLCJqdGkiOiJiZTNmYTgxZTNiNTQ0NmE3ODc3N2NiNzBkY2Y2ZGEyMSIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.KvCGhJ3TuiwRDoCvAMVUe-hzIcjXuaxM5FoSgu9pKCQRE-kh8Fd0oW7InL8oo-fY8WL6YNPejYMphp8-n4YXfFzNC2a7LctEjZS5dJ9p7YEJj6Askp7Rm0sYdDmtflM0bgp4frlsPU8Y0WPI9YxW1D6Rngy_NvPIYMiT-Cg30_mySTBlZsYnbuoJ9dBJCfTDqSO9rnSBxC6WmgI1QOIBCsD2-J-5kZ2xjaas8qpLBmZmSvgQbseScOSfRh2D-QWZX3GP5bpwLmbPEs1xGG98iA-it7W2-9rfUN40po6N6693XQdiZIRpx2etiUByNwVXMiTVckV_dcuWiUVVu2LNRg","access":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6IjE3MGFlNzEwNWFhMjQ2NzQ5NWRiNWY5OWY3OWUxMTdhIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.KtXWNwGRBfGZcveEmMSLabm4cO0dStD-1EAjqNc_tSUTvB5T_WAHFC-cHXX24BtUI1xteKerrOmJumGvFG6uZN6oP1b7D1Z0g022C1UtOKZvv7C3fSpA4d4L4c8wa-7YwYAnmpkTkNsYaYH14zFsBdbGzn0YPpvHqwUeFvlHEP9vtVJQi1YD1hoi7VuJS5X10VKf8OyVQUk8UQ9V01C8HccC14U3dWT7uxy0vi1jXTzs3nt6X15XN3Os_do_dyI3bDEY1MljYCjg2afg5mSdFyo_gpj0OQHI7qM5ztDOhULCtG31eBCSmR7vmc77tLNhrBkFejU9vx1TGs9CxBafaQ"}' headers: Allow: - POST, OPTIONS Connection: - keep-alive Content-Length: - - '1313' + - '1359' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:31 GMT + - Wed, 24 Sep 2025 16:09:51 GMT Referrer-Policy: - same-origin Server: - nginx/1.25.2 Server-Timing: - - TimerPanel_utime;dur=255.36800000000426;desc="User CPU time", TimerPanel_stime;dur=55.79099999999926;desc="System - CPU time", TimerPanel_total;dur=311.1590000000035;desc="Total CPU time", TimerPanel_total_time;dur=101.57608985900879;desc="Elapsed - time", SQLPanel_sql_time;dur=6.253957748413086;desc="SQL 3 queries", CachePanel_total_time;dur=0;desc="Cache - 0 Calls" + - TimerPanel_utime;dur=213.69900000001962;desc="User CPU time", TimerPanel_stime;dur=58.102000000019416;desc="System + CPU time", TimerPanel_total;dur=271.80100000003904;desc="Total CPU time", + TimerPanel_total_time;dur=131.36438299989095;desc="Elapsed time", SQLPanel_sql_time;dur=4.430231994774658;desc="SQL + 4 queries", CachePanel_total_time;dur=0;desc="Cache 0 Calls" Set-Cookie: - - op_browser_state=c253bb5b9d23f0670eb45f87ff522c6dad5d1366f8084ced5ef3c567; + - op_browser_state=f5448717470b879d75a31d1e1e832e10c24a7586f91c49d672dea82f; Path=/ Vary: - Accept, Origin, Cookie @@ -50,6 +50,8 @@ interactions: - nosniff X-Frame-Options: - DENY + djdt-store-id: + - e980db7f81504f7a9a54ccb480bb39c6 status: code: 200 message: OK diff --git a/tests/cassettes/test_client/test_get_tokens_bad_credentials.yaml b/tests/cassettes/test_client/test_get_tokens_bad_credentials.yaml index 9361e77..1a7ea51 100644 --- a/tests/cassettes/test_client/test_get_tokens_bad_credentials.yaml +++ b/tests/cassettes/test_client/test_get_tokens_bad_credentials.yaml @@ -5,7 +5,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive Content-Length: @@ -13,7 +13,7 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://dev.squarelet.com/api/token/ response: @@ -31,18 +31,18 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:32 GMT + - Wed, 24 Sep 2025 16:09:51 GMT Referrer-Policy: - same-origin Server: - nginx/1.25.2 Server-Timing: - - TimerPanel_utime;dur=487.9809999999907;desc="User CPU time", TimerPanel_stime;dur=129.20599999999638;desc="System - CPU time", TimerPanel_total;dur=617.186999999987;desc="Total CPU time", TimerPanel_total_time;dur=193.1467056274414;desc="Elapsed - time", SQLPanel_sql_time;dur=7.756233215332031;desc="SQL 7 queries", CachePanel_total_time;dur=0;desc="Cache + - TimerPanel_utime;dur=273.8710000000424;desc="User CPU time", TimerPanel_stime;dur=97.7359999999976;desc="System + CPU time", TimerPanel_total;dur=371.60700000004;desc="Total CPU time", TimerPanel_total_time;dur=92.33506000600755;desc="Elapsed + time", SQLPanel_sql_time;dur=11.499524007376749;desc="SQL 7 queries", CachePanel_total_time;dur=0;desc="Cache 0 Calls" Set-Cookie: - - op_browser_state=c253bb5b9d23f0670eb45f87ff522c6dad5d1366f8084ced5ef3c567; + - op_browser_state=f5448717470b879d75a31d1e1e832e10c24a7586f91c49d672dea82f; Path=/ Vary: - Accept, Origin, Cookie @@ -52,6 +52,8 @@ interactions: - nosniff X-Frame-Options: - DENY + djdt-store-id: + - f251122058f5445fbfb3e68a9007028e status: code: 401 message: Unauthorized diff --git a/tests/cassettes/test_client/test_rate_limit.yaml b/tests/cassettes/test_client/test_rate_limit.yaml index 3606874..1d7bc13 100644 --- a/tests/cassettes/test_client/test_rate_limit.yaml +++ b/tests/cassettes/test_client/test_rate_limit.yaml @@ -5,18 +5,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcyLCJqdGkiOiI1Yjc4ZGFkMGI3OTE0ZWVmYjM1ZWZhZWNjNWU2NmRkZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.PAxldB-wF4e0brniuTYlKO4bTO9J4A7-rd5Y4RDp2YRBS0wTSMpouEYK5Msb5GNPtMHs7A_0jiG5izzxOUlGFUCr-TVHnqEPuJwPB9UyEkS-Dh9aqlwEH7r4O81VBIITKgvnvvzt2OANZu5gWcq2k-oRFGMOsg4slY6QwHNZxc9AMvccc7d5HA8-9PIRHYDGJPvw0J3xS5VHAX7y5k3uSS8Y6DL6P7tWdsRNmAo0O3OmCX50XPxi5kZcmASfQVZw2UrTm_dqgesljq-sb_kbeVM6FcoupYJPzfjuGaFLx0pr2KiYLmlQvgPdCBZEtRyxmqrKjM5MWRgGp5phGCemmw + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkyLCJpYXQiOjE3NTg3MzAxOTIsImp0aSI6IjU5YmNiM2Y2NDIxODRlMjBhZTkxMDJmNzcxY2YxZjVjIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.wCg8nGWDXmp-Lq8Da1Ab2yZX0empxSlK_TX9UnvYZT1P1lLCGmZuxmJ_6iXXHM2hnZO4b020LLjLPQiGDGhmr07eKuJwavDCDUIQrHREx42suZ3vyltT5yuRpoV0HEXChtg-9SuT2Pq-v7DrVhdl-_3SOqfMUwwmgoiLM0gs28FWsdetW8quQCnSQ8oqWQQsOLzNeH6M9-Veb3RB2jIgasON9x3tsJBKARCNxJS16L4igugJotCrEhPgfPhqNo6QxPsqlrEqF7QvH3iQwg71vM5yTWMcu3HaOSuJbEb-aTJTDVr81SXEPSFd-zkVGB3UIjujkFRgw7uB2PVAdSlR7A Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/users/me/ response: body: - string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"is_staff":true,"name":"test-user","organization":10004,"organizations":[10000,10004],"admin_organizations":[10000,10004],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":""}' + string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"name":"hello + there","organization":10000,"organizations":[10001,10000],"admin_organizations":[10001,10000],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":"sanjin@muckrock.com"}' headers: Allow: - GET, PUT, PATCH, HEAD, OPTIONS @@ -25,13 +26,13 @@ interactions: Content-Language: - en Content-Length: - - '335' + - '340' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:32 GMT + - Wed, 24 Sep 2025 16:09:52 GMT Referrer-Policy: - same-origin Server: @@ -51,18 +52,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcyLCJqdGkiOiI1Yjc4ZGFkMGI3OTE0ZWVmYjM1ZWZhZWNjNWU2NmRkZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.PAxldB-wF4e0brniuTYlKO4bTO9J4A7-rd5Y4RDp2YRBS0wTSMpouEYK5Msb5GNPtMHs7A_0jiG5izzxOUlGFUCr-TVHnqEPuJwPB9UyEkS-Dh9aqlwEH7r4O81VBIITKgvnvvzt2OANZu5gWcq2k-oRFGMOsg4slY6QwHNZxc9AMvccc7d5HA8-9PIRHYDGJPvw0J3xS5VHAX7y5k3uSS8Y6DL6P7tWdsRNmAo0O3OmCX50XPxi5kZcmASfQVZw2UrTm_dqgesljq-sb_kbeVM6FcoupYJPzfjuGaFLx0pr2KiYLmlQvgPdCBZEtRyxmqrKjM5MWRgGp5phGCemmw + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkyLCJpYXQiOjE3NTg3MzAxOTIsImp0aSI6IjU5YmNiM2Y2NDIxODRlMjBhZTkxMDJmNzcxY2YxZjVjIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.wCg8nGWDXmp-Lq8Da1Ab2yZX0empxSlK_TX9UnvYZT1P1lLCGmZuxmJ_6iXXHM2hnZO4b020LLjLPQiGDGhmr07eKuJwavDCDUIQrHREx42suZ3vyltT5yuRpoV0HEXChtg-9SuT2Pq-v7DrVhdl-_3SOqfMUwwmgoiLM0gs28FWsdetW8quQCnSQ8oqWQQsOLzNeH6M9-Veb3RB2jIgasON9x3tsJBKARCNxJS16L4igugJotCrEhPgfPhqNo6QxPsqlrEqF7QvH3iQwg71vM5yTWMcu3HaOSuJbEb-aTJTDVr81SXEPSFd-zkVGB3UIjujkFRgw7uB2PVAdSlR7A Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/users/me/ response: body: - string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"is_staff":true,"name":"test-user","organization":10004,"organizations":[10000,10004],"admin_organizations":[10000,10004],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":""}' + string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"name":"hello + there","organization":10000,"organizations":[10001,10000],"admin_organizations":[10001,10000],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":"sanjin@muckrock.com"}' headers: Allow: - GET, PUT, PATCH, HEAD, OPTIONS @@ -71,13 +73,13 @@ interactions: Content-Language: - en Content-Length: - - '335' + - '340' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:32 GMT + - Wed, 24 Sep 2025 16:09:52 GMT Referrer-Policy: - same-origin Server: @@ -97,18 +99,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcyLCJqdGkiOiI1Yjc4ZGFkMGI3OTE0ZWVmYjM1ZWZhZWNjNWU2NmRkZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.PAxldB-wF4e0brniuTYlKO4bTO9J4A7-rd5Y4RDp2YRBS0wTSMpouEYK5Msb5GNPtMHs7A_0jiG5izzxOUlGFUCr-TVHnqEPuJwPB9UyEkS-Dh9aqlwEH7r4O81VBIITKgvnvvzt2OANZu5gWcq2k-oRFGMOsg4slY6QwHNZxc9AMvccc7d5HA8-9PIRHYDGJPvw0J3xS5VHAX7y5k3uSS8Y6DL6P7tWdsRNmAo0O3OmCX50XPxi5kZcmASfQVZw2UrTm_dqgesljq-sb_kbeVM6FcoupYJPzfjuGaFLx0pr2KiYLmlQvgPdCBZEtRyxmqrKjM5MWRgGp5phGCemmw + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkyLCJpYXQiOjE3NTg3MzAxOTIsImp0aSI6IjU5YmNiM2Y2NDIxODRlMjBhZTkxMDJmNzcxY2YxZjVjIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.wCg8nGWDXmp-Lq8Da1Ab2yZX0empxSlK_TX9UnvYZT1P1lLCGmZuxmJ_6iXXHM2hnZO4b020LLjLPQiGDGhmr07eKuJwavDCDUIQrHREx42suZ3vyltT5yuRpoV0HEXChtg-9SuT2Pq-v7DrVhdl-_3SOqfMUwwmgoiLM0gs28FWsdetW8quQCnSQ8oqWQQsOLzNeH6M9-Veb3RB2jIgasON9x3tsJBKARCNxJS16L4igugJotCrEhPgfPhqNo6QxPsqlrEqF7QvH3iQwg71vM5yTWMcu3HaOSuJbEb-aTJTDVr81SXEPSFd-zkVGB3UIjujkFRgw7uB2PVAdSlR7A Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/users/me/ response: body: - string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"is_staff":true,"name":"test-user","organization":10004,"organizations":[10000,10004],"admin_organizations":[10000,10004],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":""}' + string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"name":"hello + there","organization":10000,"organizations":[10001,10000],"admin_organizations":[10001,10000],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":"sanjin@muckrock.com"}' headers: Allow: - GET, PUT, PATCH, HEAD, OPTIONS @@ -117,13 +120,13 @@ interactions: Content-Language: - en Content-Length: - - '335' + - '340' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:32 GMT + - Wed, 24 Sep 2025 16:09:52 GMT Referrer-Policy: - same-origin Server: @@ -143,18 +146,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcyLCJqdGkiOiI1Yjc4ZGFkMGI3OTE0ZWVmYjM1ZWZhZWNjNWU2NmRkZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.PAxldB-wF4e0brniuTYlKO4bTO9J4A7-rd5Y4RDp2YRBS0wTSMpouEYK5Msb5GNPtMHs7A_0jiG5izzxOUlGFUCr-TVHnqEPuJwPB9UyEkS-Dh9aqlwEH7r4O81VBIITKgvnvvzt2OANZu5gWcq2k-oRFGMOsg4slY6QwHNZxc9AMvccc7d5HA8-9PIRHYDGJPvw0J3xS5VHAX7y5k3uSS8Y6DL6P7tWdsRNmAo0O3OmCX50XPxi5kZcmASfQVZw2UrTm_dqgesljq-sb_kbeVM6FcoupYJPzfjuGaFLx0pr2KiYLmlQvgPdCBZEtRyxmqrKjM5MWRgGp5phGCemmw + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkyLCJpYXQiOjE3NTg3MzAxOTIsImp0aSI6IjU5YmNiM2Y2NDIxODRlMjBhZTkxMDJmNzcxY2YxZjVjIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.wCg8nGWDXmp-Lq8Da1Ab2yZX0empxSlK_TX9UnvYZT1P1lLCGmZuxmJ_6iXXHM2hnZO4b020LLjLPQiGDGhmr07eKuJwavDCDUIQrHREx42suZ3vyltT5yuRpoV0HEXChtg-9SuT2Pq-v7DrVhdl-_3SOqfMUwwmgoiLM0gs28FWsdetW8quQCnSQ8oqWQQsOLzNeH6M9-Veb3RB2jIgasON9x3tsJBKARCNxJS16L4igugJotCrEhPgfPhqNo6QxPsqlrEqF7QvH3iQwg71vM5yTWMcu3HaOSuJbEb-aTJTDVr81SXEPSFd-zkVGB3UIjujkFRgw7uB2PVAdSlR7A Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/users/me/ response: body: - string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"is_staff":true,"name":"test-user","organization":10004,"organizations":[10000,10004],"admin_organizations":[10000,10004],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":""}' + string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"name":"hello + there","organization":10000,"organizations":[10001,10000],"admin_organizations":[10001,10000],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":"sanjin@muckrock.com"}' headers: Allow: - GET, PUT, PATCH, HEAD, OPTIONS @@ -163,13 +167,13 @@ interactions: Content-Language: - en Content-Length: - - '335' + - '340' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:32 GMT + - Wed, 24 Sep 2025 16:09:52 GMT Referrer-Policy: - same-origin Server: @@ -189,18 +193,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcyLCJqdGkiOiI1Yjc4ZGFkMGI3OTE0ZWVmYjM1ZWZhZWNjNWU2NmRkZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.PAxldB-wF4e0brniuTYlKO4bTO9J4A7-rd5Y4RDp2YRBS0wTSMpouEYK5Msb5GNPtMHs7A_0jiG5izzxOUlGFUCr-TVHnqEPuJwPB9UyEkS-Dh9aqlwEH7r4O81VBIITKgvnvvzt2OANZu5gWcq2k-oRFGMOsg4slY6QwHNZxc9AMvccc7d5HA8-9PIRHYDGJPvw0J3xS5VHAX7y5k3uSS8Y6DL6P7tWdsRNmAo0O3OmCX50XPxi5kZcmASfQVZw2UrTm_dqgesljq-sb_kbeVM6FcoupYJPzfjuGaFLx0pr2KiYLmlQvgPdCBZEtRyxmqrKjM5MWRgGp5phGCemmw + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkyLCJpYXQiOjE3NTg3MzAxOTIsImp0aSI6IjU5YmNiM2Y2NDIxODRlMjBhZTkxMDJmNzcxY2YxZjVjIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.wCg8nGWDXmp-Lq8Da1Ab2yZX0empxSlK_TX9UnvYZT1P1lLCGmZuxmJ_6iXXHM2hnZO4b020LLjLPQiGDGhmr07eKuJwavDCDUIQrHREx42suZ3vyltT5yuRpoV0HEXChtg-9SuT2Pq-v7DrVhdl-_3SOqfMUwwmgoiLM0gs28FWsdetW8quQCnSQ8oqWQQsOLzNeH6M9-Veb3RB2jIgasON9x3tsJBKARCNxJS16L4igugJotCrEhPgfPhqNo6QxPsqlrEqF7QvH3iQwg71vM5yTWMcu3HaOSuJbEb-aTJTDVr81SXEPSFd-zkVGB3UIjujkFRgw7uB2PVAdSlR7A Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/users/me/ response: body: - string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"is_staff":true,"name":"test-user","organization":10004,"organizations":[10000,10004],"admin_organizations":[10000,10004],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":""}' + string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"name":"hello + there","organization":10000,"organizations":[10001,10000],"admin_organizations":[10001,10000],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":"sanjin@muckrock.com"}' headers: Allow: - GET, PUT, PATCH, HEAD, OPTIONS @@ -209,13 +214,13 @@ interactions: Content-Language: - en Content-Length: - - '335' + - '340' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:32 GMT + - Wed, 24 Sep 2025 16:09:52 GMT Referrer-Policy: - same-origin Server: @@ -235,18 +240,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcyLCJqdGkiOiI1Yjc4ZGFkMGI3OTE0ZWVmYjM1ZWZhZWNjNWU2NmRkZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.PAxldB-wF4e0brniuTYlKO4bTO9J4A7-rd5Y4RDp2YRBS0wTSMpouEYK5Msb5GNPtMHs7A_0jiG5izzxOUlGFUCr-TVHnqEPuJwPB9UyEkS-Dh9aqlwEH7r4O81VBIITKgvnvvzt2OANZu5gWcq2k-oRFGMOsg4slY6QwHNZxc9AMvccc7d5HA8-9PIRHYDGJPvw0J3xS5VHAX7y5k3uSS8Y6DL6P7tWdsRNmAo0O3OmCX50XPxi5kZcmASfQVZw2UrTm_dqgesljq-sb_kbeVM6FcoupYJPzfjuGaFLx0pr2KiYLmlQvgPdCBZEtRyxmqrKjM5MWRgGp5phGCemmw + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkyLCJpYXQiOjE3NTg3MzAxOTIsImp0aSI6IjU5YmNiM2Y2NDIxODRlMjBhZTkxMDJmNzcxY2YxZjVjIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.wCg8nGWDXmp-Lq8Da1Ab2yZX0empxSlK_TX9UnvYZT1P1lLCGmZuxmJ_6iXXHM2hnZO4b020LLjLPQiGDGhmr07eKuJwavDCDUIQrHREx42suZ3vyltT5yuRpoV0HEXChtg-9SuT2Pq-v7DrVhdl-_3SOqfMUwwmgoiLM0gs28FWsdetW8quQCnSQ8oqWQQsOLzNeH6M9-Veb3RB2jIgasON9x3tsJBKARCNxJS16L4igugJotCrEhPgfPhqNo6QxPsqlrEqF7QvH3iQwg71vM5yTWMcu3HaOSuJbEb-aTJTDVr81SXEPSFd-zkVGB3UIjujkFRgw7uB2PVAdSlR7A Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/users/me/ response: body: - string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"is_staff":true,"name":"test-user","organization":10004,"organizations":[10000,10004],"admin_organizations":[10000,10004],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":""}' + string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"name":"hello + there","organization":10000,"organizations":[10001,10000],"admin_organizations":[10001,10000],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":"sanjin@muckrock.com"}' headers: Allow: - GET, PUT, PATCH, HEAD, OPTIONS @@ -255,13 +261,13 @@ interactions: Content-Language: - en Content-Length: - - '335' + - '340' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:32 GMT + - Wed, 24 Sep 2025 16:09:52 GMT Referrer-Policy: - same-origin Server: @@ -281,18 +287,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcyLCJqdGkiOiI1Yjc4ZGFkMGI3OTE0ZWVmYjM1ZWZhZWNjNWU2NmRkZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.PAxldB-wF4e0brniuTYlKO4bTO9J4A7-rd5Y4RDp2YRBS0wTSMpouEYK5Msb5GNPtMHs7A_0jiG5izzxOUlGFUCr-TVHnqEPuJwPB9UyEkS-Dh9aqlwEH7r4O81VBIITKgvnvvzt2OANZu5gWcq2k-oRFGMOsg4slY6QwHNZxc9AMvccc7d5HA8-9PIRHYDGJPvw0J3xS5VHAX7y5k3uSS8Y6DL6P7tWdsRNmAo0O3OmCX50XPxi5kZcmASfQVZw2UrTm_dqgesljq-sb_kbeVM6FcoupYJPzfjuGaFLx0pr2KiYLmlQvgPdCBZEtRyxmqrKjM5MWRgGp5phGCemmw + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkyLCJpYXQiOjE3NTg3MzAxOTIsImp0aSI6IjU5YmNiM2Y2NDIxODRlMjBhZTkxMDJmNzcxY2YxZjVjIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.wCg8nGWDXmp-Lq8Da1Ab2yZX0empxSlK_TX9UnvYZT1P1lLCGmZuxmJ_6iXXHM2hnZO4b020LLjLPQiGDGhmr07eKuJwavDCDUIQrHREx42suZ3vyltT5yuRpoV0HEXChtg-9SuT2Pq-v7DrVhdl-_3SOqfMUwwmgoiLM0gs28FWsdetW8quQCnSQ8oqWQQsOLzNeH6M9-Veb3RB2jIgasON9x3tsJBKARCNxJS16L4igugJotCrEhPgfPhqNo6QxPsqlrEqF7QvH3iQwg71vM5yTWMcu3HaOSuJbEb-aTJTDVr81SXEPSFd-zkVGB3UIjujkFRgw7uB2PVAdSlR7A Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/users/me/ response: body: - string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"is_staff":true,"name":"test-user","organization":10004,"organizations":[10000,10004],"admin_organizations":[10000,10004],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":""}' + string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"name":"hello + there","organization":10000,"organizations":[10001,10000],"admin_organizations":[10001,10000],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":"sanjin@muckrock.com"}' headers: Allow: - GET, PUT, PATCH, HEAD, OPTIONS @@ -301,13 +308,13 @@ interactions: Content-Language: - en Content-Length: - - '335' + - '340' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:33 GMT + - Wed, 24 Sep 2025 16:09:52 GMT Referrer-Policy: - same-origin Server: @@ -327,18 +334,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcyLCJqdGkiOiI1Yjc4ZGFkMGI3OTE0ZWVmYjM1ZWZhZWNjNWU2NmRkZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.PAxldB-wF4e0brniuTYlKO4bTO9J4A7-rd5Y4RDp2YRBS0wTSMpouEYK5Msb5GNPtMHs7A_0jiG5izzxOUlGFUCr-TVHnqEPuJwPB9UyEkS-Dh9aqlwEH7r4O81VBIITKgvnvvzt2OANZu5gWcq2k-oRFGMOsg4slY6QwHNZxc9AMvccc7d5HA8-9PIRHYDGJPvw0J3xS5VHAX7y5k3uSS8Y6DL6P7tWdsRNmAo0O3OmCX50XPxi5kZcmASfQVZw2UrTm_dqgesljq-sb_kbeVM6FcoupYJPzfjuGaFLx0pr2KiYLmlQvgPdCBZEtRyxmqrKjM5MWRgGp5phGCemmw + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkyLCJpYXQiOjE3NTg3MzAxOTIsImp0aSI6IjU5YmNiM2Y2NDIxODRlMjBhZTkxMDJmNzcxY2YxZjVjIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.wCg8nGWDXmp-Lq8Da1Ab2yZX0empxSlK_TX9UnvYZT1P1lLCGmZuxmJ_6iXXHM2hnZO4b020LLjLPQiGDGhmr07eKuJwavDCDUIQrHREx42suZ3vyltT5yuRpoV0HEXChtg-9SuT2Pq-v7DrVhdl-_3SOqfMUwwmgoiLM0gs28FWsdetW8quQCnSQ8oqWQQsOLzNeH6M9-Veb3RB2jIgasON9x3tsJBKARCNxJS16L4igugJotCrEhPgfPhqNo6QxPsqlrEqF7QvH3iQwg71vM5yTWMcu3HaOSuJbEb-aTJTDVr81SXEPSFd-zkVGB3UIjujkFRgw7uB2PVAdSlR7A Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/users/me/ response: body: - string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"is_staff":true,"name":"test-user","organization":10004,"organizations":[10000,10004],"admin_organizations":[10000,10004],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":""}' + string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"name":"hello + there","organization":10000,"organizations":[10001,10000],"admin_organizations":[10001,10000],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":"sanjin@muckrock.com"}' headers: Allow: - GET, PUT, PATCH, HEAD, OPTIONS @@ -347,13 +355,13 @@ interactions: Content-Language: - en Content-Length: - - '335' + - '340' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:33 GMT + - Wed, 24 Sep 2025 16:09:52 GMT Referrer-Policy: - same-origin Server: @@ -373,18 +381,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcyLCJqdGkiOiI1Yjc4ZGFkMGI3OTE0ZWVmYjM1ZWZhZWNjNWU2NmRkZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.PAxldB-wF4e0brniuTYlKO4bTO9J4A7-rd5Y4RDp2YRBS0wTSMpouEYK5Msb5GNPtMHs7A_0jiG5izzxOUlGFUCr-TVHnqEPuJwPB9UyEkS-Dh9aqlwEH7r4O81VBIITKgvnvvzt2OANZu5gWcq2k-oRFGMOsg4slY6QwHNZxc9AMvccc7d5HA8-9PIRHYDGJPvw0J3xS5VHAX7y5k3uSS8Y6DL6P7tWdsRNmAo0O3OmCX50XPxi5kZcmASfQVZw2UrTm_dqgesljq-sb_kbeVM6FcoupYJPzfjuGaFLx0pr2KiYLmlQvgPdCBZEtRyxmqrKjM5MWRgGp5phGCemmw + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkyLCJpYXQiOjE3NTg3MzAxOTIsImp0aSI6IjU5YmNiM2Y2NDIxODRlMjBhZTkxMDJmNzcxY2YxZjVjIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.wCg8nGWDXmp-Lq8Da1Ab2yZX0empxSlK_TX9UnvYZT1P1lLCGmZuxmJ_6iXXHM2hnZO4b020LLjLPQiGDGhmr07eKuJwavDCDUIQrHREx42suZ3vyltT5yuRpoV0HEXChtg-9SuT2Pq-v7DrVhdl-_3SOqfMUwwmgoiLM0gs28FWsdetW8quQCnSQ8oqWQQsOLzNeH6M9-Veb3RB2jIgasON9x3tsJBKARCNxJS16L4igugJotCrEhPgfPhqNo6QxPsqlrEqF7QvH3iQwg71vM5yTWMcu3HaOSuJbEb-aTJTDVr81SXEPSFd-zkVGB3UIjujkFRgw7uB2PVAdSlR7A Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/users/me/ response: body: - string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"is_staff":true,"name":"test-user","organization":10004,"organizations":[10000,10004],"admin_organizations":[10000,10004],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":""}' + string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"name":"hello + there","organization":10000,"organizations":[10001,10000],"admin_organizations":[10001,10000],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":"sanjin@muckrock.com"}' headers: Allow: - GET, PUT, PATCH, HEAD, OPTIONS @@ -393,13 +402,13 @@ interactions: Content-Language: - en Content-Length: - - '335' + - '340' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:33 GMT + - Wed, 24 Sep 2025 16:09:52 GMT Referrer-Policy: - same-origin Server: @@ -419,18 +428,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcyLCJqdGkiOiI1Yjc4ZGFkMGI3OTE0ZWVmYjM1ZWZhZWNjNWU2NmRkZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.PAxldB-wF4e0brniuTYlKO4bTO9J4A7-rd5Y4RDp2YRBS0wTSMpouEYK5Msb5GNPtMHs7A_0jiG5izzxOUlGFUCr-TVHnqEPuJwPB9UyEkS-Dh9aqlwEH7r4O81VBIITKgvnvvzt2OANZu5gWcq2k-oRFGMOsg4slY6QwHNZxc9AMvccc7d5HA8-9PIRHYDGJPvw0J3xS5VHAX7y5k3uSS8Y6DL6P7tWdsRNmAo0O3OmCX50XPxi5kZcmASfQVZw2UrTm_dqgesljq-sb_kbeVM6FcoupYJPzfjuGaFLx0pr2KiYLmlQvgPdCBZEtRyxmqrKjM5MWRgGp5phGCemmw + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkyLCJpYXQiOjE3NTg3MzAxOTIsImp0aSI6IjU5YmNiM2Y2NDIxODRlMjBhZTkxMDJmNzcxY2YxZjVjIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.wCg8nGWDXmp-Lq8Da1Ab2yZX0empxSlK_TX9UnvYZT1P1lLCGmZuxmJ_6iXXHM2hnZO4b020LLjLPQiGDGhmr07eKuJwavDCDUIQrHREx42suZ3vyltT5yuRpoV0HEXChtg-9SuT2Pq-v7DrVhdl-_3SOqfMUwwmgoiLM0gs28FWsdetW8quQCnSQ8oqWQQsOLzNeH6M9-Veb3RB2jIgasON9x3tsJBKARCNxJS16L4igugJotCrEhPgfPhqNo6QxPsqlrEqF7QvH3iQwg71vM5yTWMcu3HaOSuJbEb-aTJTDVr81SXEPSFd-zkVGB3UIjujkFRgw7uB2PVAdSlR7A Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/users/me/ response: body: - string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"is_staff":true,"name":"test-user","organization":10004,"organizations":[10000,10004],"admin_organizations":[10000,10004],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":""}' + string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","feature_level":0,"name":"hello + there","organization":10000,"organizations":[10001,10000],"admin_organizations":[10001,10000],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true,"email":"sanjin@muckrock.com"}' headers: Allow: - GET, PUT, PATCH, HEAD, OPTIONS @@ -439,13 +449,13 @@ interactions: Content-Language: - en Content-Length: - - '335' + - '340' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:33 GMT + - Wed, 24 Sep 2025 16:09:53 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_client/test_refresh_tokens.yaml b/tests/cassettes/test_client/test_refresh_tokens.yaml index 40e8632..f67a422 100644 --- a/tests/cassettes/test_client/test_refresh_tokens.yaml +++ b/tests/cassettes/test_client/test_refresh_tokens.yaml @@ -1,48 +1,48 @@ interactions: - request: - body: '{"refresh": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTczNTkzNjE3MSwianRpIjoiNGNkODJiZWMyZWIyNDI4MjlkN2ExZWZiYjExNzMzYTciLCJ1c2VyX2lkIjoiZjYwMjllOGEtZDhhMi00MTg4LThhMjEtY2QwNzNhMDJlZTVjIiwiYXVkIjpbInNxdWFyZWxldCIsIm11Y2tyb2NrIiwiZG9jdW1lbnRjbG91ZCJdLCJpc3MiOlsic3F1YXJlbGV0Il19.MG4HgbD0MIL4n495SIJe530zFcLX7ndmuFxeuPnBJVK5HBR4Bji3NUdB7SWeBJrRd6l2SWcUPdJ7EKRBHiB03jzjRjWSN6YRkhk6TTyEulBY7E-leyMFmR8NZFA8P8PW7EDzOdWiE63nNMBJ9gCT4ufaHKFQdCJOtYvpAdkVfjH4NWTCSjyHydVXEVCxuM3iuiAcwMfasqLQTi7ZV_8L0j1h2MBH1vppFtdaNg4M3cLeRacBXd2Ot3Ayzr9CyYcP9OZEfh1jUr2JRbQe-ePNcMtZj5hQVXwfScbhGkTXBVUr5_Fo8A4KOdhAEw30VjRkXkVZGzOav_IMh02J8YPbIQ"}' + body: '{"refresh": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTc1ODgxNjU5MSwiaWF0IjoxNzU4NzMwMTkxLCJqdGkiOiJjMzM5NDM3NGU1NWQ0OGJhYmZkM2Q5ODA4MTcyOWIyMyIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.ggMI0ZbqQjezXYRxxQh-KJR_fLKczG0jtakHIgC0vIXG9WA95_I48wmYIEOlI0OLDlaXzTaMF9tLLIjp-ebEX90USq5YG8g3LjhfqHh6xwPEnYjL4AE0I-nXs0PDs6wOusE4CJK3-tG3DIFxpoQxTnDB3isUQXj5utVHfHqSCq0KoIWEJgGNEY9LLAx473O-Zbu3u0Q_TwR0qvFtzqwLrUqOA_gPW5zkZaacQi2Meaww-ZsqeRsxBu0Lw58sXormsiF7bf3oTzFHW98EcmnvoYWgkD5PMt29Q-P9FAtG7p_nsRk-e-vAqmtFdTAX8FSAiUbtld20XjflmekSDM0DwQ"}' headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive Content-Length: - - '659' + - '682' Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://dev.squarelet.com/api/refresh/ response: body: - string: '{"access":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcyLCJqdGkiOiI3NTJiZmYxZjA0Zjc0NTcxYmMxYzdmMDUxMTYwMGJmOSIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.Lwv4fBxxxWw0AL5Mvwu1wH6V8LP9oG-cXgFQ4u0d3RXj8HD8rHYjw6f84TJN5pfQlpwlQ-8MP0oOTXLgmywx2vb11kAmomIgs6Gjcbwcb3tkan5gIcznvTnI03Thg3802oyuLjD-Su7fd5_ZZVo0-rHRczas4JJ5vwz7hhNWu2gx6Fu9mXe--zAUrTL9SKHHuN0RaXT8PLB2i4ysm0E6wcEPjFrDcdyOPJQAZ4YuDm1cuuzO1DhOAado_BlQ16KsSjpzyurR5Kh3SHZkizFQntwV-uK7d1G7f-kBEyiPbtD-y1_Z3wJg01yObr16ALLZf2sB8y4vew_MkYocUvkjsQ","refresh":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTczNTkzNjE3MiwianRpIjoiMGM5NWIxYWU1NmFlNDNkMWEyNjkyOWVkZWExZjE5YWEiLCJ1c2VyX2lkIjoiZjYwMjllOGEtZDhhMi00MTg4LThhMjEtY2QwNzNhMDJlZTVjIiwiYXVkIjpbInNxdWFyZWxldCIsIm11Y2tyb2NrIiwiZG9jdW1lbnRjbG91ZCJdLCJpc3MiOlsic3F1YXJlbGV0Il19.sY3JadSkQhxGWuOZ3P-Xszq28OD4esSr9-erkicSTWkA3qxNF8D73A4GQYBRUpWCwUXo0zvjOLRPGS8Zcij5gsfW2G5ffXShhAvMdMMwKe9qlcrwJhs1vSyhn-3v5ZOY255dM05rD_hhWqfCiVaqcHb0UL1GQH7u0kAQatCa-qEXInIf1xdHENFtdwC90cb26cU4_H4Mcmj4oGD6JIpSbosijF_Fk3h5P-h0Cn5Cn94p7Pq-LeLR6hZjQduTG06NMG0ClkyvkB-fPZsWMLwdGTxLYlgh91Z_9biPip5-vNklroSLFsGimQteQmmtQ4eawI4QHap8xj1exrFE5uz5VA"}' + string: '{"access":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6IjcyOTJhMWNhYWY4NTQwM2E4YTRjMDVjYTE1ZDljNmU1IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.hlXq8g9UWgMLRt5g6cEOb_BYtP-woF7kkaVLRnBF9fg8R8lvBHLoWGeR33F81jutZYHeYcU_9scB7Z3K7rQ1X5KHpxRsRWaXY6j0IsaTGsS_kvcoFqGF3QJf0nCVDjKM3U7JaaUUDMAyLegPhF3y2vUZNzuh2ZFWss4peMhx_v8hvF-oEMU1PB9Ywpl7JOsH-aegOnehlEIkE6b-GbttsUQZiMj8ZbsztMLZpCTdMy5f6FAzZvaKbuhWxM12ESSiiU6dK310W-blBgr3rw2P2Bri2IIw0IPKJ4PDexhK3VPEXAQXqsSHpsfxY9FaEBM50kVlsJwcBcwBNyik_lfRmg","refresh":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTc1ODgxNjU5MSwiaWF0IjoxNzU4NzMwMTkxLCJqdGkiOiI0MjFiZjM2NzAyZDE0YTAzODNlZWQ4NDQ4NTEzNWQ1NyIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.XhRKpGzq3GBBLqLC6UsuiHqcxxgb7urP8mg7hNlb3OKmBT6KgDN1GoLqzYhYcwAggqyf_NsFngL8aaDGKl_7NiII6PiCTB_sS_qp83TkR41-VPcx-RFZxJ25AYK4ju0cnaoZQrk6j1HilHS7FLC2-g9yeprF4Xw-Jh480Rh5bkNjXQAlqTNDVj2XnnKptfOJxEvK-uOrWQCRMqHyfb_RzAVj1JbWKgihCzSj_Wos5HkUufB-yQWm4z6UjXnEk8E1qhbZ8v2zixrUvRGsc5wUTyJTJkHN65xkHID5U1wy8JaWZQ4a2M3AP6QmQLSTZPc935FqlcLH9Z4OtCxkCTFLFw"}' headers: Allow: - POST, OPTIONS Connection: - keep-alive Content-Length: - - '1313' + - '1359' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:32 GMT + - Wed, 24 Sep 2025 16:09:52 GMT Referrer-Policy: - same-origin Server: - nginx/1.25.2 Server-Timing: - - TimerPanel_utime;dur=36.98900000000549;desc="User CPU time", TimerPanel_stime;dur=1.0019999999997253;desc="System - CPU time", TimerPanel_total;dur=37.991000000005215;desc="Total CPU time", - TimerPanel_total_time;dur=42.78707504272461;desc="Elapsed time", SQLPanel_sql_time;dur=0.46563148498535156;desc="SQL - 2 queries", CachePanel_total_time;dur=0;desc="Cache 0 Calls" + - TimerPanel_utime;dur=89.72099999999728;desc="User CPU time", TimerPanel_stime;dur=1.9790000000057262;desc="System + CPU time", TimerPanel_total;dur=91.700000000003;desc="Total CPU time", TimerPanel_total_time;dur=105.28306599735515;desc="Elapsed + time", SQLPanel_sql_time;dur=2.6969259924953803;desc="SQL 9 queries", CachePanel_total_time;dur=0;desc="Cache + 0 Calls" Set-Cookie: - - op_browser_state=c253bb5b9d23f0670eb45f87ff522c6dad5d1366f8084ced5ef3c567; + - op_browser_state=f5448717470b879d75a31d1e1e832e10c24a7586f91c49d672dea82f; Path=/ Vary: - Accept, Origin, Cookie @@ -50,6 +50,8 @@ interactions: - nosniff X-Frame-Options: - DENY + djdt-store-id: + - ebb14b2ad52b419ca9dec9f662ab2b58 status: code: 200 message: OK diff --git a/tests/cassettes/test_client/test_set_tokens_credentials.yaml b/tests/cassettes/test_client/test_set_tokens_credentials.yaml index f3ad0d4..2bdbee4 100644 --- a/tests/cassettes/test_client/test_set_tokens_credentials.yaml +++ b/tests/cassettes/test_client/test_set_tokens_credentials.yaml @@ -5,7 +5,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive Content-Length: @@ -13,36 +13,36 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://dev.squarelet.com/api/token/ response: body: - string: '{"refresh":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTczNTkzNjE3MSwianRpIjoiNzMyZTZlODBkMzM5NDE4NmE1MGU5MGM1MDg5ZDc5MjYiLCJ1c2VyX2lkIjoiZjYwMjllOGEtZDhhMi00MTg4LThhMjEtY2QwNzNhMDJlZTVjIiwiYXVkIjpbInNxdWFyZWxldCIsIm11Y2tyb2NrIiwiZG9jdW1lbnRjbG91ZCJdLCJpc3MiOlsic3F1YXJlbGV0Il19.rrPsT5d6OtaSgddW51U_G8N_P4QrI382KGJwR_Ahh1jMaBHryI4dswbAO8kJMnwriYxtpaoaj4wRpfW-KH2zBu_QTcdiZJKhfG8IkxODu7Nds-g9yrvljH9JVLYLJuNyLReBKwzYq4sTityDtEw3opyq864gfCa6DusEGgarZvZYjYoovB140eK_3Yo4QhIAaZEAER3md9dGHTKf-2zDHWEfX1s8Mpejbuu6bfqbj54WdLjyLQ9hadgVPsT_YMX8xf5PXspmix7eCnCeLb9-sdgmW6KxgB5gWx3x7VJ-8h5hBuTPHPrqY82j0noMzDsgUIUit9bg8r54V-u7FFZqzg","access":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIwMmJiM2NkNDgwNTM0YjAxOWM2NGJjMjU1MTU3MmI0OSIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.nqsaH4I4mei6ilN3vcXnZDyfKX9Ug5ynNu27HWWWoCI5Ax49uyrneN205IMzp7hUqgMRmgccV7X74hpxwv-v8LgM1IBrf7EJlZp7IGGqwf-gZkhOBsgvPhTLv-xe15iecc6ybS5Fo8W1e0_ZWOXyHGDW0V0ZlOtGxzuTe8NXorqByVP5LTKhZZtcrj1gw2raip8fndvdtIY4gmEOVO_yArduJ-Nsb3f8h_9puQ7j3jWXFsvoSHi3nVA7vC1S5WTcwoUUA8_iI1ts0H5uKkkAjYxgYvzpg5rKsf7mc9XhtYwLifEHqYm-wE1ZEDt-OhV3TFjb7FWLYXrm1awFGxFv3Q"}' + string: '{"refresh":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTc1ODgxNjU5MSwiaWF0IjoxNzU4NzMwMTkxLCJqdGkiOiJkYjQwMGYzNTEyNjI0MWZkODg1NTMwM2QzZDg0OTQ4ZCIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.CJm81tVrBainnSPcX0Bst9znIyJ92nBBg0igvJlFaJhdlfRgfucIqCSp-YoF5mABnfaYSp3_dN0M_qJX8ZxbSEjcTlAkhTtucZCi92Z6EXgiaYKx9AWSk6Nhbx_EL3ZTDvRadfZESMev48eE7Vr5PmtwmK0YNE8q_252U-3KJ-C45mv8C0yLNWhLMX7XRjITPBdQbvwxVWX5FyRmcCDJsOotb8GfmdRpARNliV5QcPON4d6f-rmPEZpnGuwvP4TPrYGnuzTwr1hIXqwCiAKs9zUqfB4YpjZAgr6a61_Gf4YLDOvw04ABhoG1AOwl_huK4H3abeZYDdNA_G3vgVwPJg","access":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6ImM5YTAzMjMzMjlmNDQ0OTk4YWI0YTYwZmYxODEwZDg3IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.p_69vavQbQNX9H1dLwVqjm2MOoORqgVml0hhs_mBFAHK4kAdBLETLK6E-6ZlAYJKF6Aw10b0M7Cg3fn_XiND5Ik34jeuRdCL93tXxdj6BilQXzFU2j3R0jhptarI_U78nmHWz3mRh5UhCA4IL4JcakNmsIfC7vzIvPhP8PF5Pkr61ki7WqPUk7klyaiKSSBlciV_XkrG6yy0YgalPSvzH-UCo3DS9de6FxvWc96pgtwpaxOfJfPyoY238T2HWRdx3whfGmiL8grVZ-jMSyNNNzr13f9aaPLrdTVZttnKT_cHIt8rlgcVqtn8v5ooeamQ5mRdvLRTW0FDeC7eOKVyoQ"}' headers: Allow: - POST, OPTIONS Connection: - keep-alive Content-Length: - - '1313' + - '1359' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:31 GMT + - Wed, 24 Sep 2025 16:09:51 GMT Referrer-Policy: - same-origin Server: - nginx/1.25.2 Server-Timing: - - TimerPanel_utime;dur=282.62799999998833;desc="User CPU time", TimerPanel_stime;dur=71.37000000000171;desc="System - CPU time", TimerPanel_total;dur=353.99799999999004;desc="Total CPU time", - TimerPanel_total_time;dur=114.5482063293457;desc="Elapsed time", SQLPanel_sql_time;dur=7.197380065917969;desc="SQL - 3 queries", CachePanel_total_time;dur=0;desc="Cache 0 Calls" + - TimerPanel_utime;dur=227.09699999995792;desc="User CPU time", TimerPanel_stime;dur=43.435000000016544;desc="System + CPU time", TimerPanel_total;dur=270.53199999997446;desc="Total CPU time", + TimerPanel_total_time;dur=125.46392899821512;desc="Elapsed time", SQLPanel_sql_time;dur=4.748540995933581;desc="SQL + 4 queries", CachePanel_total_time;dur=0;desc="Cache 0 Calls" Set-Cookie: - - op_browser_state=c253bb5b9d23f0670eb45f87ff522c6dad5d1366f8084ced5ef3c567; + - op_browser_state=f5448717470b879d75a31d1e1e832e10c24a7586f91c49d672dea82f; Path=/ Vary: - Accept, Origin, Cookie @@ -50,6 +50,8 @@ interactions: - nosniff X-Frame-Options: - DENY + djdt-store-id: + - 37fed2f6e9f74259a15d00495bcf2fba status: code: 200 message: OK diff --git a/tests/cassettes/test_client/test_set_tokens_refresh.yaml b/tests/cassettes/test_client/test_set_tokens_refresh.yaml index 2e436fc..5c08e71 100644 --- a/tests/cassettes/test_client/test_set_tokens_refresh.yaml +++ b/tests/cassettes/test_client/test_set_tokens_refresh.yaml @@ -5,7 +5,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive Content-Length: @@ -13,36 +13,36 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://dev.squarelet.com/api/token/ response: body: - string: '{"refresh":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTczNTkzNjE3MSwianRpIjoiY2RkYzdjMWE1ZTgwNDM3YTk0OTAwNDUyOGJhZjExMWMiLCJ1c2VyX2lkIjoiZjYwMjllOGEtZDhhMi00MTg4LThhMjEtY2QwNzNhMDJlZTVjIiwiYXVkIjpbInNxdWFyZWxldCIsIm11Y2tyb2NrIiwiZG9jdW1lbnRjbG91ZCJdLCJpc3MiOlsic3F1YXJlbGV0Il19.XvbW9w3EjOWdZltT5889APMPz4fBkd0jBS7gO2nzIbLjQg6ygGTlUZzpRc-bSBaunYC4-lQZ_RgQLGI41sWv-0fGOAulJ18najfQrpL07dAHCNuK9Z8w7wO1rWjUmfnKMNsgPDHoEeShOVcQhydTIETIl6tx5mpqtKpfuhcaHO14BuQkKKZ8HsMq5PMQpqXD2Rpsr75s8h4oWrpH4GQRzJ8fBSudpW1mDl_EzIWa0hoibkqfDW9CRxvVlaYYLQiktAws1FHHwVsRkufMbcoa5u7jzUOMlBfop7o8_Ds0AvBMMsLGibLLbo2-DzB9HzcsvDN6leVBOHn6W3ovXFO8ow","access":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiJjMzU3MTNkZmE4YjQ0NDlkYmMxMzdkNjMyYzBlYWYwNCIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.avYRh5lWPyDzlq91He4qTShgLmN8pb94ELBHWU1u9jW4DBN4-scCOwZ0BIssLhCfNTNC-V-Jiud2ky7wy231FlC99d_lDkC_CIpIuRjqIDsNQU042r5_Xgvc-LKjkiFyrK5iwVGc13oMrOoifObQwkWrfPWyL61KYEarBt_VGE3y2_NC7kJgu6qXr3ja8dKGO-fzxma96qMGpREzOd9qmDIaO_kLdfEKONK_m-ACAziXfqXoQ7UHLG9CHHjyQ4vEF1PML3E_VZVOhpTNkDP6upXATw6FgM35CFc4Z7WCm4b03EDWeuifzMiGnAbDddH86u0U6m3cLMBlA7uCxN9cyw"}' + string: '{"refresh":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTc1ODgxNjU5MSwiaWF0IjoxNzU4NzMwMTkxLCJqdGkiOiI2MjlmYWNiNzk2MzU0ZjQ5YmQxZTgwMzlkNjVhOGYyYyIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.jDS9Eg2tiM9qXBL2sGe0mhzClEIX1BEIrwPgl4WxG4QgvlPqgVE3PtRDIefulrVbIez_gkVHLyJGO1ezX1IYLaMk3GhrgO03ocgPIvix4QU9jruUcqPVGzGJvXppbZPt6vKAhXJW9I0FUYSwtHz7RNr7RqeGDhtmHG65wnixHl4gY0A-axHvYJsCoQ9fkHztGoHQfSxhdWnkW3VHTGYcUtNbGwu0ey_9Kl0ZBTT_w8gWeukcd3E3LyZdooy5Iq3vQt6yPOyawddygC2uGK_pwjXICxGO4Bs4Ix04jp-yNzEuugFHse8YvNQ2BIgcUs__W8mvmHJUuzeACGCJhPACNQ","access":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6IjE3ZTg2OGZiZmZlYzQzNjZhY2UzNDM5ZWY5OGY3ZGJlIiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.H5Btf1AzAgaQA6sFhURvGdm850F7pyqRYccnyaW_k5sunrOET9S3JsfgreEQ3ODMhoifjCmwdjQ5kmdq5ZfDAHygEUSw1Xaae8ixH4kb9qvDsOR99ImbNKfNsU4ZMxqs01wXOitt_d7dDwF4qgiQEo1U3-2Tp76aDP3jDjZXHJWdoGqQnA11Ew8FPCk-_4CfLG23Z-M7yP0X79-TIj8nAGFmrzqiVhIzjA03NDs27Px4Der3fNGQfKJvRI2fD3cNYek0b6INyW8SkCnpcPWN8_qdEBYB_FbxEkar27FKJ_L_cN8_5Sqn7I6S0qrVaNPJuV1o7z1xM0C-2tEbU0BeXg"}' headers: Allow: - POST, OPTIONS Connection: - keep-alive Content-Length: - - '1313' + - '1359' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:31 GMT + - Wed, 24 Sep 2025 16:09:51 GMT Referrer-Policy: - same-origin Server: - nginx/1.25.2 Server-Timing: - - TimerPanel_utime;dur=240.82500000000095;desc="User CPU time", TimerPanel_stime;dur=69.51700000000471;desc="System - CPU time", TimerPanel_total;dur=310.34200000000567;desc="Total CPU time", - TimerPanel_total_time;dur=109.92121696472168;desc="Elapsed time", SQLPanel_sql_time;dur=8.237600326538086;desc="SQL - 3 queries", CachePanel_total_time;dur=0;desc="Cache 0 Calls" + - TimerPanel_utime;dur=221.0110000000327;desc="User CPU time", TimerPanel_stime;dur=56.011000000012245;desc="System + CPU time", TimerPanel_total;dur=277.02200000004495;desc="Total CPU time", + TimerPanel_total_time;dur=136.81167200411437;desc="Elapsed time", SQLPanel_sql_time;dur=8.158203003404196;desc="SQL + 4 queries", CachePanel_total_time;dur=0;desc="Cache 0 Calls" Set-Cookie: - - op_browser_state=c253bb5b9d23f0670eb45f87ff522c6dad5d1366f8084ced5ef3c567; + - op_browser_state=f5448717470b879d75a31d1e1e832e10c24a7586f91c49d672dea82f; Path=/ Vary: - Accept, Origin, Cookie @@ -50,53 +50,55 @@ interactions: - nosniff X-Frame-Options: - DENY + djdt-store-id: + - 69be8f299ce24d2e8647c93278e7a263 status: code: 200 message: OK - request: - body: '{"refresh": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTczNTkzNjE3MSwianRpIjoiY2RkYzdjMWE1ZTgwNDM3YTk0OTAwNDUyOGJhZjExMWMiLCJ1c2VyX2lkIjoiZjYwMjllOGEtZDhhMi00MTg4LThhMjEtY2QwNzNhMDJlZTVjIiwiYXVkIjpbInNxdWFyZWxldCIsIm11Y2tyb2NrIiwiZG9jdW1lbnRjbG91ZCJdLCJpc3MiOlsic3F1YXJlbGV0Il19.XvbW9w3EjOWdZltT5889APMPz4fBkd0jBS7gO2nzIbLjQg6ygGTlUZzpRc-bSBaunYC4-lQZ_RgQLGI41sWv-0fGOAulJ18najfQrpL07dAHCNuK9Z8w7wO1rWjUmfnKMNsgPDHoEeShOVcQhydTIETIl6tx5mpqtKpfuhcaHO14BuQkKKZ8HsMq5PMQpqXD2Rpsr75s8h4oWrpH4GQRzJ8fBSudpW1mDl_EzIWa0hoibkqfDW9CRxvVlaYYLQiktAws1FHHwVsRkufMbcoa5u7jzUOMlBfop7o8_Ds0AvBMMsLGibLLbo2-DzB9HzcsvDN6leVBOHn6W3ovXFO8ow"}' + body: '{"refresh": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTc1ODgxNjU5MSwiaWF0IjoxNzU4NzMwMTkxLCJqdGkiOiI2MjlmYWNiNzk2MzU0ZjQ5YmQxZTgwMzlkNjVhOGYyYyIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.jDS9Eg2tiM9qXBL2sGe0mhzClEIX1BEIrwPgl4WxG4QgvlPqgVE3PtRDIefulrVbIez_gkVHLyJGO1ezX1IYLaMk3GhrgO03ocgPIvix4QU9jruUcqPVGzGJvXppbZPt6vKAhXJW9I0FUYSwtHz7RNr7RqeGDhtmHG65wnixHl4gY0A-axHvYJsCoQ9fkHztGoHQfSxhdWnkW3VHTGYcUtNbGwu0ey_9Kl0ZBTT_w8gWeukcd3E3LyZdooy5Iq3vQt6yPOyawddygC2uGK_pwjXICxGO4Bs4Ix04jp-yNzEuugFHse8YvNQ2BIgcUs__W8mvmHJUuzeACGCJhPACNQ"}' headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive Content-Length: - - '659' + - '682' Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://dev.squarelet.com/api/refresh/ response: body: - string: '{"access":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg","refresh":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTczNTkzNjE3MSwianRpIjoiNGNkODJiZWMyZWIyNDI4MjlkN2ExZWZiYjExNzMzYTciLCJ1c2VyX2lkIjoiZjYwMjllOGEtZDhhMi00MTg4LThhMjEtY2QwNzNhMDJlZTVjIiwiYXVkIjpbInNxdWFyZWxldCIsIm11Y2tyb2NrIiwiZG9jdW1lbnRjbG91ZCJdLCJpc3MiOlsic3F1YXJlbGV0Il19.MG4HgbD0MIL4n495SIJe530zFcLX7ndmuFxeuPnBJVK5HBR4Bji3NUdB7SWeBJrRd6l2SWcUPdJ7EKRBHiB03jzjRjWSN6YRkhk6TTyEulBY7E-leyMFmR8NZFA8P8PW7EDzOdWiE63nNMBJ9gCT4ufaHKFQdCJOtYvpAdkVfjH4NWTCSjyHydVXEVCxuM3iuiAcwMfasqLQTi7ZV_8L0j1h2MBH1vppFtdaNg4M3cLeRacBXd2Ot3Ayzr9CyYcP9OZEfh1jUr2JRbQe-ePNcMtZj5hQVXwfScbhGkTXBVUr5_Fo8A4KOdhAEw30VjRkXkVZGzOav_IMh02J8YPbIQ"}' + string: '{"access":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q","refresh":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTc1ODgxNjU5MSwiaWF0IjoxNzU4NzMwMTkxLCJqdGkiOiJjMzM5NDM3NGU1NWQ0OGJhYmZkM2Q5ODA4MTcyOWIyMyIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.ggMI0ZbqQjezXYRxxQh-KJR_fLKczG0jtakHIgC0vIXG9WA95_I48wmYIEOlI0OLDlaXzTaMF9tLLIjp-ebEX90USq5YG8g3LjhfqHh6xwPEnYjL4AE0I-nXs0PDs6wOusE4CJK3-tG3DIFxpoQxTnDB3isUQXj5utVHfHqSCq0KoIWEJgGNEY9LLAx473O-Zbu3u0Q_TwR0qvFtzqwLrUqOA_gPW5zkZaacQi2Meaww-ZsqeRsxBu0Lw58sXormsiF7bf3oTzFHW98EcmnvoYWgkD5PMt29Q-P9FAtG7p_nsRk-e-vAqmtFdTAX8FSAiUbtld20XjflmekSDM0DwQ"}' headers: Allow: - POST, OPTIONS Connection: - keep-alive Content-Length: - - '1313' + - '1359' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:31 GMT + - Wed, 24 Sep 2025 16:09:51 GMT Referrer-Policy: - same-origin Server: - nginx/1.25.2 Server-Timing: - - TimerPanel_utime;dur=34.762000000000626;desc="User CPU time", TimerPanel_stime;dur=5.378999999990697;desc="System - CPU time", TimerPanel_total;dur=40.14099999999132;desc="Total CPU time", TimerPanel_total_time;dur=46.30589485168457;desc="Elapsed - time", SQLPanel_sql_time;dur=0.7610321044921875;desc="SQL 2 queries", CachePanel_total_time;dur=0;desc="Cache + - TimerPanel_utime;dur=86.43599999999196;desc="User CPU time", TimerPanel_stime;dur=1.2639999999919382;desc="System + CPU time", TimerPanel_total;dur=87.6999999999839;desc="Total CPU time", TimerPanel_total_time;dur=101.33307400246849;desc="Elapsed + time", SQLPanel_sql_time;dur=2.7217799943173304;desc="SQL 9 queries", CachePanel_total_time;dur=0;desc="Cache 0 Calls" Set-Cookie: - - op_browser_state=c253bb5b9d23f0670eb45f87ff522c6dad5d1366f8084ced5ef3c567; + - op_browser_state=f5448717470b879d75a31d1e1e832e10c24a7586f91c49d672dea82f; Path=/ Vary: - Accept, Origin, Cookie @@ -104,6 +106,8 @@ interactions: - nosniff X-Frame-Options: - DENY + djdt-store-id: + - bc1bb72cb52d472a96bf9cae502f97d2 status: code: 200 message: OK diff --git a/tests/cassettes/test_client/test_user_id_public.yaml b/tests/cassettes/test_client/test_user_id_public.yaml index c87b8ad..7c78f7f 100644 --- a/tests/cassettes/test_client/test_user_id_public.yaml +++ b/tests/cassettes/test_client/test_user_id_public.yaml @@ -5,11 +5,11 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/users/me/ response: @@ -29,7 +29,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:32 GMT + - Wed, 24 Sep 2025 16:09:52 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_documents/TestDocument.test_delete.yaml b/tests/cassettes/test_documents/TestDocument.test_delete.yaml index 7825d39..9285d51 100644 --- a/tests/cassettes/test_documents/TestDocument.test_delete.yaml +++ b/tests/cassettes/test_documents/TestDocument.test_delete.yaml @@ -5,9 +5,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://api.dev.documentcloud.org/api/documents/ response: body: - string: '{"id":20000277,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000277-test","created_at":"2025-01-02T20:29:36.341687Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-01-02T20:29:36.342063Z","user":100000}' + string: '{"id":20000204,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000204-test/","created_at":"2025-09-24T16:09:55.771929Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-09-24T16:09:55.772067Z","user":100000}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -31,13 +31,13 @@ interactions: Content-Language: - en Content-Length: - - '615' + - '616' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:36 GMT + - Wed, 24 Sep 2025 16:09:55 GMT Referrer-Policy: - same-origin Server: @@ -57,18 +57,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000277/ + uri: https://api.dev.documentcloud.org/api/documents/20000204/ response: body: - string: '{"id":20000277,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000277-test","created_at":"2025-01-02T20:29:36.341687Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:37.115089Z","user":100000}' + string: '{"id":20000204,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000204-test/","created_at":"2025-09-24T16:09:55.771929Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:56.629607Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -79,13 +79,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:37 GMT + - Wed, 24 Sep 2025 16:09:56 GMT Referrer-Policy: - same-origin Server: @@ -105,18 +105,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000277/ + uri: https://api.dev.documentcloud.org/api/documents/20000204/ response: body: - string: '{"id":20000277,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000277-test","created_at":"2025-01-02T20:29:36.341687Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:38.252984Z","user":100000}' + string: '{"id":20000204,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000204-test/","created_at":"2025-09-24T16:09:55.771929Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:57.587359Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -127,13 +127,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:38 GMT + - Wed, 24 Sep 2025 16:09:57 GMT Referrer-Policy: - same-origin Server: @@ -153,18 +153,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000277/ + uri: https://api.dev.documentcloud.org/api/documents/20000204/ response: body: - string: '{"id":20000277,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000277-test","created_at":"2025-01-02T20:29:36.341687Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:38.252984Z","user":100000}' + string: '{"id":20000204,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000204-test/","created_at":"2025-09-24T16:09:55.771929Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:57.587359Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -175,13 +175,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:39 GMT + - Wed, 24 Sep 2025 16:09:59 GMT Referrer-Policy: - same-origin Server: @@ -201,18 +201,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000277/ + uri: https://api.dev.documentcloud.org/api/documents/20000204/ response: body: - string: '{"id":20000277,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000277-test","created_at":"2025-01-02T20:29:36.341687Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:38.252984Z","user":100000}' + string: '{"id":20000204,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000204-test/","created_at":"2025-09-24T16:09:55.771929Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:09:57.587359Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -223,13 +223,61 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:10:00 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000204/ + response: + body: + string: '{"id":20000204,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000204-test/","created_at":"2025-09-24T16:09:55.771929Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:00.263854Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:40 GMT + - Wed, 24 Sep 2025 16:10:01 GMT Referrer-Policy: - same-origin Server: @@ -249,18 +297,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000277/ + uri: https://api.dev.documentcloud.org/api/documents/20000204/ response: body: - string: '{"id":20000277,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000277-test","created_at":"2025-01-02T20:29:36.341687Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:40.734802Z","user":100000}' + string: '{"id":20000204,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000204-test/","created_at":"2025-09-24T16:09:55.771929Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:00.263854Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -271,13 +319,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:41 GMT + - Wed, 24 Sep 2025 16:10:02 GMT Referrer-Policy: - same-origin Server: @@ -297,18 +345,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000277/ + uri: https://api.dev.documentcloud.org/api/documents/20000204/ response: body: - string: '{"id":20000277,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000277-test","created_at":"2025-01-02T20:29:36.341687Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:29:42.610384Z","user":100000}' + string: '{"id":20000204,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000204-test/","created_at":"2025-09-24T16:09:55.771929Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:10:02.335359Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -319,13 +367,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:42 GMT + - Wed, 24 Sep 2025 16:10:03 GMT Referrer-Policy: - same-origin Server: @@ -345,17 +393,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/documents/20000277/ + uri: https://api.dev.documentcloud.org/api/documents/20000204/ response: body: string: '' @@ -373,7 +421,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:43 GMT + - Wed, 24 Sep 2025 16:10:03 GMT Referrer-Policy: - same-origin Server: @@ -393,15 +441,15 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000277/ + uri: https://api.dev.documentcloud.org/api/documents/20000204/ response: body: string: '{"detail":"Not found."}' @@ -421,7 +469,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:43 GMT + - Wed, 24 Sep 2025 16:10:03 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_documents/TestDocument.test_getattr[full_text].yaml b/tests/cassettes/test_documents/TestDocument.test_getattr[full_text].yaml index 9a1a989..d9e410f 100644 --- a/tests/cassettes/test_documents/TestDocument.test_getattr[full_text].yaml +++ b/tests/cassettes/test_documents/TestDocument.test_getattr[full_text].yaml @@ -5,15 +5,15 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/files/documents/20000273/test.txt + uri: https://api.dev.documentcloud.org/files/documents/20000200/test.txt response: body: string: '' @@ -31,9 +31,9 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:33 GMT + - Wed, 24 Sep 2025 16:09:53 GMT Location: - - https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000273/test.txt?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T202933Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=368f4611d0887274cfaf5f01ace80ab6f24bc2c79424ef2341567eb981cd1b1f + - https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000200/test.txt?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T160953Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=7a111e818c28cef4676b328f1509923407a9fcdd784d9628a3e3578d7e39b227 Referrer-Policy: - same-origin Server: @@ -53,13 +53,13 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000273/test.txt?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T202933Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=368f4611d0887274cfaf5f01ace80ab6f24bc2c79424ef2341567eb981cd1b1f + uri: https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000200/test.txt?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T160953Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=7a111e818c28cef4676b328f1509923407a9fcdd784d9628a3e3578d7e39b227 response: body: string: "doc1\nThis is a simple text PDF containing one page of info\0" @@ -71,17 +71,17 @@ interactions: Content-Type: - text/plain Date: - - Thu, 02 Jan 2025 20:23:29 GMT + - Wed, 24 Sep 2025 16:09:54 GMT ETag: - '"4700f7f139b61ff25447bfc6352ff2c0"' Last-Modified: - - Thu, 02 Jan 2025 20:22:59 GMT + - Wed, 24 Sep 2025 16:09:13 GMT Server: - AmazonS3 x-amz-id-2: - - RRD3YNpVE2B80WHVvVANyKKwmoEmjJBDFhhvjCyCQTHPTTpO3KGJCOWJj89UHneWI+Dbuu3Jjvo= + - bPO5V/Tth8jJ4i5KFh3pKMJFii3HT/eh7wazhBExSMuD/8i3kTVKLdIMk6FC5BHK7cCDUmB8eM4XSOoRMusRhamNPi5l56H0 x-amz-request-id: - - 7VT0T8Q74819XCP3 + - WBXPFEZ73WYYTJCJ x-amz-server-side-encryption: - AES256 status: diff --git a/tests/cassettes/test_documents/TestDocument.test_getattr[page_text].yaml b/tests/cassettes/test_documents/TestDocument.test_getattr[page_text].yaml index 9c15984..e14fd23 100644 --- a/tests/cassettes/test_documents/TestDocument.test_getattr[page_text].yaml +++ b/tests/cassettes/test_documents/TestDocument.test_getattr[page_text].yaml @@ -5,15 +5,15 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/files/documents/20000273/pages/test-p1.txt + uri: https://api.dev.documentcloud.org/files/documents/20000200/pages/test-p1.txt response: body: string: '' @@ -31,9 +31,9 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:33 GMT + - Wed, 24 Sep 2025 16:09:53 GMT Location: - - https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000273/pages/test-p1.txt?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T202933Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=3b5ad0dae5f63745a9edc624c0a76794d8f46bd9b59d654ce7c0fa4002e2fc0b + - https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000200/pages/test-p1.txt?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T160953Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=349dbd3893b833803b4e81e854b8feb6edba5198f2669bfe6c52a2e88dffd5c0 Referrer-Policy: - same-origin Server: @@ -53,13 +53,13 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000273/pages/test-p1.txt?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T202933Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=3b5ad0dae5f63745a9edc624c0a76794d8f46bd9b59d654ce7c0fa4002e2fc0b + uri: https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000200/pages/test-p1.txt?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T160953Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=349dbd3893b833803b4e81e854b8feb6edba5198f2669bfe6c52a2e88dffd5c0 response: body: string: "doc1\nThis is a simple text PDF containing one page of info\0" @@ -71,17 +71,17 @@ interactions: Content-Type: - text/plain Date: - - Thu, 02 Jan 2025 20:23:29 GMT + - Wed, 24 Sep 2025 16:09:54 GMT ETag: - '"4700f7f139b61ff25447bfc6352ff2c0"' Last-Modified: - - Thu, 02 Jan 2025 20:22:58 GMT + - Wed, 24 Sep 2025 16:09:07 GMT Server: - AmazonS3 x-amz-id-2: - - CEqXZdEt3b1bQQVbRLqzXJivvKdCDp6Jq23N8b70U5tQwYeO7eOsLzjM2WPO625vFmhpIMEc+Zx7mrib6xwW3L8K8m6gcg2HRaYBVHKMq70= + - WNBNXZIx4KQwHRoQAB6DWjrRtwgblhnfGQQdnbAUVGNZ7qcO+NkxN0fVkBNrBaZw4Dnai1EiOGkIVMQHKx5Fh6pIUOr/yNEmJKVtlYSmL4Q= x-amz-request-id: - - 7VT0JHDBFS9Z3V4F + - WBXR7VHESHNHJ4WJ x-amz-server-side-encryption: - AES256 status: diff --git a/tests/cassettes/test_documents/TestDocument.test_getattr[pdf].yaml b/tests/cassettes/test_documents/TestDocument.test_getattr[pdf].yaml index 617873b..8ae08e5 100644 --- a/tests/cassettes/test_documents/TestDocument.test_getattr[pdf].yaml +++ b/tests/cassettes/test_documents/TestDocument.test_getattr[pdf].yaml @@ -5,15 +5,15 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/files/documents/20000273/test.pdf + uri: https://api.dev.documentcloud.org/files/documents/20000200/test.pdf response: body: string: '' @@ -31,9 +31,9 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:34 GMT + - Wed, 24 Sep 2025 16:09:53 GMT Location: - - https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000273/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T202934Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=b846b66b2a49c9382371c9704c900e22cb476b393ba357b584a2a3627a8ffac0 + - https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000200/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T160953Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=e566c850bc475f30a9ef0f08340cc7f43efaa339b25f8d984643d78ff77ae2a4 Referrer-Policy: - same-origin Server: @@ -53,13 +53,13 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000273/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T202934Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=b846b66b2a49c9382371c9704c900e22cb476b393ba357b584a2a3627a8ffac0 + uri: https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000200/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T160953Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=e566c850bc475f30a9ef0f08340cc7f43efaa339b25f8d984643d78ff77ae2a4 response: body: string: !!binary | @@ -345,7 +345,7 @@ interactions: IDAwMDAwIG4gCjAwMDAwMDE3MzIgMDAwMDAgbiAKMDAwMDAwNTIwMSAwMDAwMCBuIAowMDAwMDA1 NDYxIDAwMDAwIG4gCjAwMDAwMDU3MTMgMDAwMDAgbiAKMDAwMDAwOTIzOSAwMDAwMCBuIAp0cmFp bGVyIDw8IC9JbmZvIDIgMCBSIC9Sb290IDEgMCBSIC9TaXplIDIxIC9JRCBbPDZlNGM3OGNmY2E1 - ZWYwY2ZjYzBhNjE3NDNkMDI1MGNjPjwxOWY3MmJkYzg4MTRkNzk4YTA3ZWJmZjFhZjU5NGFiNz5d + ZWYwY2ZjYzBhNjE3NDNkMDI1MGNjPjw5MjAzZmE0ZjI0YTdhOTUzNmI0MTdmMDFhNGNjZWFiYz5d ID4+CnN0YXJ0eHJlZgoxNTU4MwolJUVPRgo= headers: Accept-Ranges: @@ -355,17 +355,17 @@ interactions: Content-Type: - application/pdf Date: - - Thu, 02 Jan 2025 20:23:30 GMT + - Wed, 24 Sep 2025 16:09:55 GMT ETag: - - '"f44d8f84ca688eff053c27cccda044fa-1"' + - '"1f99342b8205c9b565f551bf7279bb8a-1"' Last-Modified: - - Thu, 02 Jan 2025 20:22:59 GMT + - Wed, 24 Sep 2025 16:09:12 GMT Server: - AmazonS3 x-amz-id-2: - - OEGgqPr1/yOAbWmn/Zc3fzSAtGfYgBiv+lxVbEvkMq2v7EJG+A/DVmNjFjKc2RtCRobbPJzHZQvdGjGh+KQRnxPqvmmi8VTq4XH/t/Qa8U8= + - L+6uQWqFbel1OkmO+2CKBnw83hjDooQ7Hopkwy5aDNSU4l1s6bMykpQLg5B+KH2o9MT1K2KvWjp5Jv8Oz5NTw+4yJiuBKtJR x-amz-request-id: - - PXRK1T3TG6NK2G13 + - 3W5PGN7G0DMVAXKA x-amz-server-side-encryption: - AES256 status: diff --git a/tests/cassettes/test_documents/TestDocument.test_getattr[small_image].yaml b/tests/cassettes/test_documents/TestDocument.test_getattr[small_image].yaml index 5f0471b..d8cf16e 100644 --- a/tests/cassettes/test_documents/TestDocument.test_getattr[small_image].yaml +++ b/tests/cassettes/test_documents/TestDocument.test_getattr[small_image].yaml @@ -5,15 +5,15 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/files/documents/20000273/pages/test-p1-small.gif + uri: https://api.dev.documentcloud.org/files/documents/20000200/pages/test-p1-small.gif response: body: string: '' @@ -31,9 +31,9 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:33 GMT + - Wed, 24 Sep 2025 16:09:53 GMT Location: - - https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000273/pages/test-p1-small.gif?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T202933Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=cc623e2f552facb302f91ee2d005736b42b7bd2b0d297aef859ac92146ace8ca + - https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000200/pages/test-p1-small.gif?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T160953Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=3c44d8d2b8a2053ca152d6aa83748d0efc97ec8c9df305d23066be77bf233715 Referrer-Policy: - same-origin Server: @@ -53,13 +53,13 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000273/pages/test-p1-small.gif?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T202933Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=cc623e2f552facb302f91ee2d005736b42b7bd2b0d297aef859ac92146ace8ca + uri: https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000200/pages/test-p1-small.gif?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T160953Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=3c44d8d2b8a2053ca152d6aa83748d0efc97ec8c9df305d23066be77bf233715 response: body: string: !!binary | @@ -101,17 +101,17 @@ interactions: Content-Type: - image/gif Date: - - Thu, 02 Jan 2025 20:23:29 GMT + - Wed, 24 Sep 2025 16:09:54 GMT ETag: - '"74c0f370741595816bb77c55cac95163"' Last-Modified: - - Thu, 02 Jan 2025 20:22:57 GMT + - Wed, 24 Sep 2025 16:09:06 GMT Server: - AmazonS3 x-amz-id-2: - - xQbKeLHzRVXCLgQvok8kasOryKxojkqZn53b/gzoA347Vx/xhcAPzlSnCPBKfKCAUxpV8nfqnW0= + - 7DAYac+CCtQJJH2s7RD3jmqFNxgPbhDFOHn0ysOBe4TWUnkipjQeTdVX7ZIos6vT+GydtCjsUdD/fPXxM3B57zZwiDyxEaQ1 x-amz-request-id: - - 7VT90HP32B7J7VDH + - WBXXX3WEA4GFC3FF x-amz-server-side-encryption: - AES256 status: diff --git a/tests/cassettes/test_documents/TestDocument.test_getattr_method[get_full_text].yaml b/tests/cassettes/test_documents/TestDocument.test_getattr_method[get_full_text].yaml index 3b797a2..3697ee3 100644 --- a/tests/cassettes/test_documents/TestDocument.test_getattr_method[get_full_text].yaml +++ b/tests/cassettes/test_documents/TestDocument.test_getattr_method[get_full_text].yaml @@ -5,15 +5,15 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/files/documents/20000273/test.txt + uri: https://api.dev.documentcloud.org/files/documents/20000200/test.txt response: body: string: '' @@ -31,9 +31,9 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:34 GMT + - Wed, 24 Sep 2025 16:09:54 GMT Location: - - https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000273/test.txt?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T202934Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=72e7381430a4aa92de2f30b7e10757256368a6457be4e7fde4d5ff5872f242fa + - https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000200/test.txt?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T160954Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=2c2e96f032fbbc174d612e75bb48bdbc3b153b21dacb5016821f0fb8f2c41c77 Referrer-Policy: - same-origin Server: @@ -53,13 +53,13 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000273/test.txt?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T202934Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=72e7381430a4aa92de2f30b7e10757256368a6457be4e7fde4d5ff5872f242fa + uri: https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000200/test.txt?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T160954Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=2c2e96f032fbbc174d612e75bb48bdbc3b153b21dacb5016821f0fb8f2c41c77 response: body: string: "doc1\nThis is a simple text PDF containing one page of info\0" @@ -71,17 +71,17 @@ interactions: Content-Type: - text/plain Date: - - Thu, 02 Jan 2025 20:23:30 GMT + - Wed, 24 Sep 2025 16:09:55 GMT ETag: - '"4700f7f139b61ff25447bfc6352ff2c0"' Last-Modified: - - Thu, 02 Jan 2025 20:22:59 GMT + - Wed, 24 Sep 2025 16:09:13 GMT Server: - AmazonS3 x-amz-id-2: - - P1NIVXaHTg4FbQOkSXpjSVZRQX6d+/cWRhwDw1bPAg7tq9aKAg6+O1ND6jydeYEf464YyCruimk= + - SXbc7BNfNbgGW7tFldhdRXqg5qm9kGVHjEAY6xSVKffoYKEhrcxSSN5yKQMoIcMhjeUhhuG/wMI= x-amz-request-id: - - PXRP8TR403K5H2NP + - 3W5KRBWVJWZG9KKQ x-amz-server-side-encryption: - AES256 status: diff --git a/tests/cassettes/test_documents/TestDocument.test_getattr_method[get_page_text].yaml b/tests/cassettes/test_documents/TestDocument.test_getattr_method[get_page_text].yaml index 0fcda0f..f1fe917 100644 --- a/tests/cassettes/test_documents/TestDocument.test_getattr_method[get_page_text].yaml +++ b/tests/cassettes/test_documents/TestDocument.test_getattr_method[get_page_text].yaml @@ -5,15 +5,15 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/files/documents/20000273/pages/test-p1.txt + uri: https://api.dev.documentcloud.org/files/documents/20000200/pages/test-p1.txt response: body: string: '' @@ -31,9 +31,9 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:35 GMT + - Wed, 24 Sep 2025 16:09:54 GMT Location: - - https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000273/pages/test-p1.txt?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T202935Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=8c78c4132c6f5602020f404fa80044b6f734957191d351f2b0073f14331fd510 + - https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000200/pages/test-p1.txt?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T160954Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=3e3298047f0f6068ba13b0585e920c7357e50d5fa2eaa3602329115b5afd68cd Referrer-Policy: - same-origin Server: @@ -53,13 +53,13 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000273/pages/test-p1.txt?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T202935Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=8c78c4132c6f5602020f404fa80044b6f734957191d351f2b0073f14331fd510 + uri: https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000200/pages/test-p1.txt?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T160954Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=3e3298047f0f6068ba13b0585e920c7357e50d5fa2eaa3602329115b5afd68cd response: body: string: "doc1\nThis is a simple text PDF containing one page of info\0" @@ -71,17 +71,17 @@ interactions: Content-Type: - text/plain Date: - - Thu, 02 Jan 2025 20:23:31 GMT + - Wed, 24 Sep 2025 16:09:55 GMT ETag: - '"4700f7f139b61ff25447bfc6352ff2c0"' Last-Modified: - - Thu, 02 Jan 2025 20:22:58 GMT + - Wed, 24 Sep 2025 16:09:07 GMT Server: - AmazonS3 x-amz-id-2: - - LThXDcsTAMCQ2by29nKXGOOOKjbY4vF7xxExlW403c6vVbmwHW4d1G+wr5q+3g+Ipx2oqSie1YG/XbvxyUXvPLDU7FCsm4Mt7/w2SnInXEw= + - k1qRkR4KDPYS/vmE9heJiUmWgWQnVyp8QRQ1NkgN59QXaehw7PAfTZfzXyTMT4L08xwk0Pssl2PlBVm1p930V0te4BnhqOcK x-amz-request-id: - - WJCT1BFJ60EGBR4H + - 3W5Q1J1D0TW96BJM x-amz-server-side-encryption: - AES256 status: diff --git a/tests/cassettes/test_documents/TestDocument.test_getattr_method[get_pdf].yaml b/tests/cassettes/test_documents/TestDocument.test_getattr_method[get_pdf].yaml index fbe2ae0..6162801 100644 --- a/tests/cassettes/test_documents/TestDocument.test_getattr_method[get_pdf].yaml +++ b/tests/cassettes/test_documents/TestDocument.test_getattr_method[get_pdf].yaml @@ -5,15 +5,15 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/files/documents/20000273/test.pdf + uri: https://api.dev.documentcloud.org/files/documents/20000200/test.pdf response: body: string: '' @@ -31,9 +31,9 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:35 GMT + - Wed, 24 Sep 2025 16:09:54 GMT Location: - - https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000273/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T202935Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=16db509ec1e644cfd55ddb135b3acb91784d0a03a3eecd493c9a08c505d9cb83 + - https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000200/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T160954Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=74de52284b39c9dd617186b153340cade24c8f6c8a5ac51f3697c7401f4855af Referrer-Policy: - same-origin Server: @@ -53,13 +53,13 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000273/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T202935Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=16db509ec1e644cfd55ddb135b3acb91784d0a03a3eecd493c9a08c505d9cb83 + uri: https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000200/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T160954Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=74de52284b39c9dd617186b153340cade24c8f6c8a5ac51f3697c7401f4855af response: body: string: !!binary | @@ -345,7 +345,7 @@ interactions: IDAwMDAwIG4gCjAwMDAwMDE3MzIgMDAwMDAgbiAKMDAwMDAwNTIwMSAwMDAwMCBuIAowMDAwMDA1 NDYxIDAwMDAwIG4gCjAwMDAwMDU3MTMgMDAwMDAgbiAKMDAwMDAwOTIzOSAwMDAwMCBuIAp0cmFp bGVyIDw8IC9JbmZvIDIgMCBSIC9Sb290IDEgMCBSIC9TaXplIDIxIC9JRCBbPDZlNGM3OGNmY2E1 - ZWYwY2ZjYzBhNjE3NDNkMDI1MGNjPjwxOWY3MmJkYzg4MTRkNzk4YTA3ZWJmZjFhZjU5NGFiNz5d + ZWYwY2ZjYzBhNjE3NDNkMDI1MGNjPjw5MjAzZmE0ZjI0YTdhOTUzNmI0MTdmMDFhNGNjZWFiYz5d ID4+CnN0YXJ0eHJlZgoxNTU4MwolJUVPRgo= headers: Accept-Ranges: @@ -355,17 +355,17 @@ interactions: Content-Type: - application/pdf Date: - - Thu, 02 Jan 2025 20:23:31 GMT + - Wed, 24 Sep 2025 16:09:56 GMT ETag: - - '"f44d8f84ca688eff053c27cccda044fa-1"' + - '"1f99342b8205c9b565f551bf7279bb8a-1"' Last-Modified: - - Thu, 02 Jan 2025 20:22:59 GMT + - Wed, 24 Sep 2025 16:09:12 GMT Server: - AmazonS3 x-amz-id-2: - - MJHJwMsILPGoFXqqL3AxlfMTGrrp6WyDsZ/cM43NlYsLC6/EUBKlSF0WxwvW5YlJ+pW4TSi5QtU= + - PBpCkza0ji8oUqC5cu8wGqX1q5vsEJiL73f5NG9SvCPGcc0bn+xb2CGsZ3aWoMWt3R/K5Fmzyv8iyeD2T5utASvMCD0p8w/P x-amz-request-id: - - WJCS7HDT8DQ70RCC + - JG9312RQPVENNEN1 x-amz-server-side-encryption: - AES256 status: diff --git a/tests/cassettes/test_documents/TestDocument.test_getattr_method[get_small_image].yaml b/tests/cassettes/test_documents/TestDocument.test_getattr_method[get_small_image].yaml index e7638bf..765d797 100644 --- a/tests/cassettes/test_documents/TestDocument.test_getattr_method[get_small_image].yaml +++ b/tests/cassettes/test_documents/TestDocument.test_getattr_method[get_small_image].yaml @@ -5,15 +5,15 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/files/documents/20000273/pages/test-p1-small.gif + uri: https://api.dev.documentcloud.org/files/documents/20000200/pages/test-p1-small.gif response: body: string: '' @@ -31,9 +31,9 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:34 GMT + - Wed, 24 Sep 2025 16:09:54 GMT Location: - - https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000273/pages/test-p1-small.gif?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T202934Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=6483ab8c10783f311e8b89354be3197f3989f8a802d81df83770736ce48b112e + - https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000200/pages/test-p1-small.gif?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T160954Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=0c883e581637186536ff6612f7fa810dd65e16af4ed8df17b101663024d6d11c Referrer-Policy: - same-origin Server: @@ -53,13 +53,13 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000273/pages/test-p1-small.gif?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T202934Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=6483ab8c10783f311e8b89354be3197f3989f8a802d81df83770736ce48b112e + uri: https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000200/pages/test-p1-small.gif?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T160954Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=0c883e581637186536ff6612f7fa810dd65e16af4ed8df17b101663024d6d11c response: body: string: !!binary | @@ -101,17 +101,17 @@ interactions: Content-Type: - image/gif Date: - - Thu, 02 Jan 2025 20:23:30 GMT + - Wed, 24 Sep 2025 16:09:55 GMT ETag: - '"74c0f370741595816bb77c55cac95163"' Last-Modified: - - Thu, 02 Jan 2025 20:22:57 GMT + - Wed, 24 Sep 2025 16:09:06 GMT Server: - AmazonS3 x-amz-id-2: - - FjlTqlqa2yqhiTRzha/ikjzOLqeHdUdVeW4lwVnuzP7wGLH8bdm3ryRYkUPS6PR0HvuSeNhBY50= + - ggu7Eza+U8OSoRW9AMm7w72BJb+g0OCF59egOIamaEh1uWuoF077dBOlcSDi7J4Ob08X4nWSwgagVrPrA/SGY6dOzzG7v2RY1auvhDPJCII= x-amz-request-id: - - PXRH9H59CAXF0TR8 + - 3W5Y6RGYVPRK9QY6 x-amz-server-side-encryption: - AES256 status: diff --git a/tests/cassettes/test_documents/TestDocument.test_mentions.yaml b/tests/cassettes/test_documents/TestDocument.test_mentions.yaml index 775ddf9..8366a09 100644 --- a/tests/cassettes/test_documents/TestDocument.test_mentions.yaml +++ b/tests/cassettes/test_documents/TestDocument.test_mentions.yaml @@ -5,23 +5,24 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/search/?hl=true&q=document%3A20000273+text + uri: https://api.dev.documentcloud.org/api/documents/search/?hl=true&q=document%3A20000200+text response: body: - string: '{"count":1,"next":null,"previous":null,"results":[{"id":"20000273","user":100000,"organization":10004,"access":"private","status":"success","title":"test","slug":"test","source":"DocumentCloud","description":"A - simple test document","language":"eng","created_at":"2025-01-02T20:28:57.927Z","updated_at":"2025-01-02T20:29:04.258Z","page_count":1,"projects":[200070],"original_extension":"pdf","file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","related_article":"https://www.example.com/article/","published_url":"https://www.example.com/article/test.pdf","noindex":false,"edit_access":true,"notes":[],"highlights":{"page_no_1":["doc1\nThis - is a simple text PDF containing one page of info"]},"data":{"_tag":["document"]},"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000273-test"}],"escaped":false,"debug":{"text_query":"text","qtime":4,"fq":["!access:invisible","filter(access:public + string: '{"count":1,"next":null,"previous":null,"results":[{"id":"20000200","user":100000,"organization":10000,"access":"private","status":"success","title":"test","slug":"test","source":"DocumentCloud","description":"A + simple test document","language":"eng","created_at":"2025-09-24T16:09:01.460Z","updated_at":"2025-09-24T16:09:12.774Z","page_count":1,"projects":[200056],"original_extension":"pdf","file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","related_article":"https://www.example.com/article/","published_url":"https://www.example.com/article/test.pdf","noindex":false,"edit_access":true,"notes":[],"highlights":{"page_no_1":["doc1\nThis + is a simple text PDF containing one page of info"]},"data":{"_tag":["document"]},"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000200-test/"}],"escaped":false,"debug":{"text_query":"text","qtime":3,"fq":["!access:invisible","filter(access:public AND status:(success readable)) OR (user:100000) OR (access:organization AND - organization:(10000 10004)) OR (projects_edit_access:(200071 200000 200001 - 200070))","id:(20000273)"],"sort":"score desc, created_at desc, id desc","hl":"on","hl.highlightMultiTerm":"true","rows":25,"start":0,"qq_user":100000,"notes.qq_user":100000,"qq_organizations":"10000,10004","qq_projects":"200071,200000,200001,200070"}}' + organization:(10001 10000)) OR (projects_edit_access:(200002 200054 200050 + 200022 200057 200004 200056))","id:(20000200)"],"sort":"score desc, created_at + desc, id desc","hl":"on","hl.highlightMultiTerm":"true","rows":25,"start":0,"qq_user":100000,"notes.qq_user":100000,"qq_organizations":"10001,10000","qq_projects":"200050,200002,200054,200057,200022,200004,200056"}}' headers: Allow: - GET, HEAD, OPTIONS @@ -32,13 +33,13 @@ interactions: Content-Language: - en Content-Length: - - '1373' + - '1416' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:35 GMT + - Wed, 24 Sep 2025 16:09:55 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_documents/TestDocument.test_organization.yaml b/tests/cassettes/test_documents/TestDocument.test_organization.yaml index 462b769..9473b2e 100644 --- a/tests/cassettes/test_documents/TestDocument.test_organization.yaml +++ b/tests/cassettes/test_documents/TestDocument.test_organization.yaml @@ -5,19 +5,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/organizations/10004/ + uri: https://api.dev.documentcloud.org/api/organizations/10000/ response: body: - string: '{"id":10004,"avatar_url":"https://dev.squarelet.com/static/images/avatars/organization.png","individual":false,"name":"test - org","slug":"test-org","uuid":"155d99ef-e77d-4a8e-8db1-1c49c8916e87","monthly_credits":0,"purchased_credits":0,"credit_reset_date":null,"monthly_credit_allowance":0,"plan":"Free"}' + string: '{"id":10000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/organization.png","individual":false,"name":"Test + Unverified Org","slug":"test-unverified-org","uuid":"49ebf55b-c60a-4818-85b5-8005ed9e97d5","monthly_credits":0,"purchased_credits":0,"credit_reset_date":null,"monthly_credit_allowance":0,"plan":"Free"}' headers: Allow: - GET, HEAD, OPTIONS @@ -26,13 +26,13 @@ interactions: Content-Language: - en Content-Length: - - '303' + - '325' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:35 GMT + - Wed, 24 Sep 2025 16:09:55 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_documents/TestDocument.test_save.yaml b/tests/cassettes/test_documents/TestDocument.test_save.yaml index 99c661e..c1cce12 100644 --- a/tests/cassettes/test_documents/TestDocument.test_save.yaml +++ b/tests/cassettes/test_documents/TestDocument.test_save.yaml @@ -8,9 +8,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: @@ -18,13 +18,13 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: PUT - uri: https://api.dev.documentcloud.org/api/documents/20000273/ + uri: https://api.dev.documentcloud.org/api/documents/20000200/ response: body: - string: '{"id":20000273,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000273-test","created_at":"2025-01-02T20:28:57.927312Z","data":{"_tag":["document"]},"description":"A - simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[200070],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"MuckRock","status":"success","title":"test","updated_at":"2025-01-02T20:29:36.132528Z","user":100000}' + string: '{"id":20000200,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000200-test/","created_at":"2025-09-24T16:09:01.460974Z","data":{"_tag":["document"]},"description":"A + simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[200056],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"MuckRock","status":"success","title":"test","updated_at":"2025-09-24T16:09:55.565005Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -35,13 +35,13 @@ interactions: Content-Language: - en Content-Length: - - '796' + - '799' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:36 GMT + - Wed, 24 Sep 2025 16:09:55 GMT Referrer-Policy: - same-origin Server: @@ -61,19 +61,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000273/ + uri: https://api.dev.documentcloud.org/api/documents/20000200/ response: body: - string: '{"id":20000273,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000273-test","created_at":"2025-01-02T20:28:57.927312Z","data":{"_tag":["document"]},"description":"A - simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[200070],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"MuckRock","status":"success","title":"test","updated_at":"2025-01-02T20:29:36.132528Z","user":100000}' + string: '{"id":20000200,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000200-test/","created_at":"2025-09-24T16:09:01.460974Z","data":{"_tag":["document"]},"description":"A + simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[200056],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"MuckRock","status":"success","title":"test","updated_at":"2025-09-24T16:09:55.565005Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -84,13 +84,13 @@ interactions: Content-Language: - en Content-Length: - - '796' + - '799' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:36 GMT + - Wed, 24 Sep 2025 16:09:55 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_documents/TestDocument.test_section.yaml b/tests/cassettes/test_documents/TestDocument.test_section.yaml index 6e710ba..55fed0c 100644 --- a/tests/cassettes/test_documents/TestDocument.test_section.yaml +++ b/tests/cassettes/test_documents/TestDocument.test_section.yaml @@ -5,9 +5,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://api.dev.documentcloud.org/api/documents/ response: body: - string: '{"id":20000278,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000278-test","created_at":"2025-01-02T20:29:43.201366Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-01-02T20:29:43.201620Z","user":100000}' + string: '{"id":20000205,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000205-test/","created_at":"2025-09-24T16:10:03.709149Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-09-24T16:10:03.709348Z","user":100000}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -31,13 +31,13 @@ interactions: Content-Language: - en Content-Length: - - '615' + - '616' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:43 GMT + - Wed, 24 Sep 2025 16:10:03 GMT Referrer-Policy: - same-origin Server: @@ -57,210 +57,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br - Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000278/ - response: - body: - string: '{"id":20000278,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000278-test","created_at":"2025-01-02T20:29:43.201366Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:43.875357Z","user":100000}' - headers: - Allow: - - GET, PUT, PATCH, DELETE, HEAD, OPTIONS - Cache-Control: - - private, no-cache - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '616' - Content-Type: - - application/json - Cross-Origin-Opener-Policy: - - same-origin - Date: - - Thu, 02 Jan 2025 20:29:44 GMT - Referrer-Policy: - - same-origin - Server: - - nginx/1.25.2 - Vary: - - Cookie, Accept, Origin, Accept-Language - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000278/ - response: - body: - string: '{"id":20000278,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000278-test","created_at":"2025-01-02T20:29:43.201366Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:44.997499Z","user":100000}' - headers: - Allow: - - GET, PUT, PATCH, DELETE, HEAD, OPTIONS - Cache-Control: - - private, no-cache - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '616' - Content-Type: - - application/json - Cross-Origin-Opener-Policy: - - same-origin - Date: - - Thu, 02 Jan 2025 20:29:45 GMT - Referrer-Policy: - - same-origin - Server: - - nginx/1.25.2 - Vary: - - Cookie, Accept, Origin, Accept-Language - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000278/ - response: - body: - string: '{"id":20000278,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000278-test","created_at":"2025-01-02T20:29:43.201366Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:44.997499Z","user":100000}' - headers: - Allow: - - GET, PUT, PATCH, DELETE, HEAD, OPTIONS - Cache-Control: - - private, no-cache - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '616' - Content-Type: - - application/json - Cross-Origin-Opener-Policy: - - same-origin - Date: - - Thu, 02 Jan 2025 20:29:46 GMT - Referrer-Policy: - - same-origin - Server: - - nginx/1.25.2 - Vary: - - Cookie, Accept, Origin, Accept-Language - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000278/ - response: - body: - string: '{"id":20000278,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000278-test","created_at":"2025-01-02T20:29:43.201366Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:44.997499Z","user":100000}' - headers: - Allow: - - GET, PUT, PATCH, DELETE, HEAD, OPTIONS - Cache-Control: - - private, no-cache - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '616' - Content-Type: - - application/json - Cross-Origin-Opener-Policy: - - same-origin - Date: - - Thu, 02 Jan 2025 20:29:47 GMT - Referrer-Policy: - - same-origin - Server: - - nginx/1.25.2 - Vary: - - Cookie, Accept, Origin, Accept-Language - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000278/ + uri: https://api.dev.documentcloud.org/api/documents/20000205/ response: body: - string: '{"id":20000278,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000278-test","created_at":"2025-01-02T20:29:43.201366Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:47.764739Z","user":100000}' + string: '{"id":20000205,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000205-test/","created_at":"2025-09-24T16:10:03.709149Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:04.485359Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -271,13 +79,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:48 GMT + - Wed, 24 Sep 2025 16:10:04 GMT Referrer-Policy: - same-origin Server: @@ -297,18 +105,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000278/ + uri: https://api.dev.documentcloud.org/api/documents/20000205/ response: body: - string: '{"id":20000278,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000278-test","created_at":"2025-01-02T20:29:43.201366Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:47.764739Z","user":100000}' + string: '{"id":20000205,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000205-test/","created_at":"2025-09-24T16:10:03.709149Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:05.471546Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -319,13 +127,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:49 GMT + - Wed, 24 Sep 2025 16:10:05 GMT Referrer-Policy: - same-origin Server: @@ -345,18 +153,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000278/ + uri: https://api.dev.documentcloud.org/api/documents/20000205/ response: body: - string: '{"id":20000278,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000278-test","created_at":"2025-01-02T20:29:43.201366Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:47.764739Z","user":100000}' + string: '{"id":20000205,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000205-test/","created_at":"2025-09-24T16:10:03.709149Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:05.471546Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -367,13 +175,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:50 GMT + - Wed, 24 Sep 2025 16:10:07 GMT Referrer-Policy: - same-origin Server: @@ -393,18 +201,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000278/ + uri: https://api.dev.documentcloud.org/api/documents/20000205/ response: body: - string: '{"id":20000278,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000278-test","created_at":"2025-01-02T20:29:43.201366Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:47.764739Z","user":100000}' + string: '{"id":20000205,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000205-test/","created_at":"2025-09-24T16:10:03.709149Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:05.471546Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -415,13 +223,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:51 GMT + - Wed, 24 Sep 2025 16:10:08 GMT Referrer-Policy: - same-origin Server: @@ -441,18 +249,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000278/ + uri: https://api.dev.documentcloud.org/api/documents/20000205/ response: body: - string: '{"id":20000278,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000278-test","created_at":"2025-01-02T20:29:43.201366Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:47.764739Z","user":100000}' + string: '{"id":20000205,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000205-test/","created_at":"2025-09-24T16:10:03.709149Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:08.195602Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -463,13 +271,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:53 GMT + - Wed, 24 Sep 2025 16:10:09 GMT Referrer-Policy: - same-origin Server: @@ -489,18 +297,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000278/ + uri: https://api.dev.documentcloud.org/api/documents/20000205/ response: body: - string: '{"id":20000278,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000278-test","created_at":"2025-01-02T20:29:43.201366Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:47.764739Z","user":100000}' + string: '{"id":20000205,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000205-test/","created_at":"2025-09-24T16:10:03.709149Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:08.195602Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -511,13 +319,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:54 GMT + - Wed, 24 Sep 2025 16:10:10 GMT Referrer-Policy: - same-origin Server: @@ -537,18 +345,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000278/ + uri: https://api.dev.documentcloud.org/api/documents/20000205/ response: body: - string: '{"id":20000278,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000278-test","created_at":"2025-01-02T20:29:43.201366Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:29:54.320437Z","user":100000}' + string: '{"id":20000205,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000205-test/","created_at":"2025-09-24T16:10:03.709149Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:10:10.244838Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -559,13 +367,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:55 GMT + - Wed, 24 Sep 2025 16:10:11 GMT Referrer-Policy: - same-origin Server: @@ -585,15 +393,15 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000278/sections/ + uri: https://api.dev.documentcloud.org/api/documents/20000205/sections/ response: body: string: '{"count":0,"next":null,"previous":null,"results":[]}' @@ -613,7 +421,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:55 GMT + - Wed, 24 Sep 2025 16:10:11 GMT Referrer-Policy: - same-origin Server: @@ -633,9 +441,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: @@ -643,12 +451,12 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST - uri: https://api.dev.documentcloud.org/api/documents/20000278/sections/ + uri: https://api.dev.documentcloud.org/api/documents/20000205/sections/ response: body: - string: '{"id":66,"page_number":0,"title":"Test Section"}' + string: '{"id":48,"page_number":0,"title":"Test Section"}' headers: Allow: - GET, POST, HEAD, OPTIONS @@ -665,7 +473,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:55 GMT + - Wed, 24 Sep 2025 16:10:11 GMT Referrer-Policy: - same-origin Server: @@ -685,18 +493,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000278/sections/ + uri: https://api.dev.documentcloud.org/api/documents/20000205/sections/ response: body: - string: '{"count":1,"next":null,"previous":null,"results":[{"id":66,"page_number":0,"title":"Test + string: '{"count":1,"next":null,"previous":null,"results":[{"id":48,"page_number":0,"title":"Test Section"}]}' headers: Allow: @@ -714,7 +522,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:55 GMT + - Wed, 24 Sep 2025 16:10:11 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_documents/TestDocument.test_user.yaml b/tests/cassettes/test_documents/TestDocument.test_user.yaml index bf4f468..52dbfb3 100644 --- a/tests/cassettes/test_documents/TestDocument.test_user.yaml +++ b/tests/cassettes/test_documents/TestDocument.test_user.yaml @@ -5,18 +5,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/users/100000/ response: body: - string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","is_staff":true,"name":"test-user","organization":10004,"organizations":[10000,10004],"admin_organizations":[10000,10004],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true}' + string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","name":"hello + there","organization":10000,"organizations":[10001,10000],"admin_organizations":[10001,10000],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true}' headers: Allow: - GET, PUT, PATCH, HEAD, OPTIONS @@ -25,13 +26,13 @@ interactions: Content-Language: - en Content-Length: - - '306' + - '292' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:35 GMT + - Wed, 24 Sep 2025 16:09:55 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_documents/TestDocument.test_user_expanded.yaml b/tests/cassettes/test_documents/TestDocument.test_user_expanded.yaml index 3f8c449..392203f 100644 --- a/tests/cassettes/test_documents/TestDocument.test_user_expanded.yaml +++ b/tests/cassettes/test_documents/TestDocument.test_user_expanded.yaml @@ -5,19 +5,20 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000273/?expand=user + uri: https://api.dev.documentcloud.org/api/documents/20000200/?expand=user response: body: - string: '{"id":20000273,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000273-test","created_at":"2025-01-02T20:28:57.927312Z","data":{"_tag":["document"]},"description":"A - simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[200070],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"success","title":"test","updated_at":"2025-01-02T20:29:04.258476Z","user":{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","is_staff":true,"name":"test-user","organization":10004,"organizations":[10000,10004],"admin_organizations":[10000,10004],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true}}' + string: '{"id":20000200,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000200-test/","created_at":"2025-09-24T16:09:01.460974Z","data":{"_tag":["document"]},"description":"A + simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[200056],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"DocumentCloud","status":"success","title":"test","updated_at":"2025-09-24T16:09:12.774106Z","user":{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","name":"hello + there","organization":10000,"organizations":[10001,10000],"admin_organizations":[10001,10000],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true}}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -28,13 +29,13 @@ interactions: Content-Language: - en Content-Length: - - '1101' + - '1090' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:35 GMT + - Wed, 24 Sep 2025 16:09:55 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_documents/TestDocumentClient.test_delete.yaml b/tests/cassettes/test_documents/TestDocumentClient.test_delete.yaml index 2ce38c4..1c71881 100644 --- a/tests/cassettes/test_documents/TestDocumentClient.test_delete.yaml +++ b/tests/cassettes/test_documents/TestDocumentClient.test_delete.yaml @@ -5,9 +5,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://api.dev.documentcloud.org/api/documents/ response: body: - string: '{"id":20000284,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000284-test","created_at":"2025-01-02T20:30:27.546551Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-01-02T20:30:27.546910Z","user":100000}' + string: '{"id":20000211,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000211-test/","created_at":"2025-09-24T16:10:35.714474Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-09-24T16:10:35.714676Z","user":100000}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -31,13 +31,13 @@ interactions: Content-Language: - en Content-Length: - - '615' + - '616' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:27 GMT + - Wed, 24 Sep 2025 16:10:35 GMT Referrer-Policy: - same-origin Server: @@ -57,66 +57,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br - Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000284/ - response: - body: - string: '{"id":20000284,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000284-test","created_at":"2025-01-02T20:30:27.546551Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:28.412178Z","user":100000}' - headers: - Allow: - - GET, PUT, PATCH, DELETE, HEAD, OPTIONS - Cache-Control: - - private, no-cache - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '616' - Content-Type: - - application/json - Cross-Origin-Opener-Policy: - - same-origin - Date: - - Thu, 02 Jan 2025 20:30:28 GMT - Referrer-Policy: - - same-origin - Server: - - nginx/1.25.2 - Vary: - - Cookie, Accept, Origin, Accept-Language - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000284/ + uri: https://api.dev.documentcloud.org/api/documents/20000211/ response: body: - string: '{"id":20000284,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000284-test","created_at":"2025-01-02T20:30:27.546551Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:28.412178Z","user":100000}' + string: '{"id":20000211,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000211-test/","created_at":"2025-09-24T16:10:35.714474Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000211/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T161036Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=620c05f92fcc091aa8be0c40160efd960161f32ea78bf12344ecc996b46f8a1f","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-09-24T16:10:35.714676Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -127,13 +79,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '978' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:29 GMT + - Wed, 24 Sep 2025 16:10:36 GMT Referrer-Policy: - same-origin Server: @@ -153,18 +105,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000284/ + uri: https://api.dev.documentcloud.org/api/documents/20000211/ response: body: - string: '{"id":20000284,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000284-test","created_at":"2025-01-02T20:30:27.546551Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:29.798265Z","user":100000}' + string: '{"id":20000211,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000211-test/","created_at":"2025-09-24T16:10:35.714474Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:37.894292Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -175,13 +127,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:30 GMT + - Wed, 24 Sep 2025 16:10:37 GMT Referrer-Policy: - same-origin Server: @@ -201,18 +153,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000284/ + uri: https://api.dev.documentcloud.org/api/documents/20000211/ response: body: - string: '{"id":20000284,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000284-test","created_at":"2025-01-02T20:30:27.546551Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:29.798265Z","user":100000}' + string: '{"id":20000211,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000211-test/","created_at":"2025-09-24T16:10:35.714474Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:37.894292Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -223,13 +175,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:31 GMT + - Wed, 24 Sep 2025 16:10:39 GMT Referrer-Policy: - same-origin Server: @@ -249,18 +201,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000284/ + uri: https://api.dev.documentcloud.org/api/documents/20000211/ response: body: - string: '{"id":20000284,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000284-test","created_at":"2025-01-02T20:30:27.546551Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:32.397262Z","user":100000}' + string: '{"id":20000211,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000211-test/","created_at":"2025-09-24T16:10:35.714474Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:37.894292Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -271,13 +223,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:33 GMT + - Wed, 24 Sep 2025 16:10:40 GMT Referrer-Policy: - same-origin Server: @@ -297,18 +249,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000284/ + uri: https://api.dev.documentcloud.org/api/documents/20000211/ response: body: - string: '{"id":20000284,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000284-test","created_at":"2025-01-02T20:30:27.546551Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:32.397262Z","user":100000}' + string: '{"id":20000211,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000211-test/","created_at":"2025-09-24T16:10:35.714474Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:40.325112Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -319,13 +271,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:34 GMT + - Wed, 24 Sep 2025 16:10:41 GMT Referrer-Policy: - same-origin Server: @@ -345,18 +297,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000284/ + uri: https://api.dev.documentcloud.org/api/documents/20000211/ response: body: - string: '{"id":20000284,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000284-test","created_at":"2025-01-02T20:30:27.546551Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:30:34.545640Z","user":100000}' + string: '{"id":20000211,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000211-test/","created_at":"2025-09-24T16:10:35.714474Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:10:41.980857Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -367,13 +319,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:35 GMT + - Wed, 24 Sep 2025 16:10:42 GMT Referrer-Policy: - same-origin Server: @@ -393,17 +345,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/documents/20000284/ + uri: https://api.dev.documentcloud.org/api/documents/20000211/ response: body: string: '' @@ -421,7 +373,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:35 GMT + - Wed, 24 Sep 2025 16:10:42 GMT Referrer-Policy: - same-origin Server: @@ -441,15 +393,15 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000284/ + uri: https://api.dev.documentcloud.org/api/documents/20000211/ response: body: string: '{"detail":"Not found."}' @@ -469,7 +421,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:35 GMT + - Wed, 24 Sep 2025 16:10:42 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_documents/TestDocumentClient.test_list.yaml b/tests/cassettes/test_documents/TestDocumentClient.test_list.yaml index a322461..2f171bb 100644 --- a/tests/cassettes/test_documents/TestDocumentClient.test_list.yaml +++ b/tests/cassettes/test_documents/TestDocumentClient.test_list.yaml @@ -5,18 +5,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/ response: body: - string: '{"count":38,"next":"https://api.dev.documentcloud.org/api/documents/?page=2","previous":null,"results":[{"id":20000010,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000010-test","created_at":"2024-12-12T00:23:13.365192Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2024-12-12T00:23:19.106274Z","user":100000},{"id":20000011,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000011-text","created_at":"2024-12-12T00:23:13.365274Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2024-12-12T00:23:19.325229Z","user":100000},{"id":20000027,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000027-test","created_at":"2024-12-12T00:30:12.606658Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2024-12-12T00:30:18.462609Z","user":100000},{"id":20000028,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000028-text","created_at":"2024-12-12T00:30:12.606689Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2024-12-12T00:30:18.446041Z","user":100000},{"id":20000044,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000044-test","created_at":"2025-01-02T17:35:42.271979Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T17:35:53.579946Z","user":100000},{"id":20000045,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000045-text","created_at":"2025-01-02T17:35:42.272045Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T17:35:52.821026Z","user":100000},{"id":20000061,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000061-test","created_at":"2025-01-02T17:52:19.844665Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T17:52:25.470318Z","user":100000},{"id":20000062,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000062-text","created_at":"2025-01-02T17:52:19.844743Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T17:52:25.021059Z","user":100000},{"id":20000078,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000078-test","created_at":"2025-01-02T17:59:08.935604Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T17:59:14.581074Z","user":100000},{"id":20000079,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000079-text","created_at":"2025-01-02T17:59:08.935637Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T17:59:14.573546Z","user":100000},{"id":20000095,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000095-test","created_at":"2025-01-02T18:02:04.051573Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:02:10.243219Z","user":100000},{"id":20000096,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000096-text","created_at":"2025-01-02T18:02:04.051629Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:02:10.172910Z","user":100000},{"id":20000112,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000112-test","created_at":"2025-01-02T18:19:20.038399Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:19:26.512686Z","user":100000},{"id":20000113,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000113-text","created_at":"2025-01-02T18:19:20.038433Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:19:26.235813Z","user":100000},{"id":20000129,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000129-test","created_at":"2025-01-02T18:36:41.047671Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:36:47.597018Z","user":100000},{"id":20000130,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000130-text","created_at":"2025-01-02T18:36:41.047701Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:36:46.660069Z","user":100000},{"id":20000146,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000146-test","created_at":"2025-01-02T18:40:02.275568Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:40:07.691288Z","user":100000},{"id":20000147,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000147-text","created_at":"2025-01-02T18:40:02.275599Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:40:07.605110Z","user":100000},{"id":20000163,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000163-test","created_at":"2025-01-02T19:22:41.925163Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T19:22:47.480302Z","user":100000},{"id":20000164,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000164-text","created_at":"2025-01-02T19:22:41.925261Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T19:22:47.817473Z","user":100000},{"id":20000180,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000180-test","created_at":"2025-01-02T19:41:24.016515Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T19:41:30.504415Z","user":100000},{"id":20000181,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000181-text","created_at":"2025-01-02T19:41:24.016613Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T19:41:30.680316Z","user":100000},{"id":20000197,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000197-test","created_at":"2025-01-02T19:50:13.091759Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T19:50:19.471640Z","user":100000},{"id":20000198,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000198-text","created_at":"2025-01-02T19:50:13.091857Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T19:50:19.855788Z","user":100000},{"id":20000214,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000214-test","created_at":"2025-01-02T20:03:04.316156Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:03:10.653328Z","user":100000}]}' + string: '{"count":35,"next":"https://api.dev.documentcloud.org/api/documents/?page=2","previous":null,"results":[{"id":20000010,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000010-test/","created_at":"2025-09-23T20:03:52.712360Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:03:58.421127Z","user":100000},{"id":20000011,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000011-text/","created_at":"2025-09-23T20:03:52.712448Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:03:59.506643Z","user":100000},{"id":20000017,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000017-dossier-recu-complet-le-3-mars-2025/","created_at":"2025-09-23T20:05:23.161046Z","data":{},"description":"","edit_access":true,"file_hash":"0c2645e8c409304f4af9d30da322ee32a5a275cc","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":13,"page_spec":"595.28x841.89:0-12","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"dossier-recu-complet-le-3-mars-2025","source":"","status":"success","title":"dossier-recu-complet-le-3-mars-2025","updated_at":"2025-09-23T20:05:49.048694Z","user":100000},{"id":20000028,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000028-test/","created_at":"2025-09-23T20:07:22.126274Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:07:28.615882Z","user":100000},{"id":20000029,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000029-text/","created_at":"2025-09-23T20:07:22.126305Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:07:28.307485Z","user":100000},{"id":20000034,"access":"public","admin_noindex":false,"asset_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/","canonical_url":"https://www.dev.documentcloud.org/documents/20000034-dossier-recu-complet-le-3-mars-2025/","created_at":"2025-09-23T20:11:49.428616Z","data":{},"description":"","edit_access":false,"file_hash":"0c2645e8c409304f4af9d30da322ee32a5a275cc","noindex":false,"language":"eng","organization":10002,"original_extension":"pdf","page_count":13,"page_spec":"595.28x841.89:0-12","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"dossier-recu-complet-le-3-mars-2025","source":"","status":"success","title":"dossier-recu-complet-le-3-mars-2025","updated_at":"2025-09-23T20:14:19.900642Z","user":100001},{"id":20000045,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000045-test/","created_at":"2025-09-23T20:13:31.955748Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:13:38.728774Z","user":100000},{"id":20000046,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000046-text/","created_at":"2025-09-23T20:13:31.955780Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:13:38.309234Z","user":100000},{"id":20000052,"access":"public","admin_noindex":false,"asset_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/","canonical_url":"https://www.dev.documentcloud.org/documents/20000052-cerfa-14734-04-dortan-signed/","created_at":"2025-09-23T20:14:54.050113Z","data":{},"description":"","edit_access":false,"file_hash":"68008c61169fd94554cbac3e868fb6d957c33f8e","noindex":false,"language":"eng","organization":10002,"original_extension":"pdf","page_count":13,"page_spec":"595.28x841.89:0-12","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"cerfa-14734-04-dortan-signed","source":"","status":"success","title":"cerfa + 14734-04 dortan signed","updated_at":"2025-09-23T20:15:18.102769Z","user":100001},{"id":20000063,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000063-test/","created_at":"2025-09-23T20:16:31.439732Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:16:37.611731Z","user":100000},{"id":20000064,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000064-text/","created_at":"2025-09-23T20:16:31.439775Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:16:37.298379Z","user":100000},{"id":20000076,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000076-test/","created_at":"2025-09-23T22:50:54.616236Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:51:46.781874Z","user":100000},{"id":20000077,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000077-test/","created_at":"2025-09-23T22:51:48.088605Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:53:39.716202Z","user":100000},{"id":20000078,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000078-test/","created_at":"2025-09-23T22:53:40.862933Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:55:00.005915Z","user":100000},{"id":20000079,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000079-test/","created_at":"2025-09-23T22:55:00.936162Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:56:32.611824Z","user":100000},{"id":20000090,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000090-test/","created_at":"2025-09-23T23:24:41.476623Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T23:25:35.735664Z","user":100000},{"id":20000091,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000091-text/","created_at":"2025-09-23T23:24:41.476663Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T23:25:49.733428Z","user":100000},{"id":20000107,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000107-test/","created_at":"2025-09-24T15:03:00.852905Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:03:07.014325Z","user":100000},{"id":20000108,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000108-text/","created_at":"2025-09-24T15:03:00.852944Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:03:07.054945Z","user":100000},{"id":20000124,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000124-test/","created_at":"2025-09-24T15:11:48.338041Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:11:54.136033Z","user":100000},{"id":20000125,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000125-text/","created_at":"2025-09-24T15:11:48.338121Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:11:54.167704Z","user":100000},{"id":20000141,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000141-test/","created_at":"2025-09-24T15:16:33.299662Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:16:39.650121Z","user":100000},{"id":20000142,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000142-text/","created_at":"2025-09-24T15:16:33.299696Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:16:39.157575Z","user":100000},{"id":20000158,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000158-test/","created_at":"2025-09-24T15:50:20.737003Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:50:26.737759Z","user":100000},{"id":20000159,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000159-text/","created_at":"2025-09-24T15:50:20.737036Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:50:26.972793Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -27,13 +28,13 @@ interactions: Content-Language: - en Content-Length: - - '17071' + - '17220' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:55 GMT + - Wed, 24 Sep 2025 16:10:11 GMT Referrer-Policy: - same-origin Server: @@ -53,18 +54,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?user=100000 response: body: - string: '{"count":38,"next":"https://api.dev.documentcloud.org/api/documents/?page=2&user=100000","previous":null,"results":[{"id":20000010,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000010-test","created_at":"2024-12-12T00:23:13.365192Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2024-12-12T00:23:19.106274Z","user":100000},{"id":20000011,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000011-text","created_at":"2024-12-12T00:23:13.365274Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2024-12-12T00:23:19.325229Z","user":100000},{"id":20000027,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000027-test","created_at":"2024-12-12T00:30:12.606658Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2024-12-12T00:30:18.462609Z","user":100000},{"id":20000028,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000028-text","created_at":"2024-12-12T00:30:12.606689Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2024-12-12T00:30:18.446041Z","user":100000},{"id":20000044,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000044-test","created_at":"2025-01-02T17:35:42.271979Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T17:35:53.579946Z","user":100000},{"id":20000045,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000045-text","created_at":"2025-01-02T17:35:42.272045Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T17:35:52.821026Z","user":100000},{"id":20000061,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000061-test","created_at":"2025-01-02T17:52:19.844665Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T17:52:25.470318Z","user":100000},{"id":20000062,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000062-text","created_at":"2025-01-02T17:52:19.844743Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T17:52:25.021059Z","user":100000},{"id":20000078,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000078-test","created_at":"2025-01-02T17:59:08.935604Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T17:59:14.581074Z","user":100000},{"id":20000079,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000079-text","created_at":"2025-01-02T17:59:08.935637Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T17:59:14.573546Z","user":100000},{"id":20000095,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000095-test","created_at":"2025-01-02T18:02:04.051573Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:02:10.243219Z","user":100000},{"id":20000096,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000096-text","created_at":"2025-01-02T18:02:04.051629Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:02:10.172910Z","user":100000},{"id":20000112,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000112-test","created_at":"2025-01-02T18:19:20.038399Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:19:26.512686Z","user":100000},{"id":20000113,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000113-text","created_at":"2025-01-02T18:19:20.038433Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:19:26.235813Z","user":100000},{"id":20000129,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000129-test","created_at":"2025-01-02T18:36:41.047671Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:36:47.597018Z","user":100000},{"id":20000130,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000130-text","created_at":"2025-01-02T18:36:41.047701Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:36:46.660069Z","user":100000},{"id":20000146,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000146-test","created_at":"2025-01-02T18:40:02.275568Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T18:40:07.691288Z","user":100000},{"id":20000147,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000147-text","created_at":"2025-01-02T18:40:02.275599Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T18:40:07.605110Z","user":100000},{"id":20000163,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000163-test","created_at":"2025-01-02T19:22:41.925163Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T19:22:47.480302Z","user":100000},{"id":20000164,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000164-text","created_at":"2025-01-02T19:22:41.925261Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T19:22:47.817473Z","user":100000},{"id":20000180,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000180-test","created_at":"2025-01-02T19:41:24.016515Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T19:41:30.504415Z","user":100000},{"id":20000181,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000181-text","created_at":"2025-01-02T19:41:24.016613Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T19:41:30.680316Z","user":100000},{"id":20000197,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000197-test","created_at":"2025-01-02T19:50:13.091759Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T19:50:19.471640Z","user":100000},{"id":20000198,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000198-text","created_at":"2025-01-02T19:50:13.091857Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T19:50:19.855788Z","user":100000},{"id":20000214,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000214-test","created_at":"2025-01-02T20:03:04.316156Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:03:10.653328Z","user":100000}]}' + string: '{"count":33,"next":"https://api.dev.documentcloud.org/api/documents/?page=2&user=100000","previous":null,"results":[{"id":20000010,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000010-test/","created_at":"2025-09-23T20:03:52.712360Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:03:58.421127Z","user":100000},{"id":20000011,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000011-text/","created_at":"2025-09-23T20:03:52.712448Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:03:59.506643Z","user":100000},{"id":20000017,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000017-dossier-recu-complet-le-3-mars-2025/","created_at":"2025-09-23T20:05:23.161046Z","data":{},"description":"","edit_access":true,"file_hash":"0c2645e8c409304f4af9d30da322ee32a5a275cc","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":13,"page_spec":"595.28x841.89:0-12","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"dossier-recu-complet-le-3-mars-2025","source":"","status":"success","title":"dossier-recu-complet-le-3-mars-2025","updated_at":"2025-09-23T20:05:49.048694Z","user":100000},{"id":20000028,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000028-test/","created_at":"2025-09-23T20:07:22.126274Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:07:28.615882Z","user":100000},{"id":20000029,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000029-text/","created_at":"2025-09-23T20:07:22.126305Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:07:28.307485Z","user":100000},{"id":20000045,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000045-test/","created_at":"2025-09-23T20:13:31.955748Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:13:38.728774Z","user":100000},{"id":20000046,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000046-text/","created_at":"2025-09-23T20:13:31.955780Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:13:38.309234Z","user":100000},{"id":20000063,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000063-test/","created_at":"2025-09-23T20:16:31.439732Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T20:16:37.611731Z","user":100000},{"id":20000064,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000064-text/","created_at":"2025-09-23T20:16:31.439775Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T20:16:37.298379Z","user":100000},{"id":20000076,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000076-test/","created_at":"2025-09-23T22:50:54.616236Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:51:46.781874Z","user":100000},{"id":20000077,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000077-test/","created_at":"2025-09-23T22:51:48.088605Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:53:39.716202Z","user":100000},{"id":20000078,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000078-test/","created_at":"2025-09-23T22:53:40.862933Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:55:00.005915Z","user":100000},{"id":20000079,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000079-test/","created_at":"2025-09-23T22:55:00.936162Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T22:56:32.611824Z","user":100000},{"id":20000090,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000090-test/","created_at":"2025-09-23T23:24:41.476623Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-23T23:25:35.735664Z","user":100000},{"id":20000091,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000091-text/","created_at":"2025-09-23T23:24:41.476663Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-23T23:25:49.733428Z","user":100000},{"id":20000107,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000107-test/","created_at":"2025-09-24T15:03:00.852905Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:03:07.014325Z","user":100000},{"id":20000108,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000108-text/","created_at":"2025-09-24T15:03:00.852944Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:03:07.054945Z","user":100000},{"id":20000124,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000124-test/","created_at":"2025-09-24T15:11:48.338041Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:11:54.136033Z","user":100000},{"id":20000125,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000125-text/","created_at":"2025-09-24T15:11:48.338121Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:11:54.167704Z","user":100000},{"id":20000141,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000141-test/","created_at":"2025-09-24T15:16:33.299662Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:16:39.650121Z","user":100000},{"id":20000142,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000142-text/","created_at":"2025-09-24T15:16:33.299696Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:16:39.157575Z","user":100000},{"id":20000158,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000158-test/","created_at":"2025-09-24T15:50:20.737003Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T15:50:26.737759Z","user":100000},{"id":20000159,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000159-text/","created_at":"2025-09-24T15:50:20.737036Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T15:50:26.972793Z","user":100000},{"id":20000175,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000175-test/","created_at":"2025-09-24T16:04:58.966581Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:05:05.605664Z","user":100000},{"id":20000176,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000176-text/","created_at":"2025-09-24T16:04:58.966637Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T16:05:05.299525Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -75,13 +76,13 @@ interactions: Content-Language: - en Content-Length: - - '17083' + - '17039' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:55 GMT + - Wed, 24 Sep 2025 16:10:11 GMT Referrer-Policy: - same-origin Server: @@ -101,19 +102,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/documents/?page=2 response: body: - string: '{"count":38,"next":null,"previous":"https://api.dev.documentcloud.org/api/documents/","results":[{"id":20000215,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000215-text","created_at":"2025-01-02T20:03:04.316218Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T20:03:10.920371Z","user":100000},{"id":20000231,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000231-test","created_at":"2025-01-02T20:09:28.107799Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:09:35.483550Z","user":100000},{"id":20000232,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000232-text","created_at":"2025-01-02T20:09:28.107859Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T20:09:35.556437Z","user":100000},{"id":20000248,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000248-test","created_at":"2025-01-02T20:14:38.056818Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:14:49.547678Z","user":100000},{"id":20000249,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000249-text","created_at":"2025-01-02T20:14:38.056913Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T20:14:49.530132Z","user":100000},{"id":20000265,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000265-test","created_at":"2025-01-02T20:19:06.335137Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:19:12.838465Z","user":100000},{"id":20000266,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000266-text","created_at":"2025-01-02T20:19:06.335203Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-01-02T20:19:13.219304Z","user":100000},{"id":20000272,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000272-test","created_at":"2025-01-02T20:28:50.994529Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[200070],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:28:57.821892Z","user":100000},{"id":20000273,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000273-test","created_at":"2025-01-02T20:28:57.927312Z","data":{"_tag":["document"]},"description":"A - simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[200070],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"MuckRock","status":"success","title":"test","updated_at":"2025-01-02T20:29:36.132528Z","user":100000},{"id":20000274,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000274-test","created_at":"2025-01-02T20:29:11.150604Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:29:17.379391Z","user":100000},{"id":20000275,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000275-test","created_at":"2025-01-02T20:29:17.918630Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:29:24.196506Z","user":100000},{"id":20000276,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000276-test","created_at":"2025-01-02T20:29:24.628700Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:29:30.892726Z","user":100000},{"id":20000278,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000278-test","created_at":"2025-01-02T20:29:43.201366Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:29:54.320437Z","user":100000}]}' + string: '{"count":35,"next":null,"previous":"https://api.dev.documentcloud.org/api/documents/","results":[{"id":20000175,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000175-test/","created_at":"2025-09-24T16:04:58.966581Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:05:05.605664Z","user":100000},{"id":20000176,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000176-text/","created_at":"2025-09-24T16:04:58.966637Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T16:05:05.299525Z","user":100000},{"id":20000192,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000192-test/","created_at":"2025-09-24T16:07:32.184295Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:07:38.307434Z","user":100000},{"id":20000193,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000193-text/","created_at":"2025-09-24T16:07:32.184330Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"success","title":"text","updated_at":"2025-09-24T16:07:37.945030Z","user":100000},{"id":20000199,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000199-test/","created_at":"2025-09-24T16:08:49.270524Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[200056],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:09:01.334883Z","user":100000},{"id":20000200,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000200-test/","created_at":"2025-09-24T16:09:01.460974Z","data":{"_tag":["document"]},"description":"A + simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[200056],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"MuckRock","status":"success","title":"test","updated_at":"2025-09-24T16:09:55.565005Z","user":100000},{"id":20000201,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000201-test/","created_at":"2025-09-24T16:09:18.343484Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:09:32.251707Z","user":100000},{"id":20000202,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000202-test/","created_at":"2025-09-24T16:09:32.595158Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:09:42.840754Z","user":100000},{"id":20000203,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000203-test/","created_at":"2025-09-24T16:09:43.485666Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:09:50.509016Z","user":100000},{"id":20000205,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000205-test/","created_at":"2025-09-24T16:10:03.709149Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:10:10.244838Z","user":100000}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -124,13 +125,13 @@ interactions: Content-Language: - en Content-Length: - - '9013' + - '6961' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:55 GMT + - Wed, 24 Sep 2025 16:10:11 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_documents/TestDocumentClient.test_public_upload.yaml b/tests/cassettes/test_documents/TestDocumentClient.test_public_upload.yaml index 885201b..03fc251 100644 --- a/tests/cassettes/test_documents/TestDocumentClient.test_public_upload.yaml +++ b/tests/cassettes/test_documents/TestDocumentClient.test_public_upload.yaml @@ -5,7 +5,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive Content-Length: @@ -13,7 +13,7 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://api.dev.documentcloud.org/api/documents/ response: @@ -35,7 +35,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:02 GMT + - Wed, 24 Sep 2025 16:10:19 GMT Referrer-Policy: - same-origin Server: @@ -55,7 +55,7 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive Content-Length: @@ -63,7 +63,7 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://api.dev.documentcloud.org/api/documents/ response: @@ -85,7 +85,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:02 GMT + - Wed, 24 Sep 2025 16:10:19 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_documents/TestDocumentClient.test_search.yaml b/tests/cassettes/test_documents/TestDocumentClient.test_search.yaml index 89c8fa1..a177b48 100644 --- a/tests/cassettes/test_documents/TestDocumentClient.test_search.yaml +++ b/tests/cassettes/test_documents/TestDocumentClient.test_search.yaml @@ -5,22 +5,23 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/search/?q=document%3A20000273+simple + uri: https://api.dev.documentcloud.org/api/documents/search/?q=document%3A20000200+simple response: body: - string: '{"count":1,"next":null,"previous":null,"results":[{"id":"20000273","user":100000,"organization":10004,"access":"private","status":"success","title":"test","slug":"test","source":"MuckRock","description":"A - simple test document","language":"eng","created_at":"2025-01-02T20:28:57.927Z","updated_at":"2025-01-02T20:29:36.132Z","page_count":1,"projects":[200070],"original_extension":"pdf","file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","related_article":"https://www.example.com/article/","published_url":"https://www.example.com/article/test.pdf","noindex":false,"edit_access":true,"notes":[],"highlights":null,"data":{"_tag":["document"]},"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000273-test"}],"escaped":false,"debug":{"text_query":"simple","qtime":3,"fq":["!access:invisible","filter(access:public + string: '{"count":1,"next":null,"previous":null,"results":[{"id":"20000200","user":100000,"organization":10000,"access":"private","status":"success","title":"test","slug":"test","source":"MuckRock","description":"A + simple test document","language":"eng","created_at":"2025-09-24T16:09:01.460Z","updated_at":"2025-09-24T16:09:55.565Z","page_count":1,"projects":[200056],"original_extension":"pdf","file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","related_article":"https://www.example.com/article/","published_url":"https://www.example.com/article/test.pdf","noindex":false,"edit_access":true,"notes":[],"highlights":null,"data":{"_tag":["document"]},"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000200-test/"}],"escaped":false,"debug":{"text_query":"simple","qtime":2,"fq":["!access:invisible","filter(access:public AND status:(success readable)) OR (user:100000) OR (access:organization AND - organization:(10000 10004)) OR (projects_edit_access:(200071 200000 200001 - 200070))","id:(20000273)"],"sort":"score desc, created_at desc, id desc","hl":"off","hl.highlightMultiTerm":"true","rows":25,"start":0,"qq_user":100000,"notes.qq_user":100000,"qq_organizations":"10000,10004","qq_projects":"200071,200000,200001,200070"}}' + organization:(10001 10000)) OR (projects_edit_access:(200002 200054 200050 + 200022 200057 200004 200056))","id:(20000200)"],"sort":"score desc, created_at + desc, id desc","hl":"off","hl.highlightMultiTerm":"true","rows":25,"start":0,"qq_user":100000,"notes.qq_user":100000,"qq_organizations":"10001,10000","qq_projects":"200050,200002,200054,200057,200022,200004,200056"}}' headers: Allow: - GET, HEAD, OPTIONS @@ -31,13 +32,13 @@ interactions: Content-Language: - en Content-Length: - - '1289' + - '1332' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:55 GMT + - Wed, 24 Sep 2025 16:10:11 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_documents/TestDocumentClient.test_upload_dir.yaml b/tests/cassettes/test_documents/TestDocumentClient.test_upload_dir.yaml index e0dbee6..f74a9c6 100644 --- a/tests/cassettes/test_documents/TestDocumentClient.test_upload_dir.yaml +++ b/tests/cassettes/test_documents/TestDocumentClient.test_upload_dir.yaml @@ -6,9 +6,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: @@ -16,12 +16,12 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://api.dev.documentcloud.org/api/documents/ response: body: - string: '[{"id":20000282,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000282-test","created_at":"2025-01-02T20:30:26.782543Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000282/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T203026Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=331c66cb3a89fde64c0ae0852d4dd5b44b027edf573ae3abe607dab815737c18","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-01-02T20:30:26.783015Z","user":100000},{"id":20000283,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000283-text","created_at":"2025-01-02T20:30:26.782640Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000283/text.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T203026Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=3bf5b9ee3d6717309ae364a9aa88c33bd94db2493a531f0529233ac033961305","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"nofile","title":"text","updated_at":"2025-01-02T20:30:26.783130Z","user":100000}]' + string: '[{"id":20000209,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000209-test/","created_at":"2025-09-24T16:10:34.852721Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000209/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T161034Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=f5c9489ed5bcd6a576a545a39580ae70d25e86a708b3e3f63bd9858b1ae2a45c","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-09-24T16:10:34.852911Z","user":100000},{"id":20000210,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000210-text/","created_at":"2025-09-24T16:10:34.852759Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000210/text.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T161034Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=e21d055ebed6102c4a733e29657e81ea3da8c63f658d8954b0c0f40fc0d43d58","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"text","source":"","status":"nofile","title":"text","updated_at":"2025-09-24T16:10:34.852955Z","user":100000}]' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -32,13 +32,13 @@ interactions: Content-Language: - en Content-Length: - - '1957' + - '1959' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:26 GMT + - Wed, 24 Sep 2025 16:10:34 GMT Referrer-Policy: - same-origin Server: @@ -345,15 +345,15 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive Content-Length: - '16358' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: PUT - uri: https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000282/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T203026Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=331c66cb3a89fde64c0ae0852d4dd5b44b027edf573ae3abe607dab815737c18 + uri: https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000209/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T161034Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=f5c9489ed5bcd6a576a545a39580ae70d25e86a708b3e3f63bd9858b1ae2a45c response: body: string: '' @@ -361,15 +361,19 @@ interactions: Content-Length: - '0' Date: - - Thu, 02 Jan 2025 20:24:22 GMT + - Wed, 24 Sep 2025 16:10:36 GMT ETag: - '"000096175e3f8c5b158dbc0b6bbeb666"' Server: - AmazonS3 + x-amz-checksum-crc64nvme: + - E/VkXxXKuLo= + x-amz-checksum-type: + - FULL_OBJECT x-amz-id-2: - - d1kPTDQtDzYT8//EUXMc72U35N8jt+ImuF8kRAbZBxemNPO2f7fAw0EB26979dXYm4R3csaPyaXmBKR8N9P3xd2/Rf9E7jzG0mCs02xKYzI= + - EeRWoqCjoaai32GGZTq3LlAo2bz+/cUF7VawqIB0ks5OxB+IN++71MoM6qMjVYmCigZ/wJQFia36iNPubuYkjZGVGLwY5Nes x-amz-request-id: - - M7T0E8XRPF92MQYR + - 7P57XMV7E2HNEC8Y x-amz-server-side-encryption: - AES256 status: @@ -497,15 +501,15 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive Content-Length: - '6577' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: PUT - uri: https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000283/text.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T203026Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=3bf5b9ee3d6717309ae364a9aa88c33bd94db2493a531f0529233ac033961305 + uri: https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000210/text.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T161034Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=e21d055ebed6102c4a733e29657e81ea3da8c63f658d8954b0c0f40fc0d43d58 response: body: string: '' @@ -513,37 +517,42 @@ interactions: Content-Length: - '0' Date: - - Thu, 02 Jan 2025 20:24:23 GMT + - Wed, 24 Sep 2025 16:10:36 GMT ETag: - '"b1e7f84f7fd7d908654b11f415651098"' Server: - AmazonS3 + x-amz-checksum-crc64nvme: + - WGW3f7N9YdY= + x-amz-checksum-type: + - FULL_OBJECT x-amz-id-2: - - 3/ijBKr/E7segTAmezh7/jvBJ5z0DXB5Dce+XEbv9DTonWPf3YTKriT2929qsL8qC+mNBw4iATU= + - 9xti/BaxR/J8NmrRTEXr+8fXGO6w4pB9ntIjSwPUVlUn74yYBAACgQ6u4ysTb/hXkuczCQ41B/K4qzAmDRe7efLs+aYA6KDY x-amz-request-id: - - HAJVHHA433R3PS7B + - 7P58S8KDS0SYTTFQ x-amz-server-side-encryption: - AES256 status: code: 200 message: OK - request: - body: '{"ids": [20000282, 20000283]}' + body: '[{"id": 20000209, "force_ocr": false, "ocr_engine": "tess4"}, {"id": 20000210, + "force_ocr": false, "ocr_engine": "tess4"}]' headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - - '29' + - '122' Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://api.dev.documentcloud.org/api/documents/process/ response: @@ -565,7 +574,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:27 GMT + - Wed, 24 Sep 2025 16:10:35 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_documents/TestDocumentClient.test_upload_file.yaml b/tests/cassettes/test_documents/TestDocumentClient.test_upload_file.yaml index 2bf57a6..41784a0 100644 --- a/tests/cassettes/test_documents/TestDocumentClient.test_upload_file.yaml +++ b/tests/cassettes/test_documents/TestDocumentClient.test_upload_file.yaml @@ -5,9 +5,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://api.dev.documentcloud.org/api/documents/ response: body: - string: '{"id":20000280,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000280-test","created_at":"2025-01-02T20:30:02.902480Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000280/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T203002Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=8d4621ff9ce2cf549dd1006365e6136a29acc53c021c8fa66164e35532bbd85d","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-01-02T20:30:02.902857Z","user":100000}' + string: '{"id":20000207,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000207-test/","created_at":"2025-09-24T16:10:19.737432Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000207/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T161019Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=7810fd3f065d9970a24f76e2851dbb1216c87ee36c2efd8ce2887bdc193b658d","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-09-24T16:10:19.737565Z","user":100000}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -31,13 +31,13 @@ interactions: Content-Language: - en Content-Length: - - '977' + - '978' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:02 GMT + - Wed, 24 Sep 2025 16:10:19 GMT Referrer-Policy: - same-origin Server: @@ -173,15 +173,15 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive Content-Length: - '6577' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: PUT - uri: https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000280/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T203002Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=8d4621ff9ce2cf549dd1006365e6136a29acc53c021c8fa66164e35532bbd85d + uri: https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000207/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T161019Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=7810fd3f065d9970a24f76e2851dbb1216c87ee36c2efd8ce2887bdc193b658d response: body: string: '' @@ -189,39 +189,43 @@ interactions: Content-Length: - '0' Date: - - Thu, 02 Jan 2025 20:23:58 GMT + - Wed, 24 Sep 2025 16:10:20 GMT ETag: - '"b1e7f84f7fd7d908654b11f415651098"' Server: - AmazonS3 + x-amz-checksum-crc64nvme: + - WGW3f7N9YdY= + x-amz-checksum-type: + - FULL_OBJECT x-amz-id-2: - - IWoQ6SVeiYrxxTKMcPKuY8Mq7mHLozgv0gXnPvmpa16cF2o4MXyrCY4VGoorS/44zj/uh8W+W5U= + - CSQN3WSmgQFD1kVKSc5dK6cZZ8VmgriL8uugfOsd06OSwH4WVG7l+GQwXDHJO241fB/Nu2rr76Yb+LybXp3GzxlbDEBQR8BM x-amz-request-id: - - SF9T747ADWQKMRPA + - TB24BZY4FG8XQCDG x-amz-server-side-encryption: - AES256 status: code: 200 message: OK - request: - body: '{"force_ocr": false}' + body: '{"force_ocr": false, "ocr_engine": "tess4"}' headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - - '20' + - '43' Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST - uri: https://api.dev.documentcloud.org/api/documents/20000280/process/ + uri: https://api.dev.documentcloud.org/api/documents/20000207/process/ response: body: string: '"OK"' @@ -241,7 +245,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:03 GMT + - Wed, 24 Sep 2025 16:10:20 GMT Referrer-Policy: - same-origin Server: @@ -261,18 +265,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000280/ + uri: https://api.dev.documentcloud.org/api/documents/20000207/ response: body: - string: '{"id":20000280,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000280-test","created_at":"2025-01-02T20:30:02.902480Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:03.200642Z","user":100000}' + string: '{"id":20000207,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000207-test/","created_at":"2025-09-24T16:10:19.737432Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:20.759697Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -283,13 +287,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:04 GMT + - Wed, 24 Sep 2025 16:10:21 GMT Referrer-Policy: - same-origin Server: @@ -309,18 +313,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000280/ + uri: https://api.dev.documentcloud.org/api/documents/20000207/ response: body: - string: '{"id":20000280,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000280-test","created_at":"2025-01-02T20:30:02.902480Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:05.286926Z","user":100000}' + string: '{"id":20000207,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000207-test/","created_at":"2025-09-24T16:10:19.737432Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:20.759697Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -331,13 +335,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:05 GMT + - Wed, 24 Sep 2025 16:10:22 GMT Referrer-Policy: - same-origin Server: @@ -357,18 +361,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000280/ + uri: https://api.dev.documentcloud.org/api/documents/20000207/ response: body: - string: '{"id":20000280,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000280-test","created_at":"2025-01-02T20:30:02.902480Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:05.286926Z","user":100000}' + string: '{"id":20000207,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000207-test/","created_at":"2025-09-24T16:10:19.737432Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:23.326594Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -379,13 +383,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:06 GMT + - Wed, 24 Sep 2025 16:10:23 GMT Referrer-Policy: - same-origin Server: @@ -405,18 +409,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000280/ + uri: https://api.dev.documentcloud.org/api/documents/20000207/ response: body: - string: '{"id":20000280,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000280-test","created_at":"2025-01-02T20:30:02.902480Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:05.286926Z","user":100000}' + string: '{"id":20000207,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000207-test/","created_at":"2025-09-24T16:10:19.737432Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:23.326594Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -427,13 +431,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:07 GMT + - Wed, 24 Sep 2025 16:10:24 GMT Referrer-Policy: - same-origin Server: @@ -453,18 +457,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000280/ + uri: https://api.dev.documentcloud.org/api/documents/20000207/ response: body: - string: '{"id":20000280,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000280-test","created_at":"2025-01-02T20:30:02.902480Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:05.286926Z","user":100000}' + string: '{"id":20000207,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000207-test/","created_at":"2025-09-24T16:10:19.737432Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:23.326594Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -475,13 +479,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:08 GMT + - Wed, 24 Sep 2025 16:10:25 GMT Referrer-Policy: - same-origin Server: @@ -501,18 +505,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000280/ + uri: https://api.dev.documentcloud.org/api/documents/20000207/ response: body: - string: '{"id":20000280,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000280-test","created_at":"2025-01-02T20:30:02.902480Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:05.286926Z","user":100000}' + string: '{"id":20000207,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000207-test/","created_at":"2025-09-24T16:10:19.737432Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:23.326594Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -523,13 +527,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:09 GMT + - Wed, 24 Sep 2025 16:10:26 GMT Referrer-Policy: - same-origin Server: @@ -549,18 +553,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000280/ + uri: https://api.dev.documentcloud.org/api/documents/20000207/ response: body: - string: '{"id":20000280,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000280-test","created_at":"2025-01-02T20:30:02.902480Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:05.286926Z","user":100000}' + string: '{"id":20000207,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000207-test/","created_at":"2025-09-24T16:10:19.737432Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:23.326594Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -571,13 +575,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:10 GMT + - Wed, 24 Sep 2025 16:10:27 GMT Referrer-Policy: - same-origin Server: @@ -597,18 +601,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000280/ + uri: https://api.dev.documentcloud.org/api/documents/20000207/ response: body: - string: '{"id":20000280,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000280-test","created_at":"2025-01-02T20:30:02.902480Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:05.286926Z","user":100000}' + string: '{"id":20000207,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000207-test/","created_at":"2025-09-24T16:10:19.737432Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:10:27.828933Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -619,157 +623,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:12 GMT - Referrer-Policy: - - same-origin - Server: - - nginx/1.25.2 - Vary: - - Cookie, Accept, Origin, Accept-Language - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000280/ - response: - body: - string: '{"id":20000280,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000280-test","created_at":"2025-01-02T20:30:02.902480Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:12.481024Z","user":100000}' - headers: - Allow: - - GET, PUT, PATCH, DELETE, HEAD, OPTIONS - Cache-Control: - - private, no-cache - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '687' - Content-Type: - - application/json - Cross-Origin-Opener-Policy: - - same-origin - Date: - - Thu, 02 Jan 2025 20:30:13 GMT - Referrer-Policy: - - same-origin - Server: - - nginx/1.25.2 - Vary: - - Cookie, Accept, Origin, Accept-Language - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000280/ - response: - body: - string: '{"id":20000280,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000280-test","created_at":"2025-01-02T20:30:02.902480Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:12.481024Z","user":100000}' - headers: - Allow: - - GET, PUT, PATCH, DELETE, HEAD, OPTIONS - Cache-Control: - - private, no-cache - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '687' - Content-Type: - - application/json - Cross-Origin-Opener-Policy: - - same-origin - Date: - - Thu, 02 Jan 2025 20:30:14 GMT - Referrer-Policy: - - same-origin - Server: - - nginx/1.25.2 - Vary: - - Cookie, Accept, Origin, Accept-Language - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000280/ - response: - body: - string: '{"id":20000280,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000280-test","created_at":"2025-01-02T20:30:02.902480Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:30:14.255673Z","user":100000}' - headers: - Allow: - - GET, PUT, PATCH, DELETE, HEAD, OPTIONS - Cache-Control: - - private, no-cache - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '687' - Content-Type: - - application/json - Cross-Origin-Opener-Policy: - - same-origin - Date: - - Thu, 02 Jan 2025 20:30:15 GMT + - Wed, 24 Sep 2025 16:10:28 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_documents/TestDocumentClient.test_upload_file_path.yaml b/tests/cassettes/test_documents/TestDocumentClient.test_upload_file_path.yaml index e4c727d..f1cc1ca 100644 --- a/tests/cassettes/test_documents/TestDocumentClient.test_upload_file_path.yaml +++ b/tests/cassettes/test_documents/TestDocumentClient.test_upload_file_path.yaml @@ -5,9 +5,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://api.dev.documentcloud.org/api/documents/ response: body: - string: '{"id":20000281,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000281-test","created_at":"2025-01-02T20:30:15.402511Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000281/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T203015Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=aff6ae1825e8d6ad7956f8acb272ec0865ef7d54573bfeec84e54be780d34118","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-01-02T20:30:15.402795Z","user":100000}' + string: '{"id":20000208,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000208-test/","created_at":"2025-09-24T16:10:28.959594Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000208/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T161028Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=43bf240c34ab230953bec7f191228f56fb093dfbd75857e6b85d32a079a76394","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-09-24T16:10:28.959721Z","user":100000}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -31,13 +31,13 @@ interactions: Content-Language: - en Content-Length: - - '977' + - '978' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:15 GMT + - Wed, 24 Sep 2025 16:10:29 GMT Referrer-Policy: - same-origin Server: @@ -173,15 +173,15 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Connection: - keep-alive Content-Length: - '6577' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: PUT - uri: https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000281/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T203015Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=aff6ae1825e8d6ad7956f8acb272ec0865ef7d54573bfeec84e54be780d34118 + uri: https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000208/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T161028Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=43bf240c34ab230953bec7f191228f56fb093dfbd75857e6b85d32a079a76394 response: body: string: '' @@ -189,39 +189,43 @@ interactions: Content-Length: - '0' Date: - - Thu, 02 Jan 2025 20:24:11 GMT + - Wed, 24 Sep 2025 16:10:30 GMT ETag: - '"b1e7f84f7fd7d908654b11f415651098"' Server: - AmazonS3 + x-amz-checksum-crc64nvme: + - WGW3f7N9YdY= + x-amz-checksum-type: + - FULL_OBJECT x-amz-id-2: - - mKzUDao1+SJTTglWpb0234nIReGZ3+9KiwKV0YBYxMemVCMTBrr6LgAyTCZhUK1vfSYV1/dAExI= + - 1+rtPMdnsroJuku695TAqtLwINnsbhTsHstwp0HZwwoO24I0eamDhGiyePEpdZVeFI3crl89IoRmq/ndJgBo1gqCuekOGKw5mYB8Y2uM9A0= x-amz-request-id: - - W764E8N9KG9WS2VQ + - 113156FB4ZVYHZHR x-amz-server-side-encryption: - AES256 status: code: 200 message: OK - request: - body: '{"force_ocr": false}' + body: '{"force_ocr": false, "ocr_engine": "tess4"}' headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - - '20' + - '43' Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST - uri: https://api.dev.documentcloud.org/api/documents/20000281/process/ + uri: https://api.dev.documentcloud.org/api/documents/20000208/process/ response: body: string: '"OK"' @@ -241,7 +245,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:15 GMT + - Wed, 24 Sep 2025 16:10:29 GMT Referrer-Policy: - same-origin Server: @@ -261,18 +265,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000281/ + uri: https://api.dev.documentcloud.org/api/documents/20000208/ response: body: - string: '{"id":20000281,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000281-test","created_at":"2025-01-02T20:30:15.402511Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:16.738570Z","user":100000}' + string: '{"id":20000208,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000208-test/","created_at":"2025-09-24T16:10:28.959594Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:29.955524Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -283,13 +287,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:16 GMT + - Wed, 24 Sep 2025 16:10:30 GMT Referrer-Policy: - same-origin Server: @@ -309,18 +313,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000281/ + uri: https://api.dev.documentcloud.org/api/documents/20000208/ response: body: - string: '{"id":20000281,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000281-test","created_at":"2025-01-02T20:30:15.402511Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:16.738570Z","user":100000}' + string: '{"id":20000208,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000208-test/","created_at":"2025-09-24T16:10:28.959594Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:29.955524Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -331,13 +335,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:17 GMT + - Wed, 24 Sep 2025 16:10:31 GMT Referrer-Policy: - same-origin Server: @@ -357,18 +361,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000281/ + uri: https://api.dev.documentcloud.org/api/documents/20000208/ response: body: - string: '{"id":20000281,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000281-test","created_at":"2025-01-02T20:30:15.402511Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:16.738570Z","user":100000}' + string: '{"id":20000208,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000208-test/","created_at":"2025-09-24T16:10:28.959594Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:32.545865Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -379,13 +383,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:19 GMT + - Wed, 24 Sep 2025 16:10:32 GMT Referrer-Policy: - same-origin Server: @@ -405,18 +409,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000281/ + uri: https://api.dev.documentcloud.org/api/documents/20000208/ response: body: - string: '{"id":20000281,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000281-test","created_at":"2025-01-02T20:30:15.402511Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:19.562995Z","user":100000}' + string: '{"id":20000208,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000208-test/","created_at":"2025-09-24T16:10:28.959594Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:32.545865Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -427,13 +431,13 @@ interactions: Content-Language: - en Content-Length: - - '687' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:20 GMT + - Wed, 24 Sep 2025 16:10:33 GMT Referrer-Policy: - same-origin Server: @@ -453,18 +457,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000281/ + uri: https://api.dev.documentcloud.org/api/documents/20000208/ response: body: - string: '{"id":20000281,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000281-test","created_at":"2025-01-02T20:30:15.402511Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:19.562995Z","user":100000}' + string: '{"id":20000208,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000208-test/","created_at":"2025-09-24T16:10:28.959594Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"611.97x791.97:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:10:34.512797Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -475,253 +479,13 @@ interactions: Content-Language: - en Content-Length: - - '687' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:21 GMT - Referrer-Policy: - - same-origin - Server: - - nginx/1.25.2 - Vary: - - Cookie, Accept, Origin, Accept-Language - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000281/ - response: - body: - string: '{"id":20000281,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000281-test","created_at":"2025-01-02T20:30:15.402511Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:19.562995Z","user":100000}' - headers: - Allow: - - GET, PUT, PATCH, DELETE, HEAD, OPTIONS - Cache-Control: - - private, no-cache - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '687' - Content-Type: - - application/json - Cross-Origin-Opener-Policy: - - same-origin - Date: - - Thu, 02 Jan 2025 20:30:22 GMT - Referrer-Policy: - - same-origin - Server: - - nginx/1.25.2 - Vary: - - Cookie, Accept, Origin, Accept-Language - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000281/ - response: - body: - string: '{"id":20000281,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000281-test","created_at":"2025-01-02T20:30:15.402511Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:19.562995Z","user":100000}' - headers: - Allow: - - GET, PUT, PATCH, DELETE, HEAD, OPTIONS - Cache-Control: - - private, no-cache - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '687' - Content-Type: - - application/json - Cross-Origin-Opener-Policy: - - same-origin - Date: - - Thu, 02 Jan 2025 20:30:23 GMT - Referrer-Policy: - - same-origin - Server: - - nginx/1.25.2 - Vary: - - Cookie, Accept, Origin, Accept-Language - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000281/ - response: - body: - string: '{"id":20000281,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000281-test","created_at":"2025-01-02T20:30:15.402511Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:19.562995Z","user":100000}' - headers: - Allow: - - GET, PUT, PATCH, DELETE, HEAD, OPTIONS - Cache-Control: - - private, no-cache - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '687' - Content-Type: - - application/json - Cross-Origin-Opener-Policy: - - same-origin - Date: - - Thu, 02 Jan 2025 20:30:24 GMT - Referrer-Policy: - - same-origin - Server: - - nginx/1.25.2 - Vary: - - Cookie, Accept, Origin, Accept-Language - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000281/ - response: - body: - string: '{"id":20000281,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000281-test","created_at":"2025-01-02T20:30:15.402511Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:19.562995Z","user":100000}' - headers: - Allow: - - GET, PUT, PATCH, DELETE, HEAD, OPTIONS - Cache-Control: - - private, no-cache - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '687' - Content-Type: - - application/json - Cross-Origin-Opener-Policy: - - same-origin - Date: - - Thu, 02 Jan 2025 20:30:25 GMT - Referrer-Policy: - - same-origin - Server: - - nginx/1.25.2 - Vary: - - Cookie, Accept, Origin, Accept-Language - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br - Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000281/ - response: - body: - string: '{"id":20000281,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000281-test","created_at":"2025-01-02T20:30:15.402511Z","data":{},"description":"","edit_access":true,"file_hash":"a718e87a363da29eabc5a847d2c74f76d3e8e89c","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"611.9716796875x791.9716796875:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:30:26.188500Z","user":100000}' - headers: - Allow: - - GET, PUT, PATCH, DELETE, HEAD, OPTIONS - Cache-Control: - - private, no-cache - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '687' - Content-Type: - - application/json - Cross-Origin-Opener-Policy: - - same-origin - Date: - - Thu, 02 Jan 2025 20:30:26 GMT + - Wed, 24 Sep 2025 16:10:34 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_documents/TestDocumentClient.test_upload_url.yaml b/tests/cassettes/test_documents/TestDocumentClient.test_upload_url.yaml index edc75b3..4d203d1 100644 --- a/tests/cassettes/test_documents/TestDocumentClient.test_upload_url.yaml +++ b/tests/cassettes/test_documents/TestDocumentClient.test_upload_url.yaml @@ -5,9 +5,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://api.dev.documentcloud.org/api/documents/ response: body: - string: '{"id":20000279,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000279-test","created_at":"2025-01-02T20:29:56.039211Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-01-02T20:29:56.039503Z","user":100000}' + string: '{"id":20000206,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000206-test/","created_at":"2025-09-24T16:10:11.953108Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-09-24T16:10:11.953322Z","user":100000}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -31,13 +31,13 @@ interactions: Content-Language: - en Content-Length: - - '615' + - '616' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:56 GMT + - Wed, 24 Sep 2025 16:10:12 GMT Referrer-Policy: - same-origin Server: @@ -57,18 +57,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000279/ + uri: https://api.dev.documentcloud.org/api/documents/20000206/ response: body: - string: '{"id":20000279,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000279-test","created_at":"2025-01-02T20:29:56.039211Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:56.629631Z","user":100000}' + string: '{"id":20000206,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000206-test/","created_at":"2025-09-24T16:10:11.953108Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:12.981656Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -79,13 +79,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:57 GMT + - Wed, 24 Sep 2025 16:10:13 GMT Referrer-Policy: - same-origin Server: @@ -105,18 +105,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000279/ + uri: https://api.dev.documentcloud.org/api/documents/20000206/ response: body: - string: '{"id":20000279,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000279-test","created_at":"2025-01-02T20:29:56.039211Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:57.643384Z","user":100000}' + string: '{"id":20000206,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000206-test/","created_at":"2025-09-24T16:10:11.953108Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:14.108990Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -127,13 +127,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:58 GMT + - Wed, 24 Sep 2025 16:10:14 GMT Referrer-Policy: - same-origin Server: @@ -153,18 +153,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000279/ + uri: https://api.dev.documentcloud.org/api/documents/20000206/ response: body: - string: '{"id":20000279,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000279-test","created_at":"2025-01-02T20:29:56.039211Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:57.643384Z","user":100000}' + string: '{"id":20000206,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000206-test/","created_at":"2025-09-24T16:10:11.953108Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:14.108990Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -175,13 +175,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:29:59 GMT + - Wed, 24 Sep 2025 16:10:15 GMT Referrer-Policy: - same-origin Server: @@ -201,18 +201,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000279/ + uri: https://api.dev.documentcloud.org/api/documents/20000206/ response: body: - string: '{"id":20000279,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000279-test","created_at":"2025-01-02T20:29:56.039211Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:29:57.643384Z","user":100000}' + string: '{"id":20000206,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000206-test/","created_at":"2025-09-24T16:10:11.953108Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:14.108990Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -223,13 +223,61 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:10:16 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000206/ + response: + body: + string: '{"id":20000206,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000206-test/","created_at":"2025-09-24T16:10:11.953108Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:16.960272Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:00 GMT + - Wed, 24 Sep 2025 16:10:17 GMT Referrer-Policy: - same-origin Server: @@ -249,18 +297,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000279/ + uri: https://api.dev.documentcloud.org/api/documents/20000206/ response: body: - string: '{"id":20000279,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000279-test","created_at":"2025-01-02T20:29:56.039211Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:00.444553Z","user":100000}' + string: '{"id":20000206,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000206-test/","created_at":"2025-09-24T16:10:11.953108Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:16.960272Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -271,13 +319,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:01 GMT + - Wed, 24 Sep 2025 16:10:18 GMT Referrer-Policy: - same-origin Server: @@ -297,18 +345,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000279/ + uri: https://api.dev.documentcloud.org/api/documents/20000206/ response: body: - string: '{"id":20000279,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000279-test","created_at":"2025-01-02T20:29:56.039211Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:30:02.496979Z","user":100000}' + string: '{"id":20000206,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000206-test/","created_at":"2025-09-24T16:10:11.953108Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:10:19.023185Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -319,13 +367,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:02 GMT + - Wed, 24 Sep 2025 16:10:19 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_documents/TestSection.test_create_delete.yaml b/tests/cassettes/test_documents/TestSection.test_create_delete.yaml index 1a423bf..a771292 100644 --- a/tests/cassettes/test_documents/TestSection.test_create_delete.yaml +++ b/tests/cassettes/test_documents/TestSection.test_create_delete.yaml @@ -5,9 +5,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://api.dev.documentcloud.org/api/documents/ response: body: - string: '{"id":20000285,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000285-test","created_at":"2025-01-02T20:30:35.626040Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-01-02T20:30:35.626273Z","user":100000}' + string: '{"id":20000212,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000212-test/","created_at":"2025-09-24T16:10:42.528690Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-09-24T16:10:42.528838Z","user":100000}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -31,13 +31,13 @@ interactions: Content-Language: - en Content-Length: - - '615' + - '616' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:35 GMT + - Wed, 24 Sep 2025 16:10:42 GMT Referrer-Policy: - same-origin Server: @@ -57,18 +57,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000285/ + uri: https://api.dev.documentcloud.org/api/documents/20000212/ response: body: - string: '{"id":20000285,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000285-test","created_at":"2025-01-02T20:30:35.626040Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:36.357759Z","user":100000}' + string: '{"id":20000212,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000212-test/","created_at":"2025-09-24T16:10:42.528690Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:43.395529Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -79,13 +79,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:36 GMT + - Wed, 24 Sep 2025 16:10:43 GMT Referrer-Policy: - same-origin Server: @@ -105,18 +105,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000285/ + uri: https://api.dev.documentcloud.org/api/documents/20000212/ response: body: - string: '{"id":20000285,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000285-test","created_at":"2025-01-02T20:30:35.626040Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:37.486343Z","user":100000}' + string: '{"id":20000212,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000212-test/","created_at":"2025-09-24T16:10:42.528690Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:44.494396Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -127,13 +127,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:37 GMT + - Wed, 24 Sep 2025 16:10:44 GMT Referrer-Policy: - same-origin Server: @@ -153,18 +153,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000285/ + uri: https://api.dev.documentcloud.org/api/documents/20000212/ response: body: - string: '{"id":20000285,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000285-test","created_at":"2025-01-02T20:30:35.626040Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:37.486343Z","user":100000}' + string: '{"id":20000212,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000212-test/","created_at":"2025-09-24T16:10:42.528690Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:44.494396Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -175,13 +175,397 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:10:45 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000212/ + response: + body: + string: '{"id":20000212,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000212-test/","created_at":"2025-09-24T16:10:42.528690Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:44.494396Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '617' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:10:46 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000212/ + response: + body: + string: '{"id":20000212,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000212-test/","created_at":"2025-09-24T16:10:42.528690Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:44.494396Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '617' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:10:48 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000212/ + response: + body: + string: '{"id":20000212,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000212-test/","created_at":"2025-09-24T16:10:42.528690Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:44.494396Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '617' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:10:49 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000212/ + response: + body: + string: '{"id":20000212,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000212-test/","created_at":"2025-09-24T16:10:42.528690Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:44.494396Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '617' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:10:50 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000212/ + response: + body: + string: '{"id":20000212,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000212-test/","created_at":"2025-09-24T16:10:42.528690Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:44.494396Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '617' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:10:51 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000212/ + response: + body: + string: '{"id":20000212,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000212-test/","created_at":"2025-09-24T16:10:42.528690Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:44.494396Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '617' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:10:52 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000212/ + response: + body: + string: '{"id":20000212,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000212-test/","created_at":"2025-09-24T16:10:42.528690Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:44.494396Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '617' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:10:53 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000212/ + response: + body: + string: '{"id":20000212,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000212-test/","created_at":"2025-09-24T16:10:42.528690Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:44.494396Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:38 GMT + - Wed, 24 Sep 2025 16:10:54 GMT Referrer-Policy: - same-origin Server: @@ -201,18 +585,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000285/ + uri: https://api.dev.documentcloud.org/api/documents/20000212/ response: body: - string: '{"id":20000285,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000285-test","created_at":"2025-01-02T20:30:35.626040Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:39.936842Z","user":100000}' + string: '{"id":20000212,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000212-test/","created_at":"2025-09-24T16:10:42.528690Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:55.367686Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -223,13 +607,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:40 GMT + - Wed, 24 Sep 2025 16:10:55 GMT Referrer-Policy: - same-origin Server: @@ -249,18 +633,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000285/ + uri: https://api.dev.documentcloud.org/api/documents/20000212/ response: body: - string: '{"id":20000285,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000285-test","created_at":"2025-01-02T20:30:35.626040Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:39.936842Z","user":100000}' + string: '{"id":20000212,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000212-test/","created_at":"2025-09-24T16:10:42.528690Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:55.367686Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -271,13 +655,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:41 GMT + - Wed, 24 Sep 2025 16:10:56 GMT Referrer-Policy: - same-origin Server: @@ -297,18 +681,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000285/ + uri: https://api.dev.documentcloud.org/api/documents/20000212/ response: body: - string: '{"id":20000285,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000285-test","created_at":"2025-01-02T20:30:35.626040Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:30:41.829920Z","user":100000}' + string: '{"id":20000212,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000212-test/","created_at":"2025-09-24T16:10:42.528690Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:10:57.651421Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -319,13 +703,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:42 GMT + - Wed, 24 Sep 2025 16:10:57 GMT Referrer-Policy: - same-origin Server: @@ -345,15 +729,15 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000285/sections/ + uri: https://api.dev.documentcloud.org/api/documents/20000212/sections/ response: body: string: '{"count":0,"next":null,"previous":null,"results":[]}' @@ -373,7 +757,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:42 GMT + - Wed, 24 Sep 2025 16:10:57 GMT Referrer-Policy: - same-origin Server: @@ -393,9 +777,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: @@ -403,12 +787,12 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST - uri: https://api.dev.documentcloud.org/api/documents/20000285/sections/ + uri: https://api.dev.documentcloud.org/api/documents/20000212/sections/ response: body: - string: '{"id":67,"page_number":0,"title":"Test Section"}' + string: '{"id":49,"page_number":0,"title":"Test Section"}' headers: Allow: - GET, POST, HEAD, OPTIONS @@ -425,7 +809,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:42 GMT + - Wed, 24 Sep 2025 16:10:57 GMT Referrer-Policy: - same-origin Server: @@ -445,18 +829,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000285/sections/ + uri: https://api.dev.documentcloud.org/api/documents/20000212/sections/ response: body: - string: '{"count":1,"next":null,"previous":null,"results":[{"id":67,"page_number":0,"title":"Test + string: '{"count":1,"next":null,"previous":null,"results":[{"id":49,"page_number":0,"title":"Test Section"}]}' headers: Allow: @@ -474,7 +858,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:42 GMT + - Wed, 24 Sep 2025 16:10:58 GMT Referrer-Policy: - same-origin Server: @@ -494,9 +878,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: @@ -504,9 +888,9 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST - uri: https://api.dev.documentcloud.org/api/documents/20000285/sections/ + uri: https://api.dev.documentcloud.org/api/documents/20000212/sections/ response: body: string: '{"page_number":["You may not add more than one section to a page"]}' @@ -526,7 +910,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:42 GMT + - Wed, 24 Sep 2025 16:10:58 GMT Referrer-Policy: - same-origin Server: @@ -546,17 +930,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/documents/20000285/sections/67/ + uri: https://api.dev.documentcloud.org/api/documents/20000212/sections/49/ response: body: string: '' @@ -574,7 +958,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:42 GMT + - Wed, 24 Sep 2025 16:10:58 GMT Referrer-Policy: - same-origin Server: @@ -594,15 +978,15 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000285/sections/ + uri: https://api.dev.documentcloud.org/api/documents/20000212/sections/ response: body: string: '{"count":0,"next":null,"previous":null,"results":[]}' @@ -622,7 +1006,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:42 GMT + - Wed, 24 Sep 2025 16:10:58 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_documents/TestSection.test_page.yaml b/tests/cassettes/test_documents/TestSection.test_page.yaml index 3d2fff1..64d2700 100644 --- a/tests/cassettes/test_documents/TestSection.test_page.yaml +++ b/tests/cassettes/test_documents/TestSection.test_page.yaml @@ -5,18 +5,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000273/sections/ + uri: https://api.dev.documentcloud.org/api/documents/20000200/sections/ response: body: - string: '{"count":1,"next":null,"previous":null,"results":[{"id":65,"page_number":0,"title":"Test + string: '{"count":1,"next":null,"previous":null,"results":[{"id":47,"page_number":0,"title":"Test Section"}]}' headers: Allow: @@ -34,7 +34,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:42 GMT + - Wed, 24 Sep 2025 16:10:58 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_documents/TestSection.test_str.yaml b/tests/cassettes/test_documents/TestSection.test_str.yaml index 3d2fff1..64d2700 100644 --- a/tests/cassettes/test_documents/TestSection.test_str.yaml +++ b/tests/cassettes/test_documents/TestSection.test_str.yaml @@ -5,18 +5,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000273/sections/ + uri: https://api.dev.documentcloud.org/api/documents/20000200/sections/ response: body: - string: '{"count":1,"next":null,"previous":null,"results":[{"id":65,"page_number":0,"title":"Test + string: '{"count":1,"next":null,"previous":null,"results":[{"id":47,"page_number":0,"title":"Test Section"}]}' headers: Allow: @@ -34,7 +34,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:42 GMT + - Wed, 24 Sep 2025 16:10:58 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_organizations/test_organization.yaml b/tests/cassettes/test_organizations/test_organization.yaml index 7e0f58f..0695c2a 100644 --- a/tests/cassettes/test_organizations/test_organization.yaml +++ b/tests/cassettes/test_organizations/test_organization.yaml @@ -5,18 +5,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/users/100000/ response: body: - string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","is_staff":true,"name":"test-user","organization":10004,"organizations":[10000,10004],"admin_organizations":[10000,10004],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true}' + string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","name":"hello + there","organization":10000,"organizations":[10001,10000],"admin_organizations":[10001,10000],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true}' headers: Allow: - GET, PUT, PATCH, HEAD, OPTIONS @@ -25,13 +26,13 @@ interactions: Content-Language: - en Content-Length: - - '306' + - '292' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:43 GMT + - Wed, 24 Sep 2025 16:10:58 GMT Referrer-Policy: - same-origin Server: @@ -51,19 +52,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/organizations/10004/ + uri: https://api.dev.documentcloud.org/api/organizations/10000/ response: body: - string: '{"id":10004,"avatar_url":"https://dev.squarelet.com/static/images/avatars/organization.png","individual":false,"name":"test - org","slug":"test-org","uuid":"155d99ef-e77d-4a8e-8db1-1c49c8916e87","monthly_credits":0,"purchased_credits":0,"credit_reset_date":null,"monthly_credit_allowance":0,"plan":"Free"}' + string: '{"id":10000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/organization.png","individual":false,"name":"Test + Unverified Org","slug":"test-unverified-org","uuid":"49ebf55b-c60a-4818-85b5-8005ed9e97d5","monthly_credits":0,"purchased_credits":0,"credit_reset_date":null,"monthly_credit_allowance":0,"plan":"Free"}' headers: Allow: - GET, HEAD, OPTIONS @@ -72,13 +73,13 @@ interactions: Content-Language: - en Content-Length: - - '303' + - '325' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:43 GMT + - Wed, 24 Sep 2025 16:10:58 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_projects/TestProject.test_document_list_paginate.yaml b/tests/cassettes/test_projects/TestProject.test_document_list_paginate.yaml index ae78e2e..494394c 100644 --- a/tests/cassettes/test_projects/TestProject.test_document_list_paginate.yaml +++ b/tests/cassettes/test_projects/TestProject.test_document_list_paginate.yaml @@ -5,18 +5,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/projects/200070/documents/?per_page=1&expand=document + uri: https://api.dev.documentcloud.org/api/projects/200056/documents/?per_page=1&expand=document response: body: - string: '{"count":3,"next":"https://api.dev.documentcloud.org/api/projects/200070/documents/?expand=document&page=2&per_page=1","previous":null,"results":[{"document":{"id":20000286,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000286-test","created_at":"2025-01-02T20:30:43.208077Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000286/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T203050Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=12be8a8bd870cc0509e45bbf6f40f4215aa86b19826b2a957d409cf4abb20cf5","projects":[200070],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:30:50.124619Z","user":100000},"edit_access":true}]}' + string: '{"count":3,"next":"https://api.dev.documentcloud.org/api/projects/200056/documents/?expand=document&page=2&per_page=1","previous":null,"results":[{"document":{"id":20000213,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000213-test/","created_at":"2025-09-24T16:10:58.629991Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000213/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T161107Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=28ae3d35c34db1b148cd4c6424cf1a8f11a59ecaa8b30b68c0d2a76d729115d2","projects":[200056],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:11:07.692917Z","user":100000},"edit_access":true}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -27,13 +27,13 @@ interactions: Content-Language: - en Content-Length: - - '1217' + - '1220' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:50 GMT + - Wed, 24 Sep 2025 16:11:07 GMT Referrer-Policy: - same-origin Server: @@ -53,19 +53,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/projects/200070/documents/?expand=document&page=2&per_page=1 + uri: https://api.dev.documentcloud.org/api/projects/200056/documents/?expand=document&page=2&per_page=1 response: body: - string: '{"count":3,"next":"https://api.dev.documentcloud.org/api/projects/200070/documents/?expand=document&page=3&per_page=1","previous":"https://api.dev.documentcloud.org/api/projects/200070/documents/?expand=document&per_page=1","results":[{"document":{"id":20000273,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000273-test","created_at":"2025-01-02T20:28:57.927312Z","data":{"_tag":["document"]},"description":"A - simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000273/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T203050Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=40e2eb8087e1ca8d8615724dc3e2d25e79ee154c0f1b44c7cdb7171c43d1cb87","projects":[200070],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"MuckRock","status":"success","title":"test","updated_at":"2025-01-02T20:30:50.124619Z","user":100000},"edit_access":true}]}' + string: '{"count":3,"next":"https://api.dev.documentcloud.org/api/projects/200056/documents/?expand=document&page=3&per_page=1","previous":"https://api.dev.documentcloud.org/api/projects/200056/documents/?expand=document&per_page=1","results":[{"document":{"id":20000200,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000200-test/","created_at":"2025-09-24T16:09:01.460974Z","data":{"_tag":["document"]},"description":"A + simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000200/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T161108Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=07fb49d41d6e1102bf4168c3ab3002f1aec411579de9c8306282b8c12720d086","projects":[200056],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"MuckRock","status":"success","title":"test","updated_at":"2025-09-24T16:11:07.692917Z","user":100000},"edit_access":true}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -76,13 +76,13 @@ interactions: Content-Language: - en Content-Length: - - '1427' + - '1430' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:50 GMT + - Wed, 24 Sep 2025 16:11:08 GMT Referrer-Policy: - same-origin Server: @@ -102,18 +102,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/projects/200070/documents/?expand=document&page=3&per_page=1 + uri: https://api.dev.documentcloud.org/api/projects/200056/documents/?expand=document&page=3&per_page=1 response: body: - string: '{"count":3,"next":null,"previous":"https://api.dev.documentcloud.org/api/projects/200070/documents/?expand=document&page=2&per_page=1","results":[{"document":{"id":20000272,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000272-test","created_at":"2025-01-02T20:28:50.994529Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000272/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T203050Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=b9076684203128149f6377911843979f0a6ce33518e63a3f574fe3f498adf503","projects":[200070],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:30:50.124619Z","user":100000},"edit_access":true}]}' + string: '{"count":3,"next":null,"previous":"https://api.dev.documentcloud.org/api/projects/200056/documents/?expand=document&page=2&per_page=1","results":[{"document":{"id":20000199,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000199-test/","created_at":"2025-09-24T16:08:49.270524Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000199/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T161108Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=18b6e2269a41c0686c167b5e945289cd1f39f81bcf7a49bc45d0b88539058889","projects":[200056],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:11:07.692917Z","user":100000},"edit_access":true}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -124,13 +124,13 @@ interactions: Content-Language: - en Content-Length: - - '1217' + - '1220' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:50 GMT + - Wed, 24 Sep 2025 16:11:08 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_projects/TestProject.test_get_document.yaml b/tests/cassettes/test_projects/TestProject.test_get_document.yaml index 0b14874..8ede150 100644 --- a/tests/cassettes/test_projects/TestProject.test_get_document.yaml +++ b/tests/cassettes/test_projects/TestProject.test_get_document.yaml @@ -5,15 +5,15 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/projects/200070/documents/20000273?expand=document + uri: https://api.dev.documentcloud.org/api/projects/200056/documents/20000200?expand=document response: body: string: '' @@ -27,9 +27,9 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:50 GMT + - Wed, 24 Sep 2025 16:11:08 GMT Location: - - /api/projects/200070/documents/20000273/?expand=document + - /api/projects/200056/documents/20000200/?expand=document Referrer-Policy: - same-origin Server: @@ -49,19 +49,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/projects/200070/documents/20000273/?expand=document + uri: https://api.dev.documentcloud.org/api/projects/200056/documents/20000200/?expand=document response: body: - string: '{"document":{"id":20000273,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000273-test","created_at":"2025-01-02T20:28:57.927312Z","data":{"_tag":["document"]},"description":"A - simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000273/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T203050Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=40e2eb8087e1ca8d8615724dc3e2d25e79ee154c0f1b44c7cdb7171c43d1cb87","projects":[200070],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"MuckRock","status":"success","title":"test","updated_at":"2025-01-02T20:30:50.124619Z","user":100000},"edit_access":true}' + string: '{"document":{"id":20000200,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000200-test/","created_at":"2025-09-24T16:09:01.460974Z","data":{"_tag":["document"]},"description":"A + simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000200/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T161108Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=07fb49d41d6e1102bf4168c3ab3002f1aec411579de9c8306282b8c12720d086","projects":[200056],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"MuckRock","status":"success","title":"test","updated_at":"2025-09-24T16:11:07.692917Z","user":100000},"edit_access":true}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -72,13 +72,13 @@ interactions: Content-Language: - en Content-Length: - - '1190' + - '1193' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:50 GMT + - Wed, 24 Sep 2025 16:11:08 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_projects/TestProject.test_get_document_missing.yaml b/tests/cassettes/test_projects/TestProject.test_get_document_missing.yaml index 1d40c51..a431995 100644 --- a/tests/cassettes/test_projects/TestProject.test_get_document_missing.yaml +++ b/tests/cassettes/test_projects/TestProject.test_get_document_missing.yaml @@ -5,9 +5,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://api.dev.documentcloud.org/api/documents/ response: body: - string: '{"id":20000287,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000287-test","created_at":"2025-01-02T20:30:50.890974Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-01-02T20:30:50.891274Z","user":100000}' + string: '{"id":20000214,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000214-test/","created_at":"2025-09-24T16:11:08.354360Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-09-24T16:11:08.354641Z","user":100000}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -31,13 +31,13 @@ interactions: Content-Language: - en Content-Length: - - '615' + - '616' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:50 GMT + - Wed, 24 Sep 2025 16:11:08 GMT Referrer-Policy: - same-origin Server: @@ -57,66 +57,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br - Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg - Connection: - - keep-alive - User-Agent: - - python-requests/2.32.3 - method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000287/ - response: - body: - string: '{"id":20000287,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000287-test","created_at":"2025-01-02T20:30:50.890974Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:51.517429Z","user":100000}' - headers: - Allow: - - GET, PUT, PATCH, DELETE, HEAD, OPTIONS - Cache-Control: - - private, no-cache - Connection: - - keep-alive - Content-Language: - - en - Content-Length: - - '616' - Content-Type: - - application/json - Cross-Origin-Opener-Policy: - - same-origin - Date: - - Thu, 02 Jan 2025 20:30:52 GMT - Referrer-Policy: - - same-origin - Server: - - nginx/1.25.2 - Vary: - - Cookie, Accept, Origin, Accept-Language - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000287/ + uri: https://api.dev.documentcloud.org/api/documents/20000214/ response: body: - string: '{"id":20000287,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000287-test","created_at":"2025-01-02T20:30:50.890974Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:52.631266Z","user":100000}' + string: '{"id":20000214,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000214-test/","created_at":"2025-09-24T16:11:08.354360Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:11:09.323531Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -127,13 +79,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:53 GMT + - Wed, 24 Sep 2025 16:11:10 GMT Referrer-Policy: - same-origin Server: @@ -153,18 +105,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000287/ + uri: https://api.dev.documentcloud.org/api/documents/20000214/ response: body: - string: '{"id":20000287,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000287-test","created_at":"2025-01-02T20:30:50.890974Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:52.631266Z","user":100000}' + string: '{"id":20000214,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000214-test/","created_at":"2025-09-24T16:11:08.354360Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:11:10.469009Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -175,13 +127,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:54 GMT + - Wed, 24 Sep 2025 16:11:11 GMT Referrer-Policy: - same-origin Server: @@ -201,18 +153,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000287/ + uri: https://api.dev.documentcloud.org/api/documents/20000214/ response: body: - string: '{"id":20000287,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000287-test","created_at":"2025-01-02T20:30:50.890974Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:52.631266Z","user":100000}' + string: '{"id":20000214,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000214-test/","created_at":"2025-09-24T16:11:08.354360Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:11:10.469009Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -223,13 +175,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:55 GMT + - Wed, 24 Sep 2025 16:11:12 GMT Referrer-Policy: - same-origin Server: @@ -249,18 +201,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000287/ + uri: https://api.dev.documentcloud.org/api/documents/20000214/ response: body: - string: '{"id":20000287,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000287-test","created_at":"2025-01-02T20:30:50.890974Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:55.379986Z","user":100000}' + string: '{"id":20000214,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000214-test/","created_at":"2025-09-24T16:11:08.354360Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:11:13.390533Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -271,13 +223,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:56 GMT + - Wed, 24 Sep 2025 16:11:13 GMT Referrer-Policy: - same-origin Server: @@ -297,18 +249,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000287/ + uri: https://api.dev.documentcloud.org/api/documents/20000214/ response: body: - string: '{"id":20000287,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000287-test","created_at":"2025-01-02T20:30:50.890974Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:55.379986Z","user":100000}' + string: '{"id":20000214,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000214-test/","created_at":"2025-09-24T16:11:08.354360Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:11:13.390533Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -319,13 +271,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:57 GMT + - Wed, 24 Sep 2025 16:11:14 GMT Referrer-Policy: - same-origin Server: @@ -345,18 +297,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000287/ + uri: https://api.dev.documentcloud.org/api/documents/20000214/ response: body: - string: '{"id":20000287,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000287-test","created_at":"2025-01-02T20:30:50.890974Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:30:57.496773Z","user":100000}' + string: '{"id":20000214,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000214-test/","created_at":"2025-09-24T16:11:08.354360Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:11:15.441927Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -367,13 +319,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:58 GMT + - Wed, 24 Sep 2025 16:11:15 GMT Referrer-Policy: - same-origin Server: @@ -393,15 +345,15 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/projects/200070/documents/20000287?expand=document + uri: https://api.dev.documentcloud.org/api/projects/200056/documents/20000214?expand=document response: body: string: '' @@ -415,9 +367,9 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:58 GMT + - Wed, 24 Sep 2025 16:11:15 GMT Location: - - /api/projects/200070/documents/20000287/?expand=document + - /api/projects/200056/documents/20000214/?expand=document Referrer-Policy: - same-origin Server: @@ -437,15 +389,15 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/projects/200070/documents/20000287/?expand=document + uri: https://api.dev.documentcloud.org/api/projects/200056/documents/20000214/?expand=document response: body: string: '{"detail":"Not found."}' @@ -465,7 +417,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:58 GMT + - Wed, 24 Sep 2025 16:11:16 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_projects/TestProject.test_save.yaml b/tests/cassettes/test_projects/TestProject.test_save.yaml index ca21d87..bf87112 100644 --- a/tests/cassettes/test_projects/TestProject.test_save.yaml +++ b/tests/cassettes/test_projects/TestProject.test_save.yaml @@ -5,9 +5,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://api.dev.documentcloud.org/api/documents/ response: body: - string: '{"id":20000286,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000286-test","created_at":"2025-01-02T20:30:43.208077Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-01-02T20:30:43.208399Z","user":100000}' + string: '{"id":20000213,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000213-test/","created_at":"2025-09-24T16:10:58.629991Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-09-24T16:10:58.630254Z","user":100000}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -31,13 +31,13 @@ interactions: Content-Language: - en Content-Length: - - '615' + - '616' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:43 GMT + - Wed, 24 Sep 2025 16:10:58 GMT Referrer-Policy: - same-origin Server: @@ -57,18 +57,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000286/ + uri: https://api.dev.documentcloud.org/api/documents/20000213/ response: body: - string: '{"id":20000286,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000286-test","created_at":"2025-01-02T20:30:43.208077Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:43.858959Z","user":100000}' + string: '{"id":20000213,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000213-test/","created_at":"2025-09-24T16:10:58.629991Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:10:59.623685Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -79,13 +79,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:44 GMT + - Wed, 24 Sep 2025 16:10:59 GMT Referrer-Policy: - same-origin Server: @@ -105,18 +105,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000286/ + uri: https://api.dev.documentcloud.org/api/documents/20000213/ response: body: - string: '{"id":20000286,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000286-test","created_at":"2025-01-02T20:30:43.208077Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:44.877421Z","user":100000}' + string: '{"id":20000213,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000213-test/","created_at":"2025-09-24T16:10:58.629991Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:11:00.774501Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -127,13 +127,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:45 GMT + - Wed, 24 Sep 2025 16:11:00 GMT Referrer-Policy: - same-origin Server: @@ -153,18 +153,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000286/ + uri: https://api.dev.documentcloud.org/api/documents/20000213/ response: body: - string: '{"id":20000286,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000286-test","created_at":"2025-01-02T20:30:43.208077Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:44.877421Z","user":100000}' + string: '{"id":20000213,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000213-test/","created_at":"2025-09-24T16:10:58.629991Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:11:00.774501Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -175,13 +175,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:46 GMT + - Wed, 24 Sep 2025 16:11:02 GMT Referrer-Policy: - same-origin Server: @@ -201,18 +201,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000286/ + uri: https://api.dev.documentcloud.org/api/documents/20000213/ response: body: - string: '{"id":20000286,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000286-test","created_at":"2025-01-02T20:30:43.208077Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:44.877421Z","user":100000}' + string: '{"id":20000213,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000213-test/","created_at":"2025-09-24T16:10:58.629991Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:11:00.774501Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -223,13 +223,109 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:11:03 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000213/ + response: + body: + string: '{"id":20000213,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000213-test/","created_at":"2025-09-24T16:10:58.629991Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:11:00.774501Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '617' + Content-Type: + - application/json + Cross-Origin-Opener-Policy: + - same-origin + Date: + - Wed, 24 Sep 2025 16:11:04 GMT + Referrer-Policy: + - same-origin + Server: + - nginx/1.25.2 + Vary: + - Cookie, Accept, Origin, Accept-Language + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Authorization: + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q + Connection: + - keep-alive + User-Agent: + - python-requests/2.32.5 + method: GET + uri: https://api.dev.documentcloud.org/api/documents/20000213/ + response: + body: + string: '{"id":20000213,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000213-test/","created_at":"2025-09-24T16:10:58.629991Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:11:04.234321Z","user":100000}' + headers: + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + Cache-Control: + - private, no-cache + Connection: + - keep-alive + Content-Language: + - en + Content-Length: + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:47 GMT + - Wed, 24 Sep 2025 16:11:05 GMT Referrer-Policy: - same-origin Server: @@ -249,18 +345,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000286/ + uri: https://api.dev.documentcloud.org/api/documents/20000213/ response: body: - string: '{"id":20000286,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000286-test","created_at":"2025-01-02T20:30:43.208077Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:30:47.804328Z","user":100000}' + string: '{"id":20000213,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000213-test/","created_at":"2025-09-24T16:10:58.629991Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:11:04.234321Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -271,13 +367,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:48 GMT + - Wed, 24 Sep 2025 16:11:06 GMT Referrer-Policy: - same-origin Server: @@ -297,18 +393,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000286/ + uri: https://api.dev.documentcloud.org/api/documents/20000213/ response: body: - string: '{"id":20000286,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000286-test","created_at":"2025-01-02T20:30:43.208077Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:30:49.638379Z","user":100000}' + string: '{"id":20000213,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000213-test/","created_at":"2025-09-24T16:10:58.629991Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:11:06.758469Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -319,13 +415,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:49 GMT + - Wed, 24 Sep 2025 16:11:07 GMT Referrer-Policy: - same-origin Server: @@ -341,14 +437,14 @@ interactions: message: OK - request: body: '{"description": "This is a project for testing", "private": true, "title": - "This is a project for testing de8d0fca-731e-4c53-a143-252dd93ddc3a"}' + "This is a project for testing 45fa0a7c-cdbc-479b-9c8f-c228b89681e7"}' headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: @@ -356,14 +452,14 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: PUT - uri: https://api.dev.documentcloud.org/api/projects/200070/ + uri: https://api.dev.documentcloud.org/api/projects/200056/ response: body: - string: '{"id":200070,"created_at":"2025-01-02T20:28:57.704656Z","description":"This - is a project for testing","edit_access":true,"add_remove_access":true,"private":true,"slug":"this-is-a-project-for-testing-de8d0fca-731e-4c53-a143-252dd93ddc3a","title":"This - is a project for testing de8d0fca-731e-4c53-a143-252dd93ddc3a","updated_at":"2025-01-02T20:30:49.886208Z","user":100000,"pinned":true}' + string: '{"id":200056,"created_at":"2025-09-24T16:09:01.241768Z","description":"This + is a project for testing","edit_access":true,"add_remove_access":true,"private":true,"slug":"this-is-a-project-for-testing-45fa0a7c-cdbc-479b-9c8f-c228b89681e7","title":"This + is a project for testing 45fa0a7c-cdbc-479b-9c8f-c228b89681e7","updated_at":"2025-09-24T16:11:07.457177Z","user":100000,"pinned":true}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -378,7 +474,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:49 GMT + - Wed, 24 Sep 2025 16:11:07 GMT Referrer-Policy: - same-origin Server: @@ -398,9 +494,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: @@ -408,9 +504,9 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: PUT - uri: https://api.dev.documentcloud.org/api/projects/200070/documents/ + uri: https://api.dev.documentcloud.org/api/projects/200056/documents/ response: body: string: '[]' @@ -430,7 +526,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:50 GMT + - Wed, 24 Sep 2025 16:11:07 GMT Referrer-Policy: - same-origin Server: @@ -445,14 +541,14 @@ interactions: code: 200 message: OK - request: - body: '[{"document": 20000273}, {"document": 20000272}, {"document": 20000286}]' + body: '[{"document": 20000200}, {"document": 20000199}, {"document": 20000213}]' headers: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: @@ -460,12 +556,12 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: PATCH - uri: https://api.dev.documentcloud.org/api/projects/200070/documents/ + uri: https://api.dev.documentcloud.org/api/projects/200056/documents/ response: body: - string: '[{"document":20000273,"edit_access":true},{"document":20000272,"edit_access":true},{"document":20000286,"edit_access":true}]' + string: '[{"document":20000200,"edit_access":true},{"document":20000199,"edit_access":true},{"document":20000213,"edit_access":true}]' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -482,7 +578,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:50 GMT + - Wed, 24 Sep 2025 16:11:07 GMT Referrer-Policy: - same-origin Server: @@ -502,20 +598,20 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/projects/200070/ + uri: https://api.dev.documentcloud.org/api/projects/200056/ response: body: - string: '{"id":200070,"created_at":"2025-01-02T20:28:57.704656Z","description":"This - is a project for testing","edit_access":true,"add_remove_access":true,"private":true,"slug":"this-is-a-project-for-testing-de8d0fca-731e-4c53-a143-252dd93ddc3a","title":"This - is a project for testing de8d0fca-731e-4c53-a143-252dd93ddc3a","updated_at":"2025-01-02T20:30:49.886208Z","user":100000,"pinned":true}' + string: '{"id":200056,"created_at":"2025-09-24T16:09:01.241768Z","description":"This + is a project for testing","edit_access":true,"add_remove_access":true,"private":true,"slug":"this-is-a-project-for-testing-45fa0a7c-cdbc-479b-9c8f-c228b89681e7","title":"This + is a project for testing 45fa0a7c-cdbc-479b-9c8f-c228b89681e7","updated_at":"2025-09-24T16:11:07.457177Z","user":100000,"pinned":true}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -530,7 +626,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:50 GMT + - Wed, 24 Sep 2025 16:11:07 GMT Referrer-Policy: - same-origin Server: @@ -550,19 +646,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/projects/200070/documents/?per_page=100&expand=document + uri: https://api.dev.documentcloud.org/api/projects/200056/documents/?per_page=100&expand=document response: body: - string: '{"count":3,"next":null,"previous":null,"results":[{"document":{"id":20000286,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000286-test","created_at":"2025-01-02T20:30:43.208077Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000286/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T203050Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=12be8a8bd870cc0509e45bbf6f40f4215aa86b19826b2a957d409cf4abb20cf5","projects":[200070],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:30:50.124619Z","user":100000},"edit_access":true},{"document":{"id":20000273,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000273-test","created_at":"2025-01-02T20:28:57.927312Z","data":{"_tag":["document"]},"description":"A - simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000273/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T203050Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=40e2eb8087e1ca8d8615724dc3e2d25e79ee154c0f1b44c7cdb7171c43d1cb87","projects":[200070],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"MuckRock","status":"success","title":"test","updated_at":"2025-01-02T20:30:50.124619Z","user":100000},"edit_access":true},{"document":{"id":20000272,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000272-test","created_at":"2025-01-02T20:28:50.994529Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000272/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T203050Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=b9076684203128149f6377911843979f0a6ce33518e63a3f574fe3f498adf503","projects":[200070],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:30:50.124619Z","user":100000},"edit_access":true}]}' + string: '{"count":3,"next":null,"previous":null,"results":[{"document":{"id":20000213,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000213-test/","created_at":"2025-09-24T16:10:58.629991Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000213/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T161107Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=28ae3d35c34db1b148cd4c6424cf1a8f11a59ecaa8b30b68c0d2a76d729115d2","projects":[200056],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:11:07.692917Z","user":100000},"edit_access":true},{"document":{"id":20000200,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000200-test/","created_at":"2025-09-24T16:09:01.460974Z","data":{"_tag":["document"]},"description":"A + simple test document","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000200/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T161107Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=31d748fb50612c089ffcda5c447bcc04fe64b57689009c38f7512fe617f5fbab","projects":[200056],"publish_at":null,"published_url":"https://www.example.com/article/test.pdf","related_article":"https://www.example.com/article/","revision_control":false,"slug":"test","source":"MuckRock","status":"success","title":"test","updated_at":"2025-09-24T16:11:07.692917Z","user":100000},"edit_access":true},{"document":{"id":20000199,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000199-test/","created_at":"2025-09-24T16:08:49.270524Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000199/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250924%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250924T161107Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=839e62988534826f30cc27df6347b77fe80ed300420b70b14b3990384775e6f6","projects":[200056],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:11:07.692917Z","user":100000},"edit_access":true}]}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -573,13 +669,13 @@ interactions: Content-Language: - en Content-Length: - - '3382' + - '3391' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:50 GMT + - Wed, 24 Sep 2025 16:11:07 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_projects/TestProjectClient.test_get_by_id.yaml b/tests/cassettes/test_projects/TestProjectClient.test_get_by_id.yaml index 639ee3b..ac9e807 100644 --- a/tests/cassettes/test_projects/TestProjectClient.test_get_by_id.yaml +++ b/tests/cassettes/test_projects/TestProjectClient.test_get_by_id.yaml @@ -5,20 +5,20 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/projects/200070/ + uri: https://api.dev.documentcloud.org/api/projects/200056/ response: body: - string: '{"id":200070,"created_at":"2025-01-02T20:28:57.704656Z","description":"This - is a project for testing","edit_access":true,"add_remove_access":true,"private":true,"slug":"this-is-a-project-for-testing-de8d0fca-731e-4c53-a143-252dd93ddc3a","title":"This - is a project for testing de8d0fca-731e-4c53-a143-252dd93ddc3a","updated_at":"2025-01-02T20:30:49.886208Z","user":100000,"pinned":true}' + string: '{"id":200056,"created_at":"2025-09-24T16:09:01.241768Z","description":"This + is a project for testing","edit_access":true,"add_remove_access":true,"private":true,"slug":"this-is-a-project-for-testing-45fa0a7c-cdbc-479b-9c8f-c228b89681e7","title":"This + is a project for testing 45fa0a7c-cdbc-479b-9c8f-c228b89681e7","updated_at":"2025-09-24T16:11:07.457177Z","user":100000,"pinned":true}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -33,7 +33,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:59 GMT + - Wed, 24 Sep 2025 16:11:16 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_projects/TestProjectClient.test_get_by_title.yaml b/tests/cassettes/test_projects/TestProjectClient.test_get_by_title.yaml index 7aa08c0..b378fae 100644 --- a/tests/cassettes/test_projects/TestProjectClient.test_get_by_title.yaml +++ b/tests/cassettes/test_projects/TestProjectClient.test_get_by_title.yaml @@ -5,20 +5,20 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/projects/?title=This+is+a+project+for+testing+de8d0fca-731e-4c53-a143-252dd93ddc3a&user=100000 + uri: https://api.dev.documentcloud.org/api/projects/?title=This+is+a+project+for+testing+45fa0a7c-cdbc-479b-9c8f-c228b89681e7&user=100000 response: body: - string: '{"count":1,"next":null,"previous":null,"results":[{"id":200070,"created_at":"2025-01-02T20:28:57.704656Z","description":"This - is a project for testing","edit_access":true,"add_remove_access":true,"private":true,"slug":"this-is-a-project-for-testing-de8d0fca-731e-4c53-a143-252dd93ddc3a","title":"This - is a project for testing de8d0fca-731e-4c53-a143-252dd93ddc3a","updated_at":"2025-01-02T20:30:49.886208Z","user":100000,"pinned":true}]}' + string: '{"count":1,"next":null,"previous":null,"results":[{"id":200056,"created_at":"2025-09-24T16:09:01.241768Z","description":"This + is a project for testing","edit_access":true,"add_remove_access":true,"private":true,"slug":"this-is-a-project-for-testing-45fa0a7c-cdbc-479b-9c8f-c228b89681e7","title":"This + is a project for testing 45fa0a7c-cdbc-479b-9c8f-c228b89681e7","updated_at":"2025-09-24T16:11:07.457177Z","user":100000,"pinned":true}]}' headers: Allow: - GET, POST, HEAD, OPTIONS @@ -33,7 +33,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:59 GMT + - Wed, 24 Sep 2025 16:11:18 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_projects/TestProjectClient.test_get_by_title_multiple.yaml b/tests/cassettes/test_projects/TestProjectClient.test_get_by_title_multiple.yaml index 844d23b..c848b7f 100644 --- a/tests/cassettes/test_projects/TestProjectClient.test_get_by_title_multiple.yaml +++ b/tests/cassettes/test_projects/TestProjectClient.test_get_by_title_multiple.yaml @@ -5,9 +5,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://api.dev.documentcloud.org/api/projects/ response: body: - string: '{"id":200072,"created_at":"2025-01-02T20:30:59.676381Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"dupe","title":"Dupe","updated_at":"2025-01-02T20:30:59.676730Z","user":100000,"pinned":true}' + string: '{"id":200058,"created_at":"2025-09-24T16:11:18.529961Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"dupe","title":"Dupe","updated_at":"2025-09-24T16:11:18.530343Z","user":100000,"pinned":true}' headers: Allow: - GET, POST, HEAD, OPTIONS @@ -35,7 +35,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:59 GMT + - Wed, 24 Sep 2025 16:11:18 GMT Referrer-Policy: - same-origin Server: @@ -55,9 +55,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: @@ -65,12 +65,12 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://api.dev.documentcloud.org/api/projects/ response: body: - string: '{"id":200073,"created_at":"2025-01-02T20:30:59.771288Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"dupe","title":"Dupe","updated_at":"2025-01-02T20:30:59.771487Z","user":100000,"pinned":true}' + string: '{"id":200059,"created_at":"2025-09-24T16:11:18.591464Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"dupe","title":"Dupe","updated_at":"2025-09-24T16:11:18.591580Z","user":100000,"pinned":true}' headers: Allow: - GET, POST, HEAD, OPTIONS @@ -85,7 +85,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:59 GMT + - Wed, 24 Sep 2025 16:11:18 GMT Referrer-Policy: - same-origin Server: @@ -105,18 +105,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/projects/?title=Dupe&user=100000 response: body: - string: '{"count":2,"next":null,"previous":null,"results":[{"id":200072,"created_at":"2025-01-02T20:30:59.676381Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"dupe","title":"Dupe","updated_at":"2025-01-02T20:30:59.676730Z","user":100000,"pinned":true},{"id":200073,"created_at":"2025-01-02T20:30:59.771288Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"dupe","title":"Dupe","updated_at":"2025-01-02T20:30:59.771487Z","user":100000,"pinned":true}]}' + string: '{"count":5,"next":null,"previous":null,"results":[{"id":200002,"created_at":"2025-09-23T20:04:30.521887Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"dupe","title":"Dupe","updated_at":"2025-09-23T20:04:30.522210Z","user":100000,"pinned":true},{"id":200050,"created_at":"2025-09-24T16:05:34.747386Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"dupe","title":"Dupe","updated_at":"2025-09-24T16:05:34.747678Z","user":100000,"pinned":true},{"id":200054,"created_at":"2025-09-24T16:08:12.319014Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"dupe","title":"Dupe","updated_at":"2025-09-24T16:08:12.319479Z","user":100000,"pinned":true},{"id":200058,"created_at":"2025-09-24T16:11:18.529961Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"dupe","title":"Dupe","updated_at":"2025-09-24T16:11:18.530343Z","user":100000,"pinned":true},{"id":200059,"created_at":"2025-09-24T16:11:18.591464Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"dupe","title":"Dupe","updated_at":"2025-09-24T16:11:18.591580Z","user":100000,"pinned":true}]}' headers: Allow: - GET, POST, HEAD, OPTIONS @@ -125,13 +125,13 @@ interactions: Content-Language: - en Content-Length: - - '517' + - '1216' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:59 GMT + - Wed, 24 Sep 2025 16:11:18 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_projects/TestProjectClient.test_get_id.yaml b/tests/cassettes/test_projects/TestProjectClient.test_get_id.yaml index 639ee3b..ac9e807 100644 --- a/tests/cassettes/test_projects/TestProjectClient.test_get_id.yaml +++ b/tests/cassettes/test_projects/TestProjectClient.test_get_id.yaml @@ -5,20 +5,20 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/projects/200070/ + uri: https://api.dev.documentcloud.org/api/projects/200056/ response: body: - string: '{"id":200070,"created_at":"2025-01-02T20:28:57.704656Z","description":"This - is a project for testing","edit_access":true,"add_remove_access":true,"private":true,"slug":"this-is-a-project-for-testing-de8d0fca-731e-4c53-a143-252dd93ddc3a","title":"This - is a project for testing de8d0fca-731e-4c53-a143-252dd93ddc3a","updated_at":"2025-01-02T20:30:49.886208Z","user":100000,"pinned":true}' + string: '{"id":200056,"created_at":"2025-09-24T16:09:01.241768Z","description":"This + is a project for testing","edit_access":true,"add_remove_access":true,"private":true,"slug":"this-is-a-project-for-testing-45fa0a7c-cdbc-479b-9c8f-c228b89681e7","title":"This + is a project for testing 45fa0a7c-cdbc-479b-9c8f-c228b89681e7","updated_at":"2025-09-24T16:11:07.457177Z","user":100000,"pinned":true}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -33,7 +33,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:59 GMT + - Wed, 24 Sep 2025 16:11:16 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_projects/TestProjectClient.test_get_or_create_by_title_create.yaml b/tests/cassettes/test_projects/TestProjectClient.test_get_or_create_by_title_create.yaml index a687c36..ab85f69 100644 --- a/tests/cassettes/test_projects/TestProjectClient.test_get_or_create_by_title_create.yaml +++ b/tests/cassettes/test_projects/TestProjectClient.test_get_or_create_by_title_create.yaml @@ -5,13 +5,13 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/projects/?title=Created+Title&user=100000 response: @@ -31,7 +31,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:00 GMT + - Wed, 24 Sep 2025 16:11:18 GMT Referrer-Policy: - same-origin Server: @@ -51,9 +51,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: @@ -61,13 +61,13 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://api.dev.documentcloud.org/api/projects/ response: body: - string: '{"id":200074,"created_at":"2025-01-02T20:31:00.200982Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"created-title","title":"Created - Title","updated_at":"2025-01-02T20:31:00.201158Z","user":100000,"pinned":true}' + string: '{"id":200060,"created_at":"2025-09-24T16:11:18.885876Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"created-title","title":"Created + Title","updated_at":"2025-09-24T16:11:18.886009Z","user":100000,"pinned":true}' headers: Allow: - GET, POST, HEAD, OPTIONS @@ -82,7 +82,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:00 GMT + - Wed, 24 Sep 2025 16:11:18 GMT Referrer-Policy: - same-origin Server: @@ -102,17 +102,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/projects/200074/ + uri: https://api.dev.documentcloud.org/api/projects/200060/ response: body: string: '' @@ -128,7 +128,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:00 GMT + - Wed, 24 Sep 2025 16:11:18 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_projects/TestProjectClient.test_get_or_create_by_title_get.yaml b/tests/cassettes/test_projects/TestProjectClient.test_get_or_create_by_title_get.yaml index 806b064..b378fae 100644 --- a/tests/cassettes/test_projects/TestProjectClient.test_get_or_create_by_title_get.yaml +++ b/tests/cassettes/test_projects/TestProjectClient.test_get_or_create_by_title_get.yaml @@ -5,20 +5,20 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/projects/?title=This+is+a+project+for+testing+de8d0fca-731e-4c53-a143-252dd93ddc3a&user=100000 + uri: https://api.dev.documentcloud.org/api/projects/?title=This+is+a+project+for+testing+45fa0a7c-cdbc-479b-9c8f-c228b89681e7&user=100000 response: body: - string: '{"count":1,"next":null,"previous":null,"results":[{"id":200070,"created_at":"2025-01-02T20:28:57.704656Z","description":"This - is a project for testing","edit_access":true,"add_remove_access":true,"private":true,"slug":"this-is-a-project-for-testing-de8d0fca-731e-4c53-a143-252dd93ddc3a","title":"This - is a project for testing de8d0fca-731e-4c53-a143-252dd93ddc3a","updated_at":"2025-01-02T20:30:49.886208Z","user":100000,"pinned":true}]}' + string: '{"count":1,"next":null,"previous":null,"results":[{"id":200056,"created_at":"2025-09-24T16:09:01.241768Z","description":"This + is a project for testing","edit_access":true,"add_remove_access":true,"private":true,"slug":"this-is-a-project-for-testing-45fa0a7c-cdbc-479b-9c8f-c228b89681e7","title":"This + is a project for testing 45fa0a7c-cdbc-479b-9c8f-c228b89681e7","updated_at":"2025-09-24T16:11:07.457177Z","user":100000,"pinned":true}]}' headers: Allow: - GET, POST, HEAD, OPTIONS @@ -33,7 +33,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:00 GMT + - Wed, 24 Sep 2025 16:11:18 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_projects/TestProjectClient.test_get_title.yaml b/tests/cassettes/test_projects/TestProjectClient.test_get_title.yaml index 7aa08c0..3a20add 100644 --- a/tests/cassettes/test_projects/TestProjectClient.test_get_title.yaml +++ b/tests/cassettes/test_projects/TestProjectClient.test_get_title.yaml @@ -5,20 +5,20 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/projects/?title=This+is+a+project+for+testing+de8d0fca-731e-4c53-a143-252dd93ddc3a&user=100000 + uri: https://api.dev.documentcloud.org/api/projects/?title=This+is+a+project+for+testing+45fa0a7c-cdbc-479b-9c8f-c228b89681e7&user=100000 response: body: - string: '{"count":1,"next":null,"previous":null,"results":[{"id":200070,"created_at":"2025-01-02T20:28:57.704656Z","description":"This - is a project for testing","edit_access":true,"add_remove_access":true,"private":true,"slug":"this-is-a-project-for-testing-de8d0fca-731e-4c53-a143-252dd93ddc3a","title":"This - is a project for testing de8d0fca-731e-4c53-a143-252dd93ddc3a","updated_at":"2025-01-02T20:30:49.886208Z","user":100000,"pinned":true}]}' + string: '{"count":1,"next":null,"previous":null,"results":[{"id":200056,"created_at":"2025-09-24T16:09:01.241768Z","description":"This + is a project for testing","edit_access":true,"add_remove_access":true,"private":true,"slug":"this-is-a-project-for-testing-45fa0a7c-cdbc-479b-9c8f-c228b89681e7","title":"This + is a project for testing 45fa0a7c-cdbc-479b-9c8f-c228b89681e7","updated_at":"2025-09-24T16:11:07.457177Z","user":100000,"pinned":true}]}' headers: Allow: - GET, POST, HEAD, OPTIONS @@ -33,7 +33,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:59 GMT + - Wed, 24 Sep 2025 16:11:16 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_projects/TestProjectClient.test_list.yaml b/tests/cassettes/test_projects/TestProjectClient.test_list.yaml index caa6c20..12d6712 100644 --- a/tests/cassettes/test_projects/TestProjectClient.test_list.yaml +++ b/tests/cassettes/test_projects/TestProjectClient.test_list.yaml @@ -5,21 +5,22 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/projects/ response: body: - string: '{"count":4,"next":null,"previous":null,"results":[{"id":200071,"created_at":"2025-01-02T20:29:10.954754Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"project-factory","title":"Project - Factory","updated_at":"2025-01-02T20:29:10.955008Z","user":100000,"pinned":true},{"id":200000,"created_at":"2024-07-08T20:21:38.618805Z","description":"","edit_access":true,"add_remove_access":true,"private":false,"slug":"test","title":"test","updated_at":"2024-07-08T20:21:38.627841Z","user":100000,"pinned":true},{"id":200001,"created_at":"2024-07-10T15:39:19.365147Z","description":"","edit_access":true,"add_remove_access":true,"private":false,"slug":"test4","title":"test4","updated_at":"2024-07-10T15:39:19.373924Z","user":100000,"pinned":true},{"id":200070,"created_at":"2025-01-02T20:28:57.704656Z","description":"This - is a project for testing","edit_access":true,"add_remove_access":true,"private":true,"slug":"this-is-a-project-for-testing-de8d0fca-731e-4c53-a143-252dd93ddc3a","title":"This - is a project for testing de8d0fca-731e-4c53-a143-252dd93ddc3a","updated_at":"2025-01-02T20:30:49.886208Z","user":100000,"pinned":true}]}' + string: '{"count":8,"next":null,"previous":null,"results":[{"id":200002,"created_at":"2025-09-23T20:04:30.521887Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"dupe","title":"Dupe","updated_at":"2025-09-23T20:04:30.522210Z","user":100000,"pinned":true},{"id":200050,"created_at":"2025-09-24T16:05:34.747386Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"dupe","title":"Dupe","updated_at":"2025-09-24T16:05:34.747678Z","user":100000,"pinned":true},{"id":200054,"created_at":"2025-09-24T16:08:12.319014Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"dupe","title":"Dupe","updated_at":"2025-09-24T16:08:12.319479Z","user":100000,"pinned":true},{"id":200010,"created_at":"2025-09-23T20:11:38.974659Z","description":"","edit_access":null,"add_remove_access":null,"private":false,"slug":"nep","title":"nep","updated_at":"2025-09-23T20:11:38.974977Z","user":100001,"pinned":false},{"id":200022,"created_at":"2025-09-23T22:44:55.563164Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"project-factory","title":"Project + Factory","updated_at":"2025-09-23T22:44:55.563292Z","user":100000,"pinned":true},{"id":200057,"created_at":"2025-09-24T16:09:18.182482Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"project-factory","title":"Project + Factory","updated_at":"2025-09-24T16:09:18.182658Z","user":100000,"pinned":true},{"id":200004,"created_at":"2025-09-23T20:05:41.461995Z","description":"","edit_access":true,"add_remove_access":true,"private":false,"slug":"test-3","title":"test-3","updated_at":"2025-09-23T20:05:41.462290Z","user":100000,"pinned":true},{"id":200056,"created_at":"2025-09-24T16:09:01.241768Z","description":"This + is a project for testing","edit_access":true,"add_remove_access":true,"private":true,"slug":"this-is-a-project-for-testing-45fa0a7c-cdbc-479b-9c8f-c228b89681e7","title":"This + is a project for testing 45fa0a7c-cdbc-479b-9c8f-c228b89681e7","updated_at":"2025-09-24T16:11:07.457177Z","user":100000,"pinned":true}]}' headers: Allow: - GET, POST, HEAD, OPTIONS @@ -28,13 +29,13 @@ interactions: Content-Language: - en Content-Length: - - '1162' + - '2117' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:58 GMT + - Wed, 24 Sep 2025 16:11:16 GMT Referrer-Policy: - same-origin Server: @@ -54,21 +55,22 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/projects/?user=100000 response: body: - string: '{"count":4,"next":null,"previous":null,"results":[{"id":200071,"created_at":"2025-01-02T20:29:10.954754Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"project-factory","title":"Project - Factory","updated_at":"2025-01-02T20:29:10.955008Z","user":100000,"pinned":true},{"id":200000,"created_at":"2024-07-08T20:21:38.618805Z","description":"","edit_access":true,"add_remove_access":true,"private":false,"slug":"test","title":"test","updated_at":"2024-07-08T20:21:38.627841Z","user":100000,"pinned":true},{"id":200001,"created_at":"2024-07-10T15:39:19.365147Z","description":"","edit_access":true,"add_remove_access":true,"private":false,"slug":"test4","title":"test4","updated_at":"2024-07-10T15:39:19.373924Z","user":100000,"pinned":true},{"id":200070,"created_at":"2025-01-02T20:28:57.704656Z","description":"This - is a project for testing","edit_access":true,"add_remove_access":true,"private":true,"slug":"this-is-a-project-for-testing-de8d0fca-731e-4c53-a143-252dd93ddc3a","title":"This - is a project for testing de8d0fca-731e-4c53-a143-252dd93ddc3a","updated_at":"2025-01-02T20:30:49.886208Z","user":100000,"pinned":true}]}' + string: '{"count":7,"next":null,"previous":null,"results":[{"id":200002,"created_at":"2025-09-23T20:04:30.521887Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"dupe","title":"Dupe","updated_at":"2025-09-23T20:04:30.522210Z","user":100000,"pinned":true},{"id":200050,"created_at":"2025-09-24T16:05:34.747386Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"dupe","title":"Dupe","updated_at":"2025-09-24T16:05:34.747678Z","user":100000,"pinned":true},{"id":200054,"created_at":"2025-09-24T16:08:12.319014Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"dupe","title":"Dupe","updated_at":"2025-09-24T16:08:12.319479Z","user":100000,"pinned":true},{"id":200022,"created_at":"2025-09-23T22:44:55.563164Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"project-factory","title":"Project + Factory","updated_at":"2025-09-23T22:44:55.563292Z","user":100000,"pinned":true},{"id":200057,"created_at":"2025-09-24T16:09:18.182482Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"project-factory","title":"Project + Factory","updated_at":"2025-09-24T16:09:18.182658Z","user":100000,"pinned":true},{"id":200004,"created_at":"2025-09-23T20:05:41.461995Z","description":"","edit_access":true,"add_remove_access":true,"private":false,"slug":"test-3","title":"test-3","updated_at":"2025-09-23T20:05:41.462290Z","user":100000,"pinned":true},{"id":200056,"created_at":"2025-09-24T16:09:01.241768Z","description":"This + is a project for testing","edit_access":true,"add_remove_access":true,"private":true,"slug":"this-is-a-project-for-testing-45fa0a7c-cdbc-479b-9c8f-c228b89681e7","title":"This + is a project for testing 45fa0a7c-cdbc-479b-9c8f-c228b89681e7","updated_at":"2025-09-24T16:11:07.457177Z","user":100000,"pinned":true}]}' headers: Allow: - GET, POST, HEAD, OPTIONS @@ -77,13 +79,13 @@ interactions: Content-Language: - en Content-Length: - - '1162' + - '1884' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:58 GMT + - Wed, 24 Sep 2025 16:11:16 GMT Referrer-Policy: - same-origin Server: @@ -103,21 +105,22 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/projects/?user=100000 response: body: - string: '{"count":4,"next":null,"previous":null,"results":[{"id":200071,"created_at":"2025-01-02T20:29:10.954754Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"project-factory","title":"Project - Factory","updated_at":"2025-01-02T20:29:10.955008Z","user":100000,"pinned":true},{"id":200000,"created_at":"2024-07-08T20:21:38.618805Z","description":"","edit_access":true,"add_remove_access":true,"private":false,"slug":"test","title":"test","updated_at":"2024-07-08T20:21:38.627841Z","user":100000,"pinned":true},{"id":200001,"created_at":"2024-07-10T15:39:19.365147Z","description":"","edit_access":true,"add_remove_access":true,"private":false,"slug":"test4","title":"test4","updated_at":"2024-07-10T15:39:19.373924Z","user":100000,"pinned":true},{"id":200070,"created_at":"2025-01-02T20:28:57.704656Z","description":"This - is a project for testing","edit_access":true,"add_remove_access":true,"private":true,"slug":"this-is-a-project-for-testing-de8d0fca-731e-4c53-a143-252dd93ddc3a","title":"This - is a project for testing de8d0fca-731e-4c53-a143-252dd93ddc3a","updated_at":"2025-01-02T20:30:49.886208Z","user":100000,"pinned":true}]}' + string: '{"count":7,"next":null,"previous":null,"results":[{"id":200002,"created_at":"2025-09-23T20:04:30.521887Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"dupe","title":"Dupe","updated_at":"2025-09-23T20:04:30.522210Z","user":100000,"pinned":true},{"id":200050,"created_at":"2025-09-24T16:05:34.747386Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"dupe","title":"Dupe","updated_at":"2025-09-24T16:05:34.747678Z","user":100000,"pinned":true},{"id":200054,"created_at":"2025-09-24T16:08:12.319014Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"dupe","title":"Dupe","updated_at":"2025-09-24T16:08:12.319479Z","user":100000,"pinned":true},{"id":200022,"created_at":"2025-09-23T22:44:55.563164Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"project-factory","title":"Project + Factory","updated_at":"2025-09-23T22:44:55.563292Z","user":100000,"pinned":true},{"id":200057,"created_at":"2025-09-24T16:09:18.182482Z","description":"","edit_access":true,"add_remove_access":true,"private":true,"slug":"project-factory","title":"Project + Factory","updated_at":"2025-09-24T16:09:18.182658Z","user":100000,"pinned":true},{"id":200004,"created_at":"2025-09-23T20:05:41.461995Z","description":"","edit_access":true,"add_remove_access":true,"private":false,"slug":"test-3","title":"test-3","updated_at":"2025-09-23T20:05:41.462290Z","user":100000,"pinned":true},{"id":200056,"created_at":"2025-09-24T16:09:01.241768Z","description":"This + is a project for testing","edit_access":true,"add_remove_access":true,"private":true,"slug":"this-is-a-project-for-testing-45fa0a7c-cdbc-479b-9c8f-c228b89681e7","title":"This + is a project for testing 45fa0a7c-cdbc-479b-9c8f-c228b89681e7","updated_at":"2025-09-24T16:11:07.457177Z","user":100000,"pinned":true}]}' headers: Allow: - GET, POST, HEAD, OPTIONS @@ -126,13 +129,13 @@ interactions: Content-Language: - en Content-Length: - - '1162' + - '1884' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:30:59 GMT + - Wed, 24 Sep 2025 16:11:16 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_sections/TestSection.test_create_delete.yaml b/tests/cassettes/test_sections/TestSection.test_create_delete.yaml index 73de34f..ac12775 100644 --- a/tests/cassettes/test_sections/TestSection.test_create_delete.yaml +++ b/tests/cassettes/test_sections/TestSection.test_create_delete.yaml @@ -5,9 +5,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST uri: https://api.dev.documentcloud.org/api/documents/ response: body: - string: '{"id":20000288,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000288-test","created_at":"2025-01-02T20:31:00.448834Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-01-02T20:31:00.449181Z","user":100000}' + string: '{"id":20000215,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000215-test/","created_at":"2025-09-24T16:11:19.058317Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-09-24T16:11:19.058480Z","user":100000}' headers: Allow: - GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -31,13 +31,13 @@ interactions: Content-Language: - en Content-Length: - - '615' + - '616' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:00 GMT + - Wed, 24 Sep 2025 16:11:19 GMT Referrer-Policy: - same-origin Server: @@ -57,18 +57,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000288/ + uri: https://api.dev.documentcloud.org/api/documents/20000215/ response: body: - string: '{"id":20000288,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000288-test","created_at":"2025-01-02T20:31:00.448834Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","presigned_url":"https://documentcloud-dev-sanjin.s3.amazonaws.com/documents/20000288/test.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA4JBBEJ7K7BVMXVOU%2F20250102%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250102T203101Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=5bd215100e48a036ea46b05f4ac6ba28a41a71250cd02f53136a6248b43bcd34","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"nofile","title":"test","updated_at":"2025-01-02T20:31:00.449181Z","user":100000}' + string: '{"id":20000215,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000215-test/","created_at":"2025-09-24T16:11:19.058317Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:11:20.130362Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -79,13 +79,13 @@ interactions: Content-Language: - en Content-Length: - - '977' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:01 GMT + - Wed, 24 Sep 2025 16:11:20 GMT Referrer-Policy: - same-origin Server: @@ -105,18 +105,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000288/ + uri: https://api.dev.documentcloud.org/api/documents/20000215/ response: body: - string: '{"id":20000288,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000288-test","created_at":"2025-01-02T20:31:00.448834Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":0,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:31:02.136027Z","user":100000}' + string: '{"id":20000215,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000215-test/","created_at":"2025-09-24T16:11:19.058317Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:11:21.252247Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -127,13 +127,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:02 GMT + - Wed, 24 Sep 2025 16:11:21 GMT Referrer-Policy: - same-origin Server: @@ -153,18 +153,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000288/ + uri: https://api.dev.documentcloud.org/api/documents/20000215/ response: body: - string: '{"id":20000288,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000288-test","created_at":"2025-01-02T20:31:00.448834Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:31:03.170759Z","user":100000}' + string: '{"id":20000215,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000215-test/","created_at":"2025-09-24T16:11:19.058317Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:11:21.252247Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -175,13 +175,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:03 GMT + - Wed, 24 Sep 2025 16:11:22 GMT Referrer-Policy: - same-origin Server: @@ -201,18 +201,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000288/ + uri: https://api.dev.documentcloud.org/api/documents/20000215/ response: body: - string: '{"id":20000288,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000288-test","created_at":"2025-01-02T20:31:00.448834Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:31:03.170759Z","user":100000}' + string: '{"id":20000215,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000215-test/","created_at":"2025-09-24T16:11:19.058317Z","data":{},"description":"","edit_access":true,"file_hash":"","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:11:21.252247Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -223,13 +223,13 @@ interactions: Content-Language: - en Content-Length: - - '616' + - '617' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:04 GMT + - Wed, 24 Sep 2025 16:11:23 GMT Referrer-Policy: - same-origin Server: @@ -249,18 +249,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000288/ + uri: https://api.dev.documentcloud.org/api/documents/20000215/ response: body: - string: '{"id":20000288,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000288-test","created_at":"2025-01-02T20:31:00.448834Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:31:05.953465Z","user":100000}' + string: '{"id":20000215,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000215-test/","created_at":"2025-09-24T16:11:19.058317Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:11:23.955587Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -271,13 +271,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:06 GMT + - Wed, 24 Sep 2025 16:11:24 GMT Referrer-Policy: - same-origin Server: @@ -297,18 +297,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000288/ + uri: https://api.dev.documentcloud.org/api/documents/20000215/ response: body: - string: '{"id":20000288,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000288-test","created_at":"2025-01-02T20:31:00.448834Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-01-02T20:31:05.953465Z","user":100000}' + string: '{"id":20000215,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000215-test/","created_at":"2025-09-24T16:11:19.058317Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"pending","title":"test","updated_at":"2025-09-24T16:11:23.955587Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -319,13 +319,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:07 GMT + - Wed, 24 Sep 2025 16:11:25 GMT Referrer-Policy: - same-origin Server: @@ -345,18 +345,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000288/ + uri: https://api.dev.documentcloud.org/api/documents/20000215/ response: body: - string: '{"id":20000288,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000288-test","created_at":"2025-01-02T20:31:00.448834Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10004,"original_extension":"pdf","page_count":1,"page_spec":"612.0x792.0:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-01-02T20:31:07.971475Z","user":100000}' + string: '{"id":20000215,"access":"private","admin_noindex":false,"asset_url":"https://api.dev.documentcloud.org/files/","canonical_url":"https://www.dev.documentcloud.org/documents/20000215-test/","created_at":"2025-09-24T16:11:19.058317Z","data":{},"description":"","edit_access":true,"file_hash":"5dcb718cdd5326ce53ccf8b0d801c0fcaffa1c81","noindex":false,"language":"eng","organization":10000,"original_extension":"pdf","page_count":1,"page_spec":"612.00x792.00:0","projects":[],"publish_at":null,"published_url":"","related_article":"","revision_control":false,"slug":"test","source":"","status":"success","title":"test","updated_at":"2025-09-24T16:11:26.025533Z","user":100000}' headers: Allow: - GET, PUT, PATCH, DELETE, HEAD, OPTIONS @@ -367,13 +367,13 @@ interactions: Content-Language: - en Content-Length: - - '669' + - '672' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:08 GMT + - Wed, 24 Sep 2025 16:11:26 GMT Referrer-Policy: - same-origin Server: @@ -393,15 +393,15 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000288/sections/ + uri: https://api.dev.documentcloud.org/api/documents/20000215/sections/ response: body: string: '{"count":0,"next":null,"previous":null,"results":[]}' @@ -421,7 +421,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:08 GMT + - Wed, 24 Sep 2025 16:11:26 GMT Referrer-Policy: - same-origin Server: @@ -441,9 +441,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: @@ -451,12 +451,12 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST - uri: https://api.dev.documentcloud.org/api/documents/20000288/sections/ + uri: https://api.dev.documentcloud.org/api/documents/20000215/sections/ response: body: - string: '{"id":68,"page_number":0,"title":"Test Section"}' + string: '{"id":50,"page_number":0,"title":"Test Section"}' headers: Allow: - GET, POST, HEAD, OPTIONS @@ -473,7 +473,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:08 GMT + - Wed, 24 Sep 2025 16:11:26 GMT Referrer-Policy: - same-origin Server: @@ -493,18 +493,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000288/sections/ + uri: https://api.dev.documentcloud.org/api/documents/20000215/sections/ response: body: - string: '{"count":1,"next":null,"previous":null,"results":[{"id":68,"page_number":0,"title":"Test + string: '{"count":1,"next":null,"previous":null,"results":[{"id":50,"page_number":0,"title":"Test Section"}]}' headers: Allow: @@ -522,7 +522,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:08 GMT + - Wed, 24 Sep 2025 16:11:26 GMT Referrer-Policy: - same-origin Server: @@ -542,9 +542,9 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: @@ -552,9 +552,9 @@ interactions: Content-Type: - application/json User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: POST - uri: https://api.dev.documentcloud.org/api/documents/20000288/sections/ + uri: https://api.dev.documentcloud.org/api/documents/20000215/sections/ response: body: string: '{"page_number":["You may not add more than one section to a page"]}' @@ -574,7 +574,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:08 GMT + - Wed, 24 Sep 2025 16:11:26 GMT Referrer-Policy: - same-origin Server: @@ -594,17 +594,17 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive Content-Length: - '0' User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: DELETE - uri: https://api.dev.documentcloud.org/api/documents/20000288/sections/68/ + uri: https://api.dev.documentcloud.org/api/documents/20000215/sections/50/ response: body: string: '' @@ -622,7 +622,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:08 GMT + - Wed, 24 Sep 2025 16:11:27 GMT Referrer-Policy: - same-origin Server: @@ -642,15 +642,15 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000288/sections/ + uri: https://api.dev.documentcloud.org/api/documents/20000215/sections/ response: body: string: '{"count":0,"next":null,"previous":null,"results":[]}' @@ -670,7 +670,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:08 GMT + - Wed, 24 Sep 2025 16:11:27 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_sections/TestSection.test_page.yaml b/tests/cassettes/test_sections/TestSection.test_page.yaml index d017a30..6e01eee 100644 --- a/tests/cassettes/test_sections/TestSection.test_page.yaml +++ b/tests/cassettes/test_sections/TestSection.test_page.yaml @@ -5,18 +5,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000273/sections/ + uri: https://api.dev.documentcloud.org/api/documents/20000200/sections/ response: body: - string: '{"count":1,"next":null,"previous":null,"results":[{"id":65,"page_number":0,"title":"Test + string: '{"count":1,"next":null,"previous":null,"results":[{"id":47,"page_number":0,"title":"Test Section"}]}' headers: Allow: @@ -34,7 +34,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:09 GMT + - Wed, 24 Sep 2025 16:11:27 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_sections/TestSection.test_str.yaml b/tests/cassettes/test_sections/TestSection.test_str.yaml index 4940ecd..6e01eee 100644 --- a/tests/cassettes/test_sections/TestSection.test_str.yaml +++ b/tests/cassettes/test_sections/TestSection.test_str.yaml @@ -5,18 +5,18 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET - uri: https://api.dev.documentcloud.org/api/documents/20000273/sections/ + uri: https://api.dev.documentcloud.org/api/documents/20000200/sections/ response: body: - string: '{"count":1,"next":null,"previous":null,"results":[{"id":65,"page_number":0,"title":"Test + string: '{"count":1,"next":null,"previous":null,"results":[{"id":47,"page_number":0,"title":"Test Section"}]}' headers: Allow: @@ -34,7 +34,7 @@ interactions: Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:08 GMT + - Wed, 24 Sep 2025 16:11:27 GMT Referrer-Policy: - same-origin Server: diff --git a/tests/cassettes/test_users/test_user.yaml b/tests/cassettes/test_users/test_user.yaml index 60bec06..288153e 100644 --- a/tests/cassettes/test_users/test_user.yaml +++ b/tests/cassettes/test_users/test_user.yaml @@ -5,18 +5,19 @@ interactions: Accept: - '*/*' Accept-Encoding: - - gzip, deflate, br + - gzip, deflate Authorization: - - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzM1ODUwMDcxLCJqdGkiOiIxZWRlYWQxNzEyMmM0N2E1YWZlNjQ2NzdkMzViZWNhZiIsInVzZXJfaWQiOiJmNjAyOWU4YS1kOGEyLTQxODgtOGEyMS1jZDA3M2EwMmVlNWMiLCJhdWQiOlsic3F1YXJlbGV0IiwibXVja3JvY2siLCJkb2N1bWVudGNsb3VkIl0sImlzcyI6WyJzcXVhcmVsZXQiXX0.agRzHD2uUmaNZ4WZ_QMYzrJ5MsoHgN0diKORZmNPDjxXtkYXozxbgSrOXZjYG3jeGUsZ1inYW9j6nZtP0AOwe-FBo5-hVtxKB8_T6zSTUlsdONNcFNqWVMaWPyp3tADnbT7ziGmCJvP8YJEq9LwR157hoGjiEEALK83x4FT8vyIjIALnpPmu3udPpwu6231-MwpXreytKBkmoaHLb5kMXwefF7sX3LcbE_9j7i29Kr8QMcZdq5AAM3P31q8A4rxB_FADxlqYt3qSjSZ64r0kqmNx2CWo9eJeQ35bPAI0uc-mobk4xCMU-MW6U9sPzQsC-FZ6VVUKt-hwphd_-dziEg + - Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzU4NzMwNDkxLCJpYXQiOjE3NTg3MzAxOTEsImp0aSI6Ijk2N2ZlOTkxMDgzMjQyZmQ4NWUwZDBkYTJhOTJjMjE0IiwidXNlcl9pZCI6ImY2MDI5ZThhLWQ4YTItNDE4OC04YTIxLWNkMDczYTAyZWU1YyIsImF1ZCI6WyJzcXVhcmVsZXQiLCJtdWNrcm9jayIsImRvY3VtZW50Y2xvdWQiXSwiaXNzIjpbInNxdWFyZWxldCJdfQ.qiTrZeLNkzJe0_Ydn30VayDALDLMe9W1BrdZe0c6NICPtRckGHsr06fqF9pPsMmeWeiQ346x_CYsCrMqeN5twtcqnaRXFUtnvumAuAcxFeQetirhlOr5GhLLNPyNqdcmwCB-t1fbn6sx3rNd3g5j-aY0T8Ic5qBlhRkLZGn_QollLu9Wi_airw9OfnPYuDJzh8s6D7vnpVEH6Ft8Q7kEHeA_-yydsv1q-WFgm1gJMamwz94i9TT-tAZIJc3N98W1fBjmBCy1qV36P74PYKYzkbebhSuJMRsL1qDRskm32a6j3CsVYQA2KQro9EYE1zjJ62n6e4GSELVo9CAOZiM04Q Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.32.5 method: GET uri: https://api.dev.documentcloud.org/api/users/100000/ response: body: - string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","is_staff":true,"name":"test-user","organization":10004,"organizations":[10000,10004],"admin_organizations":[10000,10004],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true}' + string: '{"id":100000,"avatar_url":"https://dev.squarelet.com/static/images/avatars/profile.png","name":"hello + there","organization":10000,"organizations":[10001,10000],"admin_organizations":[10001,10000],"username":"test-user","uuid":"f6029e8a-d8a2-4188-8a21-cd073a02ee5c","verified_journalist":true}' headers: Allow: - GET, PUT, PATCH, HEAD, OPTIONS @@ -25,13 +26,13 @@ interactions: Content-Language: - en Content-Length: - - '306' + - '292' Content-Type: - application/json Cross-Origin-Opener-Policy: - same-origin Date: - - Thu, 02 Jan 2025 20:31:09 GMT + - Wed, 24 Sep 2025 16:11:27 GMT Referrer-Policy: - same-origin Server: