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}