DocuDesk API (1.0.0)
Download OpenAPI specification:Download
API documentation for DocuDesk, a document management application for Nextcloud
List all documents
Returns a list of all documents the user has access to
query Parameters
folder_id | string Filter documents by folder ID |
tag | string Filter documents by tag |
Responses
Response samples
- 200
- 401
[- {
- "id": "string",
- "name": "string",
- "description": "string",
- "file_id": "string",
- "folder_id": "string",
- "mime_type": "string",
- "size": 0,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
]
}
]
Create a new document
Creates a new document in the system
Request Body schema: application/jsonrequired
name required | string Name of the document |
description | string Description of the document |
file_id required | string Nextcloud file ID |
folder_id | string ID of the folder to place this document in |
tags | Array of strings List of tags to associate with the document |
Responses
Request samples
- Payload
{- "name": "string",
- "description": "string",
- "file_id": "string",
- "folder_id": "string",
- "tags": [
- "string"
]
}
Response samples
- 201
- 400
- 401
{- "id": "string",
- "name": "string",
- "description": "string",
- "file_id": "string",
- "folder_id": "string",
- "mime_type": "string",
- "size": 0,
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "tags": [
- "string"
]
}
List all files with privacy data
Returns a list of all files that contain privacy-related data
Responses
Response samples
- 200
- 401
[- {
- "id": "string",
- "file_id": "string",
- "file_name": "string",
- "file_path": "string",
- "mime_type": "string",
- "contains_personal_data": true,
- "data_categories": [
- "name"
], - "anonymization_status": "not_required",
- "anonymization_date": "2019-08-24T14:15:22Z",
- "retention_period": 0,
- "retention_expiry": "2019-08-24T14:15:22Z",
- "legal_basis": "consent",
- "data_controller": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
]
Get privacy data for a specific file
Returns the privacy data associated with a specific file
path Parameters
fileId required | string ID of the file to get privacy data for |
Responses
Response samples
- 200
- 401
- 404
{- "id": "string",
- "file_id": "string",
- "file_name": "string",
- "file_path": "string",
- "mime_type": "string",
- "contains_personal_data": true,
- "data_categories": [
- "name"
], - "anonymization_status": "not_required",
- "anonymization_date": "2019-08-24T14:15:22Z",
- "retention_period": 0,
- "retention_expiry": "2019-08-24T14:15:22Z",
- "legal_basis": "consent",
- "data_controller": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
Update privacy data for a file
Updates the privacy data associated with a specific file
path Parameters
fileId required | string ID of the file to update privacy data for |
Request Body schema: application/jsonrequired
contains_personal_data | boolean Whether the file contains personal data |
data_categories | Array of strings Items Enum: "name" "address" "email" "phone" "id_number" "financial" "health" "biometric" "location" "other" Categories of personal data contained in the file |
anonymization_status | string Enum: "not_required" "pending" "in_progress" "completed" "failed" Status of anonymization process |
anonymization_date | string <date-time> Date when the file was anonymized |
retention_period | integer Retention period in days (0 for indefinite) |
legal_basis | string Enum: "consent" "contract" "legal_obligation" "vital_interests" "public_interest" "legitimate_interests" Legal basis for processing the data under GDPR |
data_controller | string Name of the data controller |
Responses
Request samples
- Payload
{- "contains_personal_data": true,
- "data_categories": [
- "name"
], - "anonymization_status": "not_required",
- "anonymization_date": "2019-08-24T14:15:22Z",
- "retention_period": 0,
- "legal_basis": "consent",
- "data_controller": "string"
}
Response samples
- 200
- 400
- 401
- 404
{- "id": "string",
- "file_id": "string",
- "file_name": "string",
- "file_path": "string",
- "mime_type": "string",
- "contains_personal_data": true,
- "data_categories": [
- "name"
], - "anonymization_status": "not_required",
- "anonymization_date": "2019-08-24T14:15:22Z",
- "retention_period": 0,
- "retention_expiry": "2019-08-24T14:15:22Z",
- "legal_basis": "consent",
- "data_controller": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
List parsing logs
Returns a list of parsing logs for processed files
query Parameters
file_id | string Filter logs by file ID |
status | string Enum: "pending" "processing" "completed" "failed" Filter logs by parsing status |
from_date | string <date-time> Filter logs from this date (ISO format) |
to_date | string <date-time> Filter logs until this date (ISO format) |
Responses
Response samples
- 200
- 401
[- {
- "id": "string",
- "file_id": "string",
- "file_name": "string",
- "file_path": "string",
- "mime_type": "string",
- "parsing_type": "text_extraction",
- "status": "pending",
- "started_at": "2019-08-24T14:15:22Z",
- "completed_at": "2019-08-24T14:15:22Z",
- "duration_ms": 0,
- "result_summary": "string",
- "error_message": "string",
- "output_file_id": "string",
- "output_format": "string",
- "user_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
]
Create a new parsing log
Creates a new parsing log entry for a file
Request Body schema: application/jsonrequired
file_id required | string Nextcloud file ID of the file to parse |
file_name required | string Name of the file to parse |
file_path | string Path to the file in Nextcloud |
mime_type | string MIME type of the file |
parsing_type required | string Enum: "text_extraction" "metadata_extraction" "anonymization" "format_conversion" "accessibility_check" "validation" Type of parsing operation to perform |
output_format | string Desired format of the output file |
Responses
Request samples
- Payload
{- "file_id": "string",
- "file_name": "string",
- "file_path": "string",
- "mime_type": "string",
- "parsing_type": "text_extraction",
- "output_format": "string"
}
Response samples
- 201
- 400
- 401
{- "id": "string",
- "file_id": "string",
- "file_name": "string",
- "file_path": "string",
- "mime_type": "string",
- "parsing_type": "text_extraction",
- "status": "pending",
- "started_at": "2019-08-24T14:15:22Z",
- "completed_at": "2019-08-24T14:15:22Z",
- "duration_ms": 0,
- "result_summary": "string",
- "error_message": "string",
- "output_file_id": "string",
- "output_format": "string",
- "user_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
Get a specific parsing log
Returns a specific parsing log by ID
path Parameters
logId required | string ID of the parsing log to retrieve |
Responses
Response samples
- 200
- 401
- 404
{- "id": "string",
- "file_id": "string",
- "file_name": "string",
- "file_path": "string",
- "mime_type": "string",
- "parsing_type": "text_extraction",
- "status": "pending",
- "started_at": "2019-08-24T14:15:22Z",
- "completed_at": "2019-08-24T14:15:22Z",
- "duration_ms": 0,
- "result_summary": "string",
- "error_message": "string",
- "output_file_id": "string",
- "output_format": "string",
- "user_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
Update a parsing log
Updates a specific parsing log entry
path Parameters
logId required | string ID of the parsing log to update |
Request Body schema: application/jsonrequired
status | string Enum: "pending" "processing" "completed" "failed" Status of the parsing operation |
completed_at | string <date-time> When the parsing operation completed |
duration_ms | integer Duration of the parsing operation in milliseconds |
result_summary | string Summary of the parsing result |
error_message | string Error message if the parsing failed |
output_file_id | string ID of the output file |
Responses
Request samples
- Payload
{- "status": "pending",
- "completed_at": "2019-08-24T14:15:22Z",
- "duration_ms": 0,
- "result_summary": "string",
- "error_message": "string",
- "output_file_id": "string"
}
Response samples
- 200
- 400
- 401
- 404
{- "id": "string",
- "file_id": "string",
- "file_name": "string",
- "file_path": "string",
- "mime_type": "string",
- "parsing_type": "text_extraction",
- "status": "pending",
- "started_at": "2019-08-24T14:15:22Z",
- "completed_at": "2019-08-24T14:15:22Z",
- "duration_ms": 0,
- "result_summary": "string",
- "error_message": "string",
- "output_file_id": "string",
- "output_format": "string",
- "user_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
List all document reports
Returns a list of all document analysis reports
query Parameters
node_id | string Filter reports by Nextcloud node ID |
status | string Enum: "pending" "processing" "completed" "failed" Filter reports by status |
Responses
Response samples
- 200
- 401
[- {
- "id": "string",
- "node_id": "string",
- "file_name": "string",
- "file_path": "string",
- "file_hash": "string",
- "mime_type": "string",
- "file_size": 0,
- "status": "pending",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "completed_at": "2019-08-24T14:15:22Z",
- "error_message": "string",
- "anonymization_results": {
- "contains_personal_data": true,
- "personal_data_count": 0,
- "data_categories": {
- "property1": 0,
- "property2": 0
}, - "detected_entities": [
- {
- "entity_type": "name",
- "text": "string",
- "position": {
- "page": 0,
- "start_offset": 0,
- "end_offset": 0
}, - "confidence": 1
}
], - "anonymization_suggestions": [
- {
- "entity_id": "string",
- "original_text": "string",
- "suggested_replacement": "string",
- "anonymization_method": "redaction"
}
], - "confidence_score": 1
}, - "wcag_compliance_results": {
- "compliance_level": "A",
- "total_issues": 0,
- "issues_by_severity": {
- "critical": 0,
- "serious": 0,
- "moderate": 0,
- "minor": 0
}, - "issues_by_principle": {
- "perceivable": 0,
- "operable": 0,
- "understandable": 0,
- "robust": 0
}, - "detailed_issues": [
- {
- "issue_id": "string",
- "wcag_criterion": "string",
- "severity": "critical",
- "principle": "perceivable",
- "description": "string",
- "location": {
- "page": 0,
- "element": "string"
}, - "recommendation": "string"
}
], - "compliance_score": 100
}, - "language_level_results": {
- "primary_language": "string",
- "language_confidence": 1,
- "readability_scores": {
- "flesch_kincaid": 0.1,
- "flesch_reading_ease": 0.1,
- "smog_index": 0.1,
- "coleman_liau_index": 0.1,
- "automated_readability_index": 0.1,
- "dale_chall_readability_score": 0.1
}, - "complexity_metrics": {
- "average_sentence_length": 0.1,
- "average_word_length": 0.1,
- "complex_word_percentage": 0.1,
- "passive_voice_percentage": 0.1
}, - "education_level": "elementary",
- "language_improvement_suggestions": [
- {
- "suggestion_id": "string",
- "suggestion_type": "simplify",
- "original_text": "string",
- "suggested_text": "string",
- "location": {
- "page": 0,
- "paragraph": 0,
- "start_offset": 0,
- "end_offset": 0
}, - "explanation": "string"
}
], - "overall_language_score": 100
}, - "user_id": "string"
}
]
Create a new document report
Creates a new document analysis report
Request Body schema: application/jsonrequired
node_id required | string Nextcloud node ID of the document |
file_name required | string Name of the document |
file_path | string Path to the document in Nextcloud |
file_hash required | string Hash of the file content |
mime_type | string MIME type of the document |
file_size | integer Size of the document in bytes |
analysis_types required | Array of strings Items Enum: "anonymization" "wcag_compliance" "language_level" Types of analysis to perform |
Responses
Request samples
- Payload
{- "node_id": "string",
- "file_name": "string",
- "file_path": "string",
- "file_hash": "string",
- "mime_type": "string",
- "file_size": 0,
- "analysis_types": [
- "anonymization"
]
}
Response samples
- 201
- 400
- 401
{- "id": "string",
- "node_id": "string",
- "file_name": "string",
- "file_path": "string",
- "file_hash": "string",
- "mime_type": "string",
- "file_size": 0,
- "status": "pending",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "completed_at": "2019-08-24T14:15:22Z",
- "error_message": "string",
- "anonymization_results": {
- "contains_personal_data": true,
- "personal_data_count": 0,
- "data_categories": {
- "property1": 0,
- "property2": 0
}, - "detected_entities": [
- {
- "entity_type": "name",
- "text": "string",
- "position": {
- "page": 0,
- "start_offset": 0,
- "end_offset": 0
}, - "confidence": 1
}
], - "anonymization_suggestions": [
- {
- "entity_id": "string",
- "original_text": "string",
- "suggested_replacement": "string",
- "anonymization_method": "redaction"
}
], - "confidence_score": 1
}, - "wcag_compliance_results": {
- "compliance_level": "A",
- "total_issues": 0,
- "issues_by_severity": {
- "critical": 0,
- "serious": 0,
- "moderate": 0,
- "minor": 0
}, - "issues_by_principle": {
- "perceivable": 0,
- "operable": 0,
- "understandable": 0,
- "robust": 0
}, - "detailed_issues": [
- {
- "issue_id": "string",
- "wcag_criterion": "string",
- "severity": "critical",
- "principle": "perceivable",
- "description": "string",
- "location": {
- "page": 0,
- "element": "string"
}, - "recommendation": "string"
}
], - "compliance_score": 100
}, - "language_level_results": {
- "primary_language": "string",
- "language_confidence": 1,
- "readability_scores": {
- "flesch_kincaid": 0.1,
- "flesch_reading_ease": 0.1,
- "smog_index": 0.1,
- "coleman_liau_index": 0.1,
- "automated_readability_index": 0.1,
- "dale_chall_readability_score": 0.1
}, - "complexity_metrics": {
- "average_sentence_length": 0.1,
- "average_word_length": 0.1,
- "complex_word_percentage": 0.1,
- "passive_voice_percentage": 0.1
}, - "education_level": "elementary",
- "language_improvement_suggestions": [
- {
- "suggestion_id": "string",
- "suggestion_type": "simplify",
- "original_text": "string",
- "suggested_text": "string",
- "location": {
- "page": 0,
- "paragraph": 0,
- "start_offset": 0,
- "end_offset": 0
}, - "explanation": "string"
}
], - "overall_language_score": 100
}, - "user_id": "string"
}
Get a specific document report
Returns a specific document analysis report by ID
path Parameters
reportId required | string ID of the report to retrieve |
Responses
Response samples
- 200
- 401
- 404
{- "id": "string",
- "node_id": "string",
- "file_name": "string",
- "file_path": "string",
- "file_hash": "string",
- "mime_type": "string",
- "file_size": 0,
- "status": "pending",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "completed_at": "2019-08-24T14:15:22Z",
- "error_message": "string",
- "anonymization_results": {
- "contains_personal_data": true,
- "personal_data_count": 0,
- "data_categories": {
- "property1": 0,
- "property2": 0
}, - "detected_entities": [
- {
- "entity_type": "name",
- "text": "string",
- "position": {
- "page": 0,
- "start_offset": 0,
- "end_offset": 0
}, - "confidence": 1
}
], - "anonymization_suggestions": [
- {
- "entity_id": "string",
- "original_text": "string",
- "suggested_replacement": "string",
- "anonymization_method": "redaction"
}
], - "confidence_score": 1
}, - "wcag_compliance_results": {
- "compliance_level": "A",
- "total_issues": 0,
- "issues_by_severity": {
- "critical": 0,
- "serious": 0,
- "moderate": 0,
- "minor": 0
}, - "issues_by_principle": {
- "perceivable": 0,
- "operable": 0,
- "understandable": 0,
- "robust": 0
}, - "detailed_issues": [
- {
- "issue_id": "string",
- "wcag_criterion": "string",
- "severity": "critical",
- "principle": "perceivable",
- "description": "string",
- "location": {
- "page": 0,
- "element": "string"
}, - "recommendation": "string"
}
], - "compliance_score": 100
}, - "language_level_results": {
- "primary_language": "string",
- "language_confidence": 1,
- "readability_scores": {
- "flesch_kincaid": 0.1,
- "flesch_reading_ease": 0.1,
- "smog_index": 0.1,
- "coleman_liau_index": 0.1,
- "automated_readability_index": 0.1,
- "dale_chall_readability_score": 0.1
}, - "complexity_metrics": {
- "average_sentence_length": 0.1,
- "average_word_length": 0.1,
- "complex_word_percentage": 0.1,
- "passive_voice_percentage": 0.1
}, - "education_level": "elementary",
- "language_improvement_suggestions": [
- {
- "suggestion_id": "string",
- "suggestion_type": "simplify",
- "original_text": "string",
- "suggested_text": "string",
- "location": {
- "page": 0,
- "paragraph": 0,
- "start_offset": 0,
- "end_offset": 0
}, - "explanation": "string"
}
], - "overall_language_score": 100
}, - "user_id": "string"
}
Update a document report
Updates a specific document analysis report
path Parameters
reportId required | string ID of the report to update |
Request Body schema: application/jsonrequired
status | string Enum: "pending" "processing" "completed" "failed" Status of the report generation |
completed_at | string <date-time> When the report generation was completed |
error_message | string Error message if report generation failed |
object (AnonymizationResults) Results of anonymization analysis | |
object (WcagComplianceResults) Results of WCAG compliance analysis | |
object (LanguageLevelResults) Results of language level analysis |
Responses
Request samples
- Payload
{- "status": "pending",
- "completed_at": "2019-08-24T14:15:22Z",
- "error_message": "string",
- "anonymization_results": {
- "contains_personal_data": true,
- "personal_data_count": 0,
- "data_categories": {
- "property1": 0,
- "property2": 0
}, - "detected_entities": [
- {
- "entity_type": "name",
- "text": "string",
- "position": {
- "page": 0,
- "start_offset": 0,
- "end_offset": 0
}, - "confidence": 1
}
], - "anonymization_suggestions": [
- {
- "entity_id": "string",
- "original_text": "string",
- "suggested_replacement": "string",
- "anonymization_method": "redaction"
}
], - "confidence_score": 1
}, - "wcag_compliance_results": {
- "compliance_level": "A",
- "total_issues": 0,
- "issues_by_severity": {
- "critical": 0,
- "serious": 0,
- "moderate": 0,
- "minor": 0
}, - "issues_by_principle": {
- "perceivable": 0,
- "operable": 0,
- "understandable": 0,
- "robust": 0
}, - "detailed_issues": [
- {
- "issue_id": "string",
- "wcag_criterion": "string",
- "severity": "critical",
- "principle": "perceivable",
- "description": "string",
- "location": {
- "page": 0,
- "element": "string"
}, - "recommendation": "string"
}
], - "compliance_score": 100
}, - "language_level_results": {
- "primary_language": "string",
- "language_confidence": 1,
- "readability_scores": {
- "flesch_kincaid": 0.1,
- "flesch_reading_ease": 0.1,
- "smog_index": 0.1,
- "coleman_liau_index": 0.1,
- "automated_readability_index": 0.1,
- "dale_chall_readability_score": 0.1
}, - "complexity_metrics": {
- "average_sentence_length": 0.1,
- "average_word_length": 0.1,
- "complex_word_percentage": 0.1,
- "passive_voice_percentage": 0.1
}, - "education_level": "elementary",
- "language_improvement_suggestions": [
- {
- "suggestion_id": "string",
- "suggestion_type": "simplify",
- "original_text": "string",
- "suggested_text": "string",
- "location": {
- "page": 0,
- "paragraph": 0,
- "start_offset": 0,
- "end_offset": 0
}, - "explanation": "string"
}
], - "overall_language_score": 100
}
}
Response samples
- 200
- 400
- 401
- 404
{- "id": "string",
- "node_id": "string",
- "file_name": "string",
- "file_path": "string",
- "file_hash": "string",
- "mime_type": "string",
- "file_size": 0,
- "status": "pending",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "completed_at": "2019-08-24T14:15:22Z",
- "error_message": "string",
- "anonymization_results": {
- "contains_personal_data": true,
- "personal_data_count": 0,
- "data_categories": {
- "property1": 0,
- "property2": 0
}, - "detected_entities": [
- {
- "entity_type": "name",
- "text": "string",
- "position": {
- "page": 0,
- "start_offset": 0,
- "end_offset": 0
}, - "confidence": 1
}
], - "anonymization_suggestions": [
- {
- "entity_id": "string",
- "original_text": "string",
- "suggested_replacement": "string",
- "anonymization_method": "redaction"
}
], - "confidence_score": 1
}, - "wcag_compliance_results": {
- "compliance_level": "A",
- "total_issues": 0,
- "issues_by_severity": {
- "critical": 0,
- "serious": 0,
- "moderate": 0,
- "minor": 0
}, - "issues_by_principle": {
- "perceivable": 0,
- "operable": 0,
- "understandable": 0,
- "robust": 0
}, - "detailed_issues": [
- {
- "issue_id": "string",
- "wcag_criterion": "string",
- "severity": "critical",
- "principle": "perceivable",
- "description": "string",
- "location": {
- "page": 0,
- "element": "string"
}, - "recommendation": "string"
}
], - "compliance_score": 100
}, - "language_level_results": {
- "primary_language": "string",
- "language_confidence": 1,
- "readability_scores": {
- "flesch_kincaid": 0.1,
- "flesch_reading_ease": 0.1,
- "smog_index": 0.1,
- "coleman_liau_index": 0.1,
- "automated_readability_index": 0.1,
- "dale_chall_readability_score": 0.1
}, - "complexity_metrics": {
- "average_sentence_length": 0.1,
- "average_word_length": 0.1,
- "complex_word_percentage": 0.1,
- "passive_voice_percentage": 0.1
}, - "education_level": "elementary",
- "language_improvement_suggestions": [
- {
- "suggestion_id": "string",
- "suggestion_type": "simplify",
- "original_text": "string",
- "suggested_text": "string",
- "location": {
- "page": 0,
- "paragraph": 0,
- "start_offset": 0,
- "end_offset": 0
}, - "explanation": "string"
}
], - "overall_language_score": 100
}, - "user_id": "string"
}
Get the latest report for a node
Returns the latest document analysis report for a specific Nextcloud node
path Parameters
nodeId required | string Nextcloud node ID |
Responses
Response samples
- 200
- 401
- 404
{- "id": "string",
- "node_id": "string",
- "file_name": "string",
- "file_path": "string",
- "file_hash": "string",
- "mime_type": "string",
- "file_size": 0,
- "status": "pending",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "completed_at": "2019-08-24T14:15:22Z",
- "error_message": "string",
- "anonymization_results": {
- "contains_personal_data": true,
- "personal_data_count": 0,
- "data_categories": {
- "property1": 0,
- "property2": 0
}, - "detected_entities": [
- {
- "entity_type": "name",
- "text": "string",
- "position": {
- "page": 0,
- "start_offset": 0,
- "end_offset": 0
}, - "confidence": 1
}
], - "anonymization_suggestions": [
- {
- "entity_id": "string",
- "original_text": "string",
- "suggested_replacement": "string",
- "anonymization_method": "redaction"
}
], - "confidence_score": 1
}, - "wcag_compliance_results": {
- "compliance_level": "A",
- "total_issues": 0,
- "issues_by_severity": {
- "critical": 0,
- "serious": 0,
- "moderate": 0,
- "minor": 0
}, - "issues_by_principle": {
- "perceivable": 0,
- "operable": 0,
- "understandable": 0,
- "robust": 0
}, - "detailed_issues": [
- {
- "issue_id": "string",
- "wcag_criterion": "string",
- "severity": "critical",
- "principle": "perceivable",
- "description": "string",
- "location": {
- "page": 0,
- "element": "string"
}, - "recommendation": "string"
}
], - "compliance_score": 100
}, - "language_level_results": {
- "primary_language": "string",
- "language_confidence": 1,
- "readability_scores": {
- "flesch_kincaid": 0.1,
- "flesch_reading_ease": 0.1,
- "smog_index": 0.1,
- "coleman_liau_index": 0.1,
- "automated_readability_index": 0.1,
- "dale_chall_readability_score": 0.1
}, - "complexity_metrics": {
- "average_sentence_length": 0.1,
- "average_word_length": 0.1,
- "complex_word_percentage": 0.1,
- "passive_voice_percentage": 0.1
}, - "education_level": "elementary",
- "language_improvement_suggestions": [
- {
- "suggestion_id": "string",
- "suggestion_type": "simplify",
- "original_text": "string",
- "suggested_text": "string",
- "location": {
- "page": 0,
- "paragraph": 0,
- "start_offset": 0,
- "end_offset": 0
}, - "explanation": "string"
}
], - "overall_language_score": 100
}, - "user_id": "string"
}
List anonymization logs
Returns a list of anonymization logs
query Parameters
node_id | string Filter logs by Nextcloud node ID |
status | string Enum: "pending" "processing" "completed" "failed" Filter logs by status |
Responses
Response samples
- 200
- 401
[- {
- "id": "string",
- "node_id": "string",
- "file_name": "string",
- "file_path": "string",
- "file_hash": "string",
- "mime_type": "string",
- "status": "pending",
- "started_at": "2019-08-24T14:15:22Z",
- "completed_at": "2019-08-24T14:15:22Z",
- "duration_ms": 0,
- "error_message": "string",
- "output_node_id": "string",
- "anonymization_key": "string",
- "original_text": "string",
- "anonymized_text": "string",
- "entity_replacements": [
- {
- "replacement_id": "string",
- "entity_type": "PERSON",
- "original_text": "string",
- "replacement_text": "string",
- "position": {
- "start_offset": 0,
- "end_offset": 0,
- "page": 0
}, - "confidence": 1
}
], - "entities_found": [
- {
- "entity_type": "PERSON",
- "text": "string",
- "score": 1,
- "position": {
- "start_offset": 0,
- "end_offset": 0,
- "page": 0
}
}
], - "total_entities_found": 0,
- "total_entities_replaced": 0,
- "confidence_threshold": 1,
- "user_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
]
Create a new anonymization log
Creates a new anonymization log entry
Request Body schema: application/jsonrequired
node_id required | string Nextcloud node ID of the document to anonymize |
file_name required | string Name of the document |
file_path | string Path to the document in Nextcloud |
file_hash | string Hash of the file content |
mime_type | string MIME type of the document |
confidence_threshold | number <float> [ 0 .. 1 ] Confidence threshold for entity detection (default 0.7) |
Responses
Request samples
- Payload
{- "node_id": "string",
- "file_name": "string",
- "file_path": "string",
- "file_hash": "string",
- "mime_type": "string",
- "confidence_threshold": 1
}
Response samples
- 201
- 400
- 401
{- "id": "string",
- "node_id": "string",
- "file_name": "string",
- "file_path": "string",
- "file_hash": "string",
- "mime_type": "string",
- "status": "pending",
- "started_at": "2019-08-24T14:15:22Z",
- "completed_at": "2019-08-24T14:15:22Z",
- "duration_ms": 0,
- "error_message": "string",
- "output_node_id": "string",
- "anonymization_key": "string",
- "original_text": "string",
- "anonymized_text": "string",
- "entity_replacements": [
- {
- "replacement_id": "string",
- "entity_type": "PERSON",
- "original_text": "string",
- "replacement_text": "string",
- "position": {
- "start_offset": 0,
- "end_offset": 0,
- "page": 0
}, - "confidence": 1
}
], - "entities_found": [
- {
- "entity_type": "PERSON",
- "text": "string",
- "score": 1,
- "position": {
- "start_offset": 0,
- "end_offset": 0,
- "page": 0
}
}
], - "total_entities_found": 0,
- "total_entities_replaced": 0,
- "confidence_threshold": 1,
- "user_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
Get a specific anonymization log
Returns a specific anonymization log by ID
path Parameters
logId required | string ID of the anonymization log to retrieve |
Responses
Response samples
- 200
- 401
- 404
{- "id": "string",
- "node_id": "string",
- "file_name": "string",
- "file_path": "string",
- "file_hash": "string",
- "mime_type": "string",
- "status": "pending",
- "started_at": "2019-08-24T14:15:22Z",
- "completed_at": "2019-08-24T14:15:22Z",
- "duration_ms": 0,
- "error_message": "string",
- "output_node_id": "string",
- "anonymization_key": "string",
- "original_text": "string",
- "anonymized_text": "string",
- "entity_replacements": [
- {
- "replacement_id": "string",
- "entity_type": "PERSON",
- "original_text": "string",
- "replacement_text": "string",
- "position": {
- "start_offset": 0,
- "end_offset": 0,
- "page": 0
}, - "confidence": 1
}
], - "entities_found": [
- {
- "entity_type": "PERSON",
- "text": "string",
- "score": 1,
- "position": {
- "start_offset": 0,
- "end_offset": 0,
- "page": 0
}
}
], - "total_entities_found": 0,
- "total_entities_replaced": 0,
- "confidence_threshold": 1,
- "user_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
Update an anonymization log
Updates a specific anonymization log entry
path Parameters
logId required | string ID of the anonymization log to update |
Request Body schema: application/jsonrequired
status | string Enum: "pending" "processing" "completed" "failed" Status of the anonymization operation |
completed_at | string <date-time> When the anonymization operation completed |
duration_ms | integer Duration of the anonymization operation in milliseconds |
error_message | string Error message if anonymization failed |
output_node_id | string Nextcloud node ID of the anonymized document |
original_text | string Original text of the document |
anonymized_text | string Anonymized text of the document |
Array of objects (EntityReplacement) List of entity replacements made during anonymization | |
Array of objects (EntityFound) List of entities found during anonymization | |
total_entities_found | integer Total number of entities found |
total_entities_replaced | integer Total number of entities replaced |
Responses
Request samples
- Payload
{- "status": "pending",
- "completed_at": "2019-08-24T14:15:22Z",
- "duration_ms": 0,
- "error_message": "string",
- "output_node_id": "string",
- "original_text": "string",
- "anonymized_text": "string",
- "entity_replacements": [
- {
- "replacement_id": "string",
- "entity_type": "PERSON",
- "original_text": "string",
- "replacement_text": "string",
- "position": {
- "start_offset": 0,
- "end_offset": 0,
- "page": 0
}, - "confidence": 1
}
], - "entities_found": [
- {
- "entity_type": "PERSON",
- "text": "string",
- "score": 1,
- "position": {
- "start_offset": 0,
- "end_offset": 0,
- "page": 0
}
}
], - "total_entities_found": 0,
- "total_entities_replaced": 0
}
Response samples
- 200
- 400
- 401
- 404
{- "id": "string",
- "node_id": "string",
- "file_name": "string",
- "file_path": "string",
- "file_hash": "string",
- "mime_type": "string",
- "status": "pending",
- "started_at": "2019-08-24T14:15:22Z",
- "completed_at": "2019-08-24T14:15:22Z",
- "duration_ms": 0,
- "error_message": "string",
- "output_node_id": "string",
- "anonymization_key": "string",
- "original_text": "string",
- "anonymized_text": "string",
- "entity_replacements": [
- {
- "replacement_id": "string",
- "entity_type": "PERSON",
- "original_text": "string",
- "replacement_text": "string",
- "position": {
- "start_offset": 0,
- "end_offset": 0,
- "page": 0
}, - "confidence": 1
}
], - "entities_found": [
- {
- "entity_type": "PERSON",
- "text": "string",
- "score": 1,
- "position": {
- "start_offset": 0,
- "end_offset": 0,
- "page": 0
}
}
], - "total_entities_found": 0,
- "total_entities_replaced": 0,
- "confidence_threshold": 1,
- "user_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
Get the latest anonymization log for a node
Returns the latest anonymization log for a specific Nextcloud node
path Parameters
nodeId required | string Nextcloud node ID |
Responses
Response samples
- 200
- 401
- 404
{- "id": "string",
- "node_id": "string",
- "file_name": "string",
- "file_path": "string",
- "file_hash": "string",
- "mime_type": "string",
- "status": "pending",
- "started_at": "2019-08-24T14:15:22Z",
- "completed_at": "2019-08-24T14:15:22Z",
- "duration_ms": 0,
- "error_message": "string",
- "output_node_id": "string",
- "anonymization_key": "string",
- "original_text": "string",
- "anonymized_text": "string",
- "entity_replacements": [
- {
- "replacement_id": "string",
- "entity_type": "PERSON",
- "original_text": "string",
- "replacement_text": "string",
- "position": {
- "start_offset": 0,
- "end_offset": 0,
- "page": 0
}, - "confidence": 1
}
], - "entities_found": [
- {
- "entity_type": "PERSON",
- "text": "string",
- "score": 1,
- "position": {
- "start_offset": 0,
- "end_offset": 0,
- "page": 0
}
}
], - "total_entities_found": 0,
- "total_entities_replaced": 0,
- "confidence_threshold": 1,
- "user_id": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
De-anonymize a document
Restores the original text in an anonymized document using the anonymization key
Request Body schema: application/jsonrequired
anonymized_node_id required | string Nextcloud node ID of the anonymized document |
anonymization_key required | string Key used to de-anonymize the document |
Responses
Request samples
- Payload
{- "anonymized_node_id": "string",
- "anonymization_key": "string"
}
Response samples
- 200
- 400
- 401
- 404
{- "original_node_id": "string",
- "success": true
}