Skip to main content

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.10.1
  • 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 get9 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
AIDirectoryApi teams GET /api/v1/admin/ai/directory/teams The teams of the DMS database (the ids the AI features store)
AIFilingRulesApi create3 POST /api/v1/admin/ai/filing-rules Create a filing rule
AIFilingRulesApi delete2 DELETE /api/v1/admin/ai/filing-rules/{id} Delete a filing rule (its events go with it)
AIFilingRulesApi events1 GET /api/v1/admin/ai/filing-rules/{id}/events What the rule did lately (MATCHED / DRY_RUN / SKIPPED), newest first
AIFilingRulesApi get6 GET /api/v1/admin/ai/filing-rules/{id} One filing rule
AIFilingRulesApi list3 GET /api/v1/admin/ai/filing-rules List the filing rules, by priority
AIFilingRulesApi test POST /api/v1/admin/ai/filing-rules/{id}/test Dry evaluation of the rule against an existing document
AIFilingRulesApi update3 PUT /api/v1/admin/ai/filing-rules/{id} Replace a filing rule
AIGovernanceApi get5 GET /api/v1/admin/ai/governance The AI governance settings in force
AIGovernanceApi put1 PUT /api/v1/admin/ai/governance Replace the AI governance settings
AITaxonomyApi get4 GET /api/v1/admin/ai/taxonomy The taxonomy and where it comes from
AITaxonomyApi put PUT /api/v1/admin/ai/taxonomy Replace the whole taxonomy
AITaxonomyApi rename POST /api/v1/admin/ai/taxonomy/{key}/rename Rename a kind
AITaxonomyApi reset POST /api/v1/admin/ai/taxonomy/reset Delete every managed kind: the properties list rules again
AITeamInboxesApi create2 POST /api/v1/admin/ai/team-inboxes Create a team inbox
AITeamInboxesApi delete1 DELETE /api/v1/admin/ai/team-inboxes/{id} Delete a team inbox (the folder and its documents stay)
AITeamInboxesApi get3 GET /api/v1/admin/ai/team-inboxes/{id} One team inbox, with its warnings
AITeamInboxesApi list2 GET /api/v1/admin/ai/team-inboxes List the team inboxes
AITeamInboxesApi run POST /api/v1/admin/ai/team-inboxes/{id}/run File the inbox now
AITeamInboxesApi update2 PUT /api/v1/admin/ai/team-inboxes/{id} Replace a team inbox
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 facets GET /api/v1/ai/insights/facets The category and language facets of the library
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 file_inbox POST /api/v1/ai/auto-file/inbox File everything lying loose in the caller's Inbox
SmartFilingApi job GET /api/v1/ai/auto-file/{jobId} Progress and outcome of a filing job
SmartFilingApi jobs POST /api/v1/ai/auto-file/jobs Progress and outcome of several filing jobs
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
AiAnalyticsAdminControllerApi analytics GET /api/v1/admin/ai/analytics Tenant-wide AI insights and smart-filing analytics (admin only)
AiArchivingAdminControllerApi create4 POST /api/v1/admin/ai/archiving/schedules Create an archiving schedule
AiArchivingAdminControllerApi delete3 DELETE /api/v1/admin/ai/archiving/schedules/{id} Delete an archiving schedule
AiArchivingAdminControllerApi get7 GET /api/v1/admin/ai/archiving/schedules/{id} Get an archiving schedule
AiArchivingAdminControllerApi propose POST /api/v1/admin/ai/archiving/propose Propose an archiving plan now (admin only)
AiArchivingAdminControllerApi run1 POST /api/v1/admin/ai/archiving/schedules/{id}/run Run an archiving schedule now
AiArchivingAdminControllerApi schedules GET /api/v1/admin/ai/archiving/schedules List archiving schedules
AiArchivingAdminControllerApi update4 PUT /api/v1/admin/ai/archiving/schedules/{id} Update an archiving schedule
AiCloudUsageAdminControllerApi cloud_usage GET /api/v1/admin/ai/cloud-usage OpenFilz Cloud AI usage of this deployment for the current month (admin only)
ArchiveControllerApi archive POST /api/v1/archive/documents/{documentId} Archive a document
ArchiveControllerApi archive_folder POST /api/v1/archive/folders/{folderId} Archive the caller's own files in a folder subtree
ArchiveControllerApi preflight GET /api/v1/archive/preflight/{documentId} What archiving this would actually do
ArchiveControllerApi reassign_owner PUT /api/v1/archive/documents/{documentId}/owner Hand custody of an archived document to another user
ArchiveControllerApi restore POST /api/v1/archive/documents/{archiveDocumentId}/restore Restore an archived document into this instance
CollaborationAuditControllerApi audit_integrity_status GET /api/v1/audit/verify/status Last scheduled audit chain verification
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_integrity GET /api/v1/documents/{documentId}/integrity Get a document's integrity ledger
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 get8 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 archive1 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

Documentation For Authorization

Authentication schemes defined for the API:

keycloak_auth

  • Type: Bearer authentication (JWT)

Author

Release files for openfilz-ee-sdk 1.10.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for openfilz-ee-sdk 1.10.1
File Size Uploaded
openfilz_ee_sdk-1.10.1.tar.gz 236.6 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for openfilz-ee-sdk 1.10.1
File Interpreter ABI Platform
openfilz_ee_sdk-1.10.1-py3-none-any.whl Python 3 none any Details

Total release size: 702.0 kB

Release files / openfilz_ee_sdk-1.10.1.tar.gz

Download URL openfilz_ee_sdk-1.10.1.tar.gz
Size 236.6 kB
Tags Source
SHA-256 checksum
How to use checksums
01c9f979d15f95cd713b119debf691f1cfa2e378f52f0ae336a6ad469ad44cf9
BLAKE2b-256 checksum
How to use checksums
3172b27c1150e3f1785d7db5bbba450132b69aa4ca4dc4635c562b96ff4cf473
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.10.1-py3-none-any.whl

Download URL openfilz_ee_sdk-1.10.1-py3-none-any.whl
Size 465.4 kB
Tags Python 3
SHA-256 checksum
How to use checksums
03c325f52a2df309562a585d1e2b97e9f9c34d8774a505eed8e70fabccd2a343
BLAKE2b-256 checksum
How to use checksums
e99e607c71faeb0f8c4eef6e2a49f790002c35bdcae47183db076a0ee3756371
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release history Release notifications | RSS feed

1.12.0

2 release files

1.11.0

2 release files

1.10.6

2 release files

1.10.5

2 release files

1.10.4

2 release files

1.10.3

2 release files

1.10.2

2 release files

This release

1.10.1 This release

2 release files

1.10.0

2 release files

1.9.9

2 release files

1.9.8

2 release files

1.9.7

2 release files

1.9.6

2 release files

1.9.5

2 release files

1.9.4

2 release files

1.9.3

2 release files

1.9.2

2 release files

1.9.1

2 release files

1.9.0

2 release files

1.8.19

2 release files

1.8.18

2 release files

1.8.17

2 release files

1.8.16

2 release files

1.8.15

2 release files

1.8.14

2 release files

1.8.13

2 release files

1.8.12

2 release files

1.8.11

2 release files

1.8.10

2 release files

1.8.9

2 release files

1.8.8

2 release files

1.8.7

2 release files

1.8.6

2 release files

1.8.5

2 release files

1.8.4

2 release files

1.8.3

2 release files

1.8.2

2 release files

1.8.1

2 release files

1.8.0

2 release files

1.7.5

2 release files

1.7.4

2 release files

1.7.3

2 release files

1.7.2

2 release files

1.7.1

2 release files

1.7.0

2 release files

1.6.9

2 release files

1.6.8

2 release files

1.6.7

2 release files

1.6.6

2 release files

1.6.5

2 release files

1.6.4

2 release files

1.6.3

2 release files

1.6.2

2 release files

1.6.1

2 release files

1.6.0

2 release files

1.5.3

2 release files

1.5.2

2 release files

1.5.1

2 release files

1.5.0

2 release files

1.4.4

2 release files

1.4.3

2 release files

1.4.2

2 release files

1.4.1

2 release files

1.3.5

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page