# Получить статус трансляции

Возвращает статус трансляции и, если доступны, ID или путь текущего файла. Возможные ошибки — `33300`, `33401` и `99002`.

Endpoint: POST /api/cloudphone/live/status
Version: 1.0.0

## Request fields (application/json):

  - `phoneId` (integer, required)
    Cloud phone ID
    Example: 190000000000000000

## Response 200 fields (application/json):

  - `code` (integer, required)
    Business result code; `0` indicates success
    Example: 0

  - `msg` (string | null, required)
    Error message; null when successful
    Example: null

  - `requestId` (string, required)
    Request ID for troubleshooting
    Example: 1d4f3ea968664593860b94b35d4ebf5e

  - `data` (object, required)

  - `data.liveStatus` (integer)
    Live status (`0` = stopped, `1` = running)
    Enum: 0, 1

  - `data.writeFileId` (string | null)
    Current file ID when supplied by the cloud phone provider

  - `data.liveFilePath` (string | null)
    Current file path or URL when supplied by the cloud phone provider

