video_upload_result_push
Last Updated: 6 Nov 2025
Basics
| Property | Value |
|---|---|
| Category | Shopee Push |
| Push Mechanism Name | video_upload_result_push |
| Push Mechanism Code | 38 |
| Push Mechanism Description | Get notified immediately when a video upload reaches a final status (SUCCEEDED, FAILED, or CANCELLED). Intermediate status (INITIATED, UPLOADING, UPLOADED, PROCESSING) are not pushed to avoid unnecessary callbacks, can call v2.media.get_video_upload_result if need progress updates. |
| Push Mechanism Subscription Rules | ERP System/Seller In House System/Product Management/Customer Service/Consignment Service System/Shopee Video Management |
| Time Out Seconds | 3s |
| Sequence Guaranteed | No |
| Can Repeated Same Message | Yes |
| Retry Seconds | 300s,1800s,10800s |
Push Parameters
| Name | Type | Sample | Description |
|---|---|---|---|
| data | object | ||
| video_upload_id | string | sg-11110201-6kh48-mepm7a0ttcw3c3 | The unique ID of the upload task. |
| status | string | SUCCEEDED | Final status of the upload task. Possible values: - SUCCEEDED - FAILED - CANCELLED Note: Intermediate status (INITIATED, UPLOADING, UPLOADED, PROCESSING) are not pushed to avoid unnecessary callbacks, can call v2.media.get_video_upload_result if need progress updates. |
| reason | string | Detailed fail or cancel reason, will be returned if status is FAILED or CANCELLED. | |
| video_info | object | Transcoded video info, will be returned if status is SUCCEEDED. | |
| video_url | string | http://play-src.vod.shopee.com/api/v4/11110201/mms/sg-11110201-6kh48-mepm7a0ttcw3c3. | Video playback URL. |
| video_thumbnail_url | string | http://img.sp.mms.shopee.sg/sg-11110201-6kh48-mepm7a0ttcw3c3\_cover | Video thumbnail image URL. |
| thumbnail_width | int32 | 1920 | Video thumbnail image width. |
| thumbnail_height | int32 | 1080 | Video thumbnail image height. |
| duration | int32 | 105 | Video duration in seconds. |
| resolution | string | 960x540 | Video resolution, e.g., "1280x1280". |
| update_time | timestamp | 1758018336 | The time of video status updates. |
| code | int32 | 38 | Shopee's unique identifier for a push notification. |
| timestamp | timestamp | 1758018336 | Timestamp that indicates the message was sent. |
Json
{
"data": {
"status": "SUCCEEDED",
"reason": "",
"update_time": 1758018336,
"video_info": {
"video_url": "http://play-src.vod.shopee.com/api/v4/11110201/mms/sg-11110201-6kh48-mepm7a0ttcw3c3.",
"video_thumbnail_url": "http://img.sp.mms.shopee.sg/sg-11110201-6kh48-mepm7a0ttcw3c3_cover",
"thumbnail_width": 1920,
"thumbnail_height": 1080,
"duration": 105,
"resolution": "960x540"
}
},
"code": 37,
"timestamp": 1758018336
}
Update Log
| Date | Update Details |
|---|---|
| 2025-09-19 | New Push |