Set video playback status
1. API Description
This API is used to set the video playback status of the current scene.
Request mode:
- V2.6.0 and above: POST [ip]/mwapi/V2.0/scene/set-video-player-status
 - V2.5.0 and below: POST [ip]/mwapi/set-video-player-status
 
| Administrator Rights | Logged-in | 
|---|---|
| No | Yes | 
2. Input Parameters
| Name | Required | Type | Description | 
|---|---|---|---|
| layerId | Yes | Int | Layer ID, the layer position in the layer array | 
| playStatus | Yes | Int | Playback status  0: Pause; 1: Play  | 
3. Output Parameters
| Name | Type | Description | 
|---|---|---|
| status | Int | Status code | 
| message | String | Status description | 
4. Example
Pausing the video in the current scene.
Input Example
{
    "layerId": 1,
    "playStatus": 0
}
Output Example
{
    "message": "success",
    "status": 0
}
5. Error Code
The following only lists the error codes related to the API business logic. For other error codes, see Common Error Codes.
| Status | Definition | Description | 
|---|---|---|
| 7 | MW_STATUS_INVALID_ARG | Missing required parameters |