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

    Interface UploadVideoPartRequest

    Request parameters for upload_video_part

    Use this API to upload a video file in parts.

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

    Properties

    part_content: any

    The content of this part of file. Part size should be exactly equal to part_size returned in v2.media.init_video_upload, except last part of file.

    part_md5: string

    MD5 checksum of this part for data integrity validation.

    part_seq: number

    Sequence number of this part, starting from 0.

    video_upload_id: string

    The unique ID of the upload task, returned by v2.media.init_video_upload.