Skip to content

Stop Cloud Phone

Fresh

Batch shut down cloud phones.

URL: https://openapi.geelark.com/open/v1/phone/stopMethod: POST

Request Parameters

ParameterRequiredTypeDescription
idsYesarray[string]Cloud phone IDs (max 200)

Request Example

json
{
  "ids": ["123456ABCDEF", "789012GHIJKL"]
}

Response Example

json
{
  "code": 0,
  "msg": "success",
  "traceId": "123456ABCDEF",
  "data": {
    "totalAmount": 4,
    "successAmount": 3,
    "failAmount": 1,
    "failDetails": [
      {
        "code": 42001,
        "id": "123456ABCDEF",
        "msg": "env not found"
      }
    ]
  }
}

Error Codes

CodeDescription
42001Cloud phone does not exist
43005Cloud phone is executing a task
43006Cloud phone is being remotely connected

GEELark API Documentation - Built with VitePress