Skip to main content

Recreate Resource

The RecreateResource provides document recreation capabilities, accessible through client.enterprise_api.recreate. This resource handles document processing workflows including creation, status monitoring, and resource management.

recreate.create

Creates a new recreation job and returns a recreate_id and status.

recreate.retrieve_status

Requires a recreate_id and returns its status and associated download links if available. status_progression.txt
When a job completes, the xls_download_url and ppt_download_url will be populated with non-null values: completed_example.txt

recreate.get_dfs

Requires a recreate_id and returns its data as a list of dataframes.
You can inspect and utilize the df as usual

Other API Resources

The EnterpriseAPIResource class serves as the primary interface for enterprise API operations. It provides direct access to format listing, PDF unprotection, and token validation functionality.

list_formats

Returns configuration templates for formatting output files.

unprotect_pdf

Removes password protection from PDF files. Requires file and password parameters. unprotect_example.py

validate_token

Validates JWT authentication tokens. Requires a token parameter. validate_token_example.py