Public
Retrieves public details of a file by its ID. No authentication required.
The ID of the file to read.
68679c0786ad78162a99d6af
GET /api/public/files/{file}/read HTTP/1.1
Host: uat.koneksi.co.kr
Accept: */*
{
"data": {
"access": "private",
"id": "68679c0786ad78162a99d6af",
"is_encrypted": false,
"size": 797374
},
"message": "file read successfully",
"meta": {
"status": "success"
}
}
Downloads a public file by its ID. No authentication required. For encrypted files, provide stream=false
in query params and a Passphrase
header. Optional password
header can be used for password-protected files. An optional key
query parameter can be provided as a temporary token for file access.
The ID of the file to download.
6853e14d78e8cc3e4c66fb
Set to false
to download encrypted files. Defaults to true
for streaming public files. Required if Passphrase
is provided.
false
Optional temporary token for downloading files.
abc123xyz
Passphrase required to decrypt an encrypted file. Must be provided with stream=false
for encrypted file downloads.
Test123!
Optional password for password-protected files.
Password123!
GET /api/public/files/{file}/download HTTP/1.1
Host: uat.koneksi.co.kr
Accept: */*
No content