# Touch - Click

Simulate a single tap on the cloud phone screen at the specified coordinates.
The coordinate system uses the top-left corner of the screen as the origin `(0, 0)`, with the X-axis extending to the right and the Y-axis extending downward.

Endpoint: POST /api/cloudphone/touch/click
Version: 1.0.0

## Request fields (application/json):

  - `id` (integer, required)
    Cloud Phone ID
    Example: 1558968155668507

  - `pos` (array, required)
    Tap coordinates [x, y]. The coordinate system uses the top-left corner as origin (0, 0).
    Example: [540,960]

  - `duration` (integer)
    Press duration in milliseconds (used for long press). If omitted, the default duration is used.
    Example: 2000

## Response 200 fields (application/json):

  - `code` (integer)
    Status code, 0 means success
    Example: 0

  - `msg` (string)
    Response message
    Example: success

  - `data` (object)

  - `data.status` (string)
    Execution status
    Example: finish

