S.EE Docs
API リファレンス

非公開ファイルのダウンロードURLを取得

パスワード保護された非公開ファイル用の一時ダウンロードURLを生成します。

GET
/api/v1/file/private/download-url

Query Parameters

file_id*integer

File ID

Header Parameters

Authorization*string

API key

Response Body

application/json

curl -X GET "https://example.com/api/v1/file/private/download-url?file_id=0" \  -H "Authorization: string"
{  "code": 0,  "message": "string",  "data": {    "file_id": 0,    "url": "string",    "expires_at": 0  },  "success": true}