Shopee SDK API Reference - v2.8.0
    Preparing search index...

    Interface UploadVideoPartRequest

    Request parameters for upload_video_part

    Upload video file by part using the upload_id in initiate_video_upload.The request Content-Type of this API should be of multipart/form-data

    interface UploadVideoPartRequest {
        content_md5: string;
        part_content: any;
        part_seq: number;
        video_upload_id: string;
    }
    Index

    Properties

    content_md5: string

    md5 of this part

    part_content: any

    The content of this part of file. Part size should be exactly 4MB, except last part of file.

    part_seq: number

    Sequence of the current part, starts from 0

    video_upload_id: string

    The video_upload_id in the response of initiate_video_upload