openfilz-ee-sdk-python
API for Document Management System
This Python package is automatically generated by the OpenAPI Generator project:
- API version: 1.0.0
- Package version: 1.9.10
- Generator version: 7.23.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
Requirements.
Python 3.10+
Installation & Usage
pip install
If the python package is hosted on a repository, you can install directly using:
pip install git+https://github.com/openfilz/openfilz-ee.git
(you may need to run pip with root permission: sudo pip install git+https://github.com/openfilz/openfilz-ee.git)
Then import the package:
import openfilz_ee_sdk
Setuptools
Install via Setuptools.
python setup.py install --user
(or sudo python setup.py install to install the package for all users)
Then import the package:
import openfilz_ee_sdk
Tests
Execute pytest to run the tests.
Getting Started
Please follow the installation procedure and then run the following:
import openfilz_ee_sdk
from openfilz_ee_sdk.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost:8081
# See configuration.py for a list of all supported configuration parameters.
configuration = openfilz_ee_sdk.Configuration(
host = "http://localhost:8081"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure Bearer authorization (JWT): keycloak_auth
configuration = openfilz_ee_sdk.Configuration(
access_token = os.environ["BEARER_TOKEN"]
)
# Enter a context with an instance of the API client
with openfilz_ee_sdk.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = openfilz_ee_sdk.AIChatApi(api_client)
plan_id = UUID('38400000-8cf0-11bd-b23e-10b96e4ef00d') # UUID |
reorganization_apply_request = openfilz_ee_sdk.ReorganizationApplyRequest() # ReorganizationApplyRequest | (optional)
try:
# Apply a proposed reorganisation plan
api_response = api_instance.apply(plan_id, reorganization_apply_request=reorganization_apply_request)
print("The response of AIChatApi->apply:\n")
pprint(api_response)
except ApiException as e:
print("Exception when calling AIChatApi->apply: %s\n" % e)
Documentation for API Endpoints
All URIs are relative to http://localhost:8081
| Class | Method | HTTP request | Description |
|---|---|---|---|
| AIChatApi | apply | POST /api/v1/ai/reorganization/{planId}/apply | Apply a proposed reorganisation plan |
| AIChatApi | chat | POST /api/v1/ai/chat | Chat with AI assistant |
| AIChatApi | delete_conversation | DELETE /api/v1/ai/conversations/{conversationId} | Delete conversation |
| AIChatApi | discard | POST /api/v1/ai/reorganization/{planId}/discard | Discard a proposed reorganisation plan |
| AIChatApi | get4 | GET /api/v1/ai/reorganization/{planId} | Get a reorganisation plan proposed by the AI assistant |
| AIChatApi | get_conversation_history | GET /api/v1/ai/conversations/{conversationId} | Get conversation history |
| AIChatApi | list_conversations | GET /api/v1/ai/conversations | List conversations |
| AIChatApi | propose_by_kind | POST /api/v1/ai/reorganization/by-kind | Propose a reorganisation by kind of document — no model involved |
| AIEmbeddingsApi | backfill1 | POST /api/v1/ai/embeddings/backfill | Embed existing documents |
| AIEmbeddingsApi | backfill_status1 | GET /api/v1/ai/embeddings/backfill/{jobId} | Progress of an embedding backfill job |
| AISettingsApi | delete_settings | DELETE /api/v1/settings/ai | Reset my AI settings |
| AISettingsApi | get_settings1 | GET /api/v1/settings/ai | Get my AI settings |
| AISettingsApi | list_models | POST /api/v1/settings/ai/models | List the provider's chat models |
| AISettingsApi | save_settings1 | PUT /api/v1/settings/ai | Save my AI settings |
| AISettingsApi | test_connection | POST /api/v1/settings/ai/test | Test AI provider connection |
| CommentsApi | create_comment | POST /api/v1/documents/comments | Create a comment |
| CommentsApi | delete_comment | DELETE /api/v1/documents/comments/{id} | Delete a comment |
| CommentsApi | update_comment | PUT /api/v1/documents/comments/{id} | Update a comment |
| DashboardApi | get_dashboard_statistics | GET /api/v1/dashboard/statistics | Get dashboard statistics |
| DelegatedBrowseGrantsAdminApi | browse_folders | GET /api/v1/admin/delegated/folders | Browse folders on behalf of the grantor |
| DelegatedBrowseGrantsAdminApi | consume | POST /api/v1/admin/delegated/grants/{id}/consume | Mark grant as consumed |
| DelegatedBrowseGrantsAdminApi | get_grant | GET /api/v1/admin/delegated/grants/{id} | Poll grant status |
| DelegatedBrowseGrantsAdminApi | list_mine | GET /api/v1/admin/delegated/grants | List grants I requested |
| DelegatedBrowseGrantsAdminApi | request_grant | POST /api/v1/admin/delegated/grants | Request a grant |
| DelegatedBrowseGrantsEndUserApi | accept | POST /api/v1/users/me/delegated/grants/{id}/accept | Approve a pending grant |
| DelegatedBrowseGrantsEndUserApi | decline | POST /api/v1/users/me/delegated/grants/{id}/decline | Refuse a pending grant |
| DelegatedBrowseGrantsEndUserApi | disable_linked_webhook | POST /api/v1/users/me/delegated/grants/{id}/disable-webhook | Disable the webhook created from this grant |
| DelegatedBrowseGrantsEndUserApi | list_incoming | GET /api/v1/users/me/delegated/grants | List grants addressed to me |
| DelegatedBrowseGrantsEndUserApi | revoke | POST /api/v1/users/me/delegated/grants/{id}/revoke | Revoke an accepted grant |
| DocumentInsightsApi | backfill | POST /api/v1/ai/insights/backfill | Enrich existing documents |
| DocumentInsightsApi | backfill_status | GET /api/v1/ai/insights/backfill/{jobId} | Progress of a backfill job |
| DocumentInsightsApi | get_insights | GET /api/v1/documents/{documentId}/insights | Get the insights of a document |
| DocumentInsightsApi | set_category | PATCH /api/v1/documents/{documentId}/insights | Correct the kind of a document |
| FavoritesApi | add_favorite | POST /api/v1/favorites/{documentId} | Add document to favorites |
| FavoritesApi | is_favorite | GET /api/v1/favorites/{documentId}/is-favorite | Check favorite status |
| FavoritesApi | remove_favorite | DELETE /api/v1/favorites/{documentId} | Remove document from favorites |
| FavoritesApi | toggle_favorite | PUT /api/v1/favorites/{documentId}/toggle | Toggle favorite status |
| FeatureEntitlementsApi | get_feature_entitlements | GET /api/v1/admin/features | Deployment + licence state per optional feature |
| NotificationsApi | get_notifications | GET /api/v1/notifications | Get all notifications |
| NotificationsApi | get_unread_count | GET /api/v1/notifications/unread/count | Get unread notification count |
| NotificationsApi | mark_all_as_read | PUT /api/v1/notifications/read-all | Mark all notifications as read |
| NotificationsApi | mark_as_read | PUT /api/v1/notifications/{id}/read | Mark notification as read |
| NotificationsApi | stream_notifications | GET /api/v1/notifications/stream | Subscribe to notification stream |
| PDFToolsApi | info | GET /api/v1/pdf/{documentId}/info | Describe a stored PDF |
| PDFToolsApi | merge | POST /api/v1/pdf/merge | Merge PDFs |
| PDFToolsApi | organize | POST /api/v1/pdf/organize | Reorganise the pages of a PDF |
| PDFToolsApi | rotate | POST /api/v1/pdf/rotate | Rotate pages |
| PDFToolsApi | split | POST /api/v1/pdf/split | Split a PDF |
| ScanAgentApi | download | GET /api/v1/agent/download/{platform} | Download agent binary |
| ScanAgentApi | get_version | GET /api/v1/agent/version | Get agent version |
| ScannerProxyApi | get_ingestion_status | GET /api/v1/scan/status | Get ingestion status |
| ScannerProxyApi | get_scan_job_status | GET /api/v1/scan/scanners/{id}/scan/{jobId}/status | Get scan job status |
| ScannerProxyApi | get_scanner_capabilities | GET /api/v1/scan/scanners/{id}/capabilities | Get scanner capabilities |
| ScannerProxyApi | list_scanners | GET /api/v1/scan/scanners | List scanners |
| ScannerProxyApi | trigger_scan | POST /api/v1/scan/scanners/{id}/scan | Trigger scan |
| SearchAdministrationApi | create_index | POST /api/v1/admin/search | Create search index |
| SearchAdministrationApi | delete_index | DELETE /api/v1/admin/search | Delete search index |
| SearchAdministrationApi | get_status | GET /api/v1/admin/search/status | Get reindexation status |
| SearchAdministrationApi | reindex_all | POST /api/v1/admin/search/reindex | Reindex all documents |
| SettingsApi | get2 | GET /api/v1/settings/ai/preferences | The caller's smart-filing preferences |
| SettingsApi | get_license_info | GET /api/v1/settings/license | Coarse license info |
| SettingsApi | get_settings | GET /api/v1/settings | Get user's settings |
| SettingsApi | save | PUT /api/v1/settings/ai/preferences | Save the caller's smart-filing preferences |
| SettingsApi | save_settings | PUT /api/v1/settings | Save user preferences |
| SmartFilingApi | file | POST /api/v1/ai/auto-file | File existing documents on demand |
| SmartFilingApi | job | GET /api/v1/ai/auto-file/{jobId} | Progress and outcome of a filing job |
| SmartFilingApi | last_filing | GET /api/v1/ai/auto-file/document/{documentId} | The latest filing record of a document (the "Filed by OpenFilz" chip) |
| SmartFilingApi | undo | POST /api/v1/ai/auto-file/{jobId}/undo | Move every document the job filed back where it came from |
| SmartFilingApi | undo_filing | POST /api/v1/ai/auto-file/filing/{planId}/undo | Move one filed document back (the chip's "Move back") |
| UserPrivacyApi | get | GET /api/v1/users/me/privacy | Read my privacy preferences |
| UserPrivacyApi | update | PUT /api/v1/users/me/privacy | Update my privacy preferences |
| WorkflowsApi | cancel | POST /api/v1/workflows/instances/{id}/cancel | Cancel a running instance (initiator) |
| WorkflowsApi | complete | POST /api/v1/workflows/tasks/{id}/complete | Take a transition on a task I am a candidate of |
| WorkflowsApi | create_definition | POST /api/v1/workflows/definitions | Create a workflow definition (400 with the problem list when invalid) |
| WorkflowsApi | delete_definition | DELETE /api/v1/workflows/definitions/{id} | Delete a workflow definition (409 while instances are running) |
| WorkflowsApi | get_definition | GET /api/v1/workflows/definitions/{id} | Get a workflow definition |
| WorkflowsApi | get_instance | GET /api/v1/workflows/instances/{id} | One instance with its snapshot spec, open task and history |
| WorkflowsApi | list_definitions | GET /api/v1/workflows/definitions | List workflow definitions |
| WorkflowsApi | list_instances | GET /api/v1/workflows/instances | List instances (monitor), newest first |
| WorkflowsApi | my_tasks | GET /api/v1/workflows/tasks/mine | Open tasks I can act on (by e-mail or role) |
| WorkflowsApi | my_tasks_count | GET /api/v1/workflows/tasks/mine/count | Number of open tasks I can act on (sidebar badge) |
| WorkflowsApi | reassign | POST /api/v1/workflows/tasks/{id}/reassign | Hand a task to other people (initiator or current candidate) |
| WorkflowsApi | start | POST /api/v1/workflows/instances | Start a workflow on a document (409 when one is already running) |
| WorkflowsApi | summary | GET /api/v1/workflows/instances/summary | Counts for the monitor header |
| WorkflowsApi | update_definition | PUT /api/v1/workflows/definitions/{id} | Update a workflow definition (running instances keep their snapshot) |
| WorkflowsApi | validate_definition | POST /api/v1/workflows/definitions/validate | Validate a definition without saving it |
| CollaborationAuditControllerApi | get_audit_trail | GET /api/v1/audit/{id} | Get audit trail for a resource (enriched with actor azp) |
| CollaborationAuditControllerApi | search_audit_trail | POST /api/v1/audit/search | Search audit trail (enriched with actor azp) |
| CollaborationAuditControllerApi | verify_chain | GET /api/v1/audit/verify | Verify audit chain integrity |
| CollaborationControllerApi | accept_share_request | POST /api/v1/users/share-requests/{id}/accept | Accept a share request |
| CollaborationControllerApi | add_team_members | POST /api/v1/users/teams/{teamId}/members | Add team members |
| CollaborationControllerApi | create_shared_documents | POST /api/v1/users/share | Create Share for document(s) |
| CollaborationControllerApi | create_team | POST /api/v1/users/teams | Create a team |
| CollaborationControllerApi | create_user | POST /api/v1/users | Create a new user |
| CollaborationControllerApi | deactivate_user | DELETE /api/v1/users/{userId} | Deactivate a user |
| CollaborationControllerApi | delete_shared_documents | DELETE /api/v1/users/share | Delete Share for document(s) |
| CollaborationControllerApi | delete_team | DELETE /api/v1/users/teams/{teamId} | Delete a team |
| CollaborationControllerApi | get_team_members | GET /api/v1/users/teams/{teamId}/members | Get team members |
| CollaborationControllerApi | get_user_status | GET /api/v1/users/me/status | Check user status |
| CollaborationControllerApi | reject_share_request | DELETE /api/v1/users/share-requests/{id} | Reject a share request |
| CollaborationControllerApi | remove_team_members | DELETE /api/v1/users/teams/{teamId}/members | Remove team members |
| CollaborationControllerApi | update_shared_documents | PUT /api/v1/users/share | Update Share for document(s) |
| CollaborationControllerApi | update_team | PUT /api/v1/users/teams/{teamId} | Update a team |
| CollaborationControllerApi | update_user | PUT /api/v1/users/{userId} | Update a user |
| DocumentControllerApi | create_blank_document | POST /api/v1/documents/create-blank | Create a blank document from template |
| DocumentControllerApi | delete_document_metadata | DELETE /api/v1/documents/{documentId}/metadata | Delete specific metadata keys |
| DocumentControllerApi | download_document | GET /api/v1/documents/{documentId}/download | Download a document |
| DocumentControllerApi | download_for_only_office | GET /api/v1/documents/{documentId}/onlyoffice-download | Download document for OnlyOffice |
| DocumentControllerApi | download_multiple_documents_as_zip | POST /api/v1/documents/download-multiple | Download multiple documents as ZIP |
| DocumentControllerApi | get_document_ancestors | GET /api/v1/documents/{documentId}/ancestors | Get document ancestors |
| DocumentControllerApi | get_document_info | GET /api/v1/documents/{documentId}/info | Get information of a document |
| DocumentControllerApi | get_document_metadata | POST /api/v1/documents/{documentId}/search/metadata | Search metadata of a document |
| DocumentControllerApi | get_document_position | GET /api/v1/documents/{documentId}/position | Get document position in folder |
| DocumentControllerApi | replace_document_content | PUT /api/v1/documents/{documentId}/replace-content | Replace document content |
| DocumentControllerApi | replace_document_metadata | PUT /api/v1/documents/{documentId}/replace-metadata | Replace document metadata |
| DocumentControllerApi | search_document_ids_by_metadata | POST /api/v1/documents/search/ids-by-metadata | Search document IDs by metadata |
| DocumentControllerApi | update_document_metadata | PATCH /api/v1/documents/{documentId}/metadata | Update document metadata |
| DocumentControllerApi | upload_document | POST /api/v1/documents/upload-multiple | Upload multiple documents |
| DocumentControllerApi | upload_document1 | POST /api/v1/documents/upload | Upload a single document |
| DocumentSuggestionControllerApi | get_suggestions | GET /api/v1/suggestions | |
| DocumentVersionControllerApi | download_version | GET /api/v1/documents/{documentId}/versions/{versionId}/download | Download a specific document version |
| DocumentVersionControllerApi | list_versions | GET /api/v1/documents/{documentId}/versions | List document versions |
| DocumentVersionControllerApi | restore_version | POST /api/v1/documents/{documentId}/versions/{versionId}/restore | Restore a previous document version |
| ESignApi | cancel1 | POST /api/v1/signatures/{id}/cancel | Cancel a non-terminal envelope |
| ESignApi | cloud_subscription | GET /api/v1/signatures/cloud-subscription | Cloud Signing subscription and month-to-date usage (openfilz-cloud seal provider only) |
| ESignApi | create | POST /api/v1/signatures | Create an envelope (sent immediately unless send=false) |
| ESignApi | events | GET /api/v1/signatures/{id}/events | Audit trail of one of my envelopes |
| ESignApi | get3 | GET /api/v1/signatures/{id} | Get one of my envelopes (recipients + fields) |
| ESignApi | list_sent | GET /api/v1/signatures | List envelopes I sent for signature |
| ESignApi | list_to_sign | GET /api/v1/signatures/to-sign | List envelopes waiting for my signature |
| ESignApi | resend | POST /api/v1/signatures/{id}/recipients/{recipientId}/resend | Resend the signing link to a recipient (new token, previous one revoked) |
| ESignApi | send | POST /api/v1/signatures/{id}/send | Send a DRAFT envelope |
| ESignApi | signed_document | GET /api/v1/signatures/{id}/signed-document | Download the sealed PDF of a completed envelope |
| ESignTemplatesApi | create1 | POST /api/v1/signature-templates | Create a template |
| ESignTemplatesApi | delete | DELETE /api/v1/signature-templates/{id} | Delete a template |
| ESignTemplatesApi | get1 | GET /api/v1/signature-templates/{id} | Get a template |
| ESignTemplatesApi | instantiate | POST /api/v1/signature-templates/{id}/envelopes | Create (and send) an envelope from a template |
| ESignTemplatesApi | list | GET /api/v1/signature-templates | List my templates |
| ESignTemplatesApi | update1 | PUT /api/v1/signature-templates/{id} | Update a template |
| ESignEnterpriseApi | archive | GET /api/v1/signatures/{id}/archive | PDF/A-2b archive + veraPDF compliance for a completed envelope |
| ESignEnterpriseApi | bulk | POST /api/v1/signatures/bulk | Create (and send) one envelope per row from a template |
| ESignEnterpriseApi | embed_url | POST /api/v1/signatures/{id}/recipients/{recipientId}/embed-url | Mint an embedded-signing URL for a recipient (rotates the token; no email is sent) |
| ESignPublicApi | decline1 | POST /api/v1/public/signatures/decline | Decline to sign (voids the envelope) |
| ESignPublicApi | document | GET /api/v1/public/signatures/document | Stream the source PDF for signing |
| ESignPublicApi | mark_viewed | POST /api/v1/public/signatures/viewed | Record that the recipient opened the document |
| ESignPublicApi | request_otp | POST /api/v1/public/signatures/otp/request | Send a one-time access code to the recipient (EMAIL_OTP / SMS_OTP) |
| ESignPublicApi | sign | POST /api/v1/public/signatures/sign | Submit the recipient's fields and sign |
| ESignPublicApi | verify_otp | POST /api/v1/public/signatures/otp/verify | Verify the one-time access code |
| ESignPublicApi | view | GET /api/v1/public/signatures | Resolve a signing token to its envelope view |
| FileControllerApi | copy_files | POST /api/v1/files/copy | Copy files |
| FileControllerApi | delete_files | DELETE /api/v1/files | Delete files |
| FileControllerApi | move_files | POST /api/v1/files/move | Move files |
| FileControllerApi | rename_file | PUT /api/v1/files/{fileId}/rename | Rename a file |
| FolderControllerApi | copy_folders | POST /api/v1/folders/copy | Copy folders |
| FolderControllerApi | count_folder_elements | GET /api/v1/folders/count | Count files and subfolders contained in a given folder - return 0 if empty or not exists |
| FolderControllerApi | create_folder | POST /api/v1/folders | Create a new folder |
| FolderControllerApi | delete_folders | DELETE /api/v1/folders | Delete folders |
| FolderControllerApi | list_folder | GET /api/v1/folders/list | List files and subfolders contained in a given folder |
| FolderControllerApi | move_folders | POST /api/v1/folders/move | Move folders |
| FolderControllerApi | rename_folder | PUT /api/v1/folders/{folderId}/rename | Rename a folder |
| McpDiscoveryControllerApi | authorization_server_metadata | GET /.well-known/oauth-authorization-server | |
| McpDiscoveryControllerApi | protected_resource_metadata | GET /.well-known/oauth-protected-resource | |
| McpTokenAdminControllerApi | list1 | GET /api/v1/admin/mcp/tokens | List minted MCP agent tokens (never returns the credentials) |
| McpTokenAdminControllerApi | mint | POST /api/v1/admin/mcp/tokens | Mint an MCP agent token for a dedicated user (admin only) |
| McpTokenAdminControllerApi | revoke1 | DELETE /api/v1/admin/mcp/tokens/{jti} | Revoke an MCP agent token |
| TusControllerApi | cancel_upload | DELETE /api/v1/tus/{uploadId} | Cancel upload |
| TusControllerApi | create_upload | POST /api/v1/tus | Create new TUS upload |
| TusControllerApi | finalize_upload | POST /api/v1/tus/{uploadId}/finalize | Finalize upload |
| TusControllerApi | get_config | GET /api/v1/tus/config | Get TUS configuration |
| TusControllerApi | get_upload_info | GET /api/v1/tus/{uploadId}/info | Get upload information |
| TusControllerApi | get_upload_offset | HEAD /api/v1/tus/{uploadId} | Get upload progress |
| TusControllerApi | is_upload_complete | GET /api/v1/tus/{uploadId}/complete | Check upload completion |
| TusControllerApi | options | OPTIONS /api/v1/tus | TUS capability discovery |
| TusControllerApi | upload_chunk | PATCH /api/v1/tus/{uploadId} | Upload chunk |
| UploadTokenControllerApi | mint_upload_token | POST /api/v1/upload-tokens | Mint a scoped upload token |
| UploadTokenControllerApi | upload_with_token | POST /api/v1/upload-tokens/upload | Upload a single document with a scoped upload token |
| WebhookProxyControllerApi | proxy | GET /api/v1/webhooks/** | |
| WebhookProxyControllerApi | proxy1 | POST /api/v1/webhooks/** | |
| WebhookProxyControllerApi | proxy2 | PUT /api/v1/webhooks/** | |
| WebhookProxyControllerApi | proxy3 | DELETE /api/v1/webhooks/** | |
| WebhookProxyControllerApi | proxy4 | PATCH /api/v1/webhooks/** | |
| WebhookProxyControllerApi | proxy5 | HEAD /api/v1/webhooks/** | |
| WebhookProxyControllerApi | proxy6 | OPTIONS /api/v1/webhooks/** |
Documentation For Models
- AiChatConversation
- AiChatRequest
- AiChatResponse
- AiConnectionTestResult
- AiModelsResponse
- AiPreferencesView
- AiSettingsResponse
- AncestorInfo
- ApplySignatureRequest
- AuditLogDetails
- AuditVerificationResult
- AutoFileJobView
- AutoFileRequest
- AutoFileTicket
- BrokenLink
- BulkRow
- BulkRowResult
- BulkSendRequest
- BulkSendResponse
- CancelInstanceRequest
- CloudSignatureSubscription
- CommentDTO
- CompleteTaskRequest
- ConsumeDelegatedGrantRequest
- CopyAudit
- CopyRequest
- CopyResponse
- CreateBlankDocumentRequest
- CreateCommentRequest
- CreateDelegatedGrantRequest
- CreateFolderAudit
- CreateFolderRequest
- CreateSignatureEnvelopeRequest
- CreateTeamRequest
- DashboardStatisticsResponse
- DeclineSignatureRequest
- DelegatedFolderNode
- DelegatedGrantDTO
- DeleteAudit
- DeleteMetadataAudit
- DeleteMetadataRequest
- DeleteRequest
- DeleteShareRequest
- DocumentInfo
- DocumentInsightView
- DocumentPosition
- DocumentVersionInfo
- ElementInfo
- EmbedUrlResponse
- EmbeddingBackfillRequest
- EmbeddingBackfillStatus
- EnrichedAuditLog
- EnrichedAuditLogDetails
- FeatureEntitlement
- FileTypeStats
- FilingOutcome
- FilterInput
- FolderElementInfo
- FolderResponse
- IngestionStatusDto
- InsightBackfillRequest
- InsightBackfillStatus
- InsightCategoryUpdate
- InstantiateTemplateRequest
- Item
- ItemResult
- LicenseInfo
- ListAiModelsRequest
- McpAgentTokenInfo
- McpAgentTokenResponse
- MergeRequest
- MergeSource
- MintMcpAgentTokenRequest
- MintUploadTokenRequest
- MoveAudit
- MoveRequest
- MyTasksCountDTO
- NotificationDTO
- OrganizeRequest
- OutputTarget
- PageInstruction
- PdfInfo
- PdfOperationResponse
- PdfOutlineEntry
- PdfOutputInfo
- PdfPageInfo
- PdfTransformAudit
- PerDefinition
- PublicSignatureView
- ReassignTaskRequest
- RenameAudit
- RenameRequest
- ReorganizationApplyRequest
- ReorganizationApplyResult
- ReorganizationByKindRequest
- ReorganizationPlanView
- ReplaceAudit
- Response
- RestoreVersionAudit
- RestoreVersionResponse
- RoleBinding
- RotateRequest
- SaveAiPreferencesRequest
- SaveAiSettingsRequest
- SaveWorkflowDefinitionRequest
- ScanJobStatusDto
- ScanRequestDto
- ScannerInfoDto
- SearchByAuditLogRequest
- SearchByMetadataRequest
- SearchMetadataRequest
- Settings
- ShareRequest
- ShareResultError
- ShareResultItem
- ShareResultResponse
- SignatureArchiveDTO
- SignatureEnvelopeDTO
- SignatureEventDTO
- SignatureFieldDTO
- SignatureFieldInput
- SignatureFieldPlacement
- SignatureFieldValue
- SignatureRecipientDTO
- SignatureRecipientInput
- SignatureTemplateDTO
- SignatureTemplateField
- SignatureTemplateRequest
- SignatureTemplateRole
- SortInput
- SplitOutput
- SplitRequest
- StartWorkflowRequest
- StorageBreakdown
- Suggest
- TeamMemberInfo
- TusConfigResponse
- TusFinalizeRequest
- TusUploadInfo
- UpdateCommentRequest
- UpdateMetadataAudit
- UpdateMetadataRequest
- UpdateTeamRequest
- UpdateUserPrivacyRequest
- UpdateUserRequest
- UploadAudit
- UploadResponse
- UploadTokenResponse
- UserPreferencesRequest
- UserPrivacyDTO
- UserRegistrationRequest
- VerifyOtpRequest
- WorkflowAction
- WorkflowActionFailureAudit
- WorkflowAssignment
- WorkflowAudit
- WorkflowDefinitionDTO
- WorkflowEventDTO
- WorkflowInstanceDTO
- WorkflowInstanceDetailDTO
- WorkflowInstancePage
- WorkflowProblem
- WorkflowSpec
- WorkflowState
- WorkflowSummaryDTO
- WorkflowTaskDTO
- WorkflowTransition
- WorkflowValidationResult
Documentation For Authorization
Authentication schemes defined for the API:
keycloak_auth
- Type: Bearer authentication (JWT)
Author
Release files for openfilz-ee-sdk 1.9.10
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| openfilz_ee_sdk-1.9.10.tar.gz | 199.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| openfilz_ee_sdk-1.9.10-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 586.3 kB
Release files / openfilz_ee_sdk-1.9.10.tar.gz
| Download URL | openfilz_ee_sdk-1.9.10.tar.gz |
|---|---|
| Size | 199.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
9226798b75e694b5287b578998963790409f3cc18c4cb98c234e3a9b66b2b8b0
|
|
BLAKE2b-256 checksum How to use checksums |
d7e2ab1e61406010671828e0ec64452c3dfa7ae845cc705364ee015745d84a14
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.12.3
|
Release files / openfilz_ee_sdk-1.9.10-py3-none-any.whl
| Download URL | openfilz_ee_sdk-1.9.10-py3-none-any.whl |
|---|---|
| Size | 387.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
d78fb6eb99bd745264bec8cf8d950e3863d24748891f88cd6a733db01a6dd3ea
|
|
BLAKE2b-256 checksum How to use checksums |
182dbb1602fee5fcea76a45e005a4050424a2a29c8fe079220993577e52c2cf8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.12.3
|