车门
  解锁车门
 注意
 如果你的车是Model S或Model X,调用该接口还会打开车门把手
 POST /api/1/vehicles/{id}/command/door_unlock
  Response
 {
  "reason": "",
  "result": true
}
 1
2
3
4
 锁门
 注意
 如果你的车是Model S或Model X,调用该接口还会收起车门把手
 POST /api/1/vehicles/{id}/command/door_lock
  Response
 {
  "reason": "",
  "result": true
}
 1
2
3