Appearance
멀티파트 업로드 완료 Default
POST/files/{id}/upload.completeCopied!
멀티파트 파일 업로드를 완료해요.
접근 가능한 사용자
사용자
Request
Body
partsarrayrequired업로드 완료할 파트 목록
parts[].partNumbernumberrequired파트 번호
parts[].eTagstringrequired업로드된 파트 ETag
Path
idstringrequired 파일 ID
Response
Returns 201 Created.
없음
Example
bash
curl -X POST 'https://api.youvico.com/files/6ba7b810-9dad-11d1-80b4-00c04fd430c8/upload.complete' \
-H 'Authorization: Bearer xoau.aB3xK9p2QwR7sT4uV1nM8oP5qL6rN0yZ7eF2gH4jK...' \
-H 'Content-Type: application/json' \
-d '{
"parts": [
{
"partNumber": 1,
"eTag": "etag-value"
}
]
}'