/api/user/files/:id/password
Verify the password for a password-protected file.
Path Parameters
Name | Type | Description |
---|---|---|
id | string | The file's unique ID or file name. |
POST Request
Provide a password to check access to a specific file (by ID or name).
Body
Content-Type: application/json
Property | Type | Description |
---|---|---|
password | string | Required. The password to verify. |
Example
{"password": "yourpassword"}
Response
Status: 200 OK
Content-Type: application/json
Property | Type | Description |
---|---|---|
success | boolean | Will be true if the password was correct. |
Example
{"success": true}
Error Responses
-
403 Forbidden
If the password is incorrect
-
404 Not Found
If the file does not exist or doesn't have a password
/api/user/files/:id
View, update, or delete a specific file you own (by ID or filename).
/api/user/files/incomplete
View processing files that are incomplete or not fully processed yet.
Last updated: 6/1/2025
Edit this page on GitHub