AXRobotManage 1pauseTaskToRobot

Markdown
# Pause Task for Specified Robot
## Method

## `pauseTaskToRobot(robotId) -> {Promise.<boolean>}`

SDK does not need to connect to the robot. Through this method, you can pause the executing task for a specified robot.

### Parameters

| Name   | Type                          | Description     |
| ------ | ----------------------------- | -------- |
| `robotId` | string | Robot identifier |

### Return Value `Promise.<boolean>`

Whether successful

* `true` - Success
* `false` - Failure

### Example

```javascript
...
const success = await axRobot.pauseTaskToRobot(robotId);
...
```