> For the complete documentation index, see [llms.txt](https://hyundai-robotics.gitbook.io/hi6-robot-language/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hyundai-robotics.gitbook.io/hi6-robot-language/rl-english/external-comm/http_cli/http_cli-member-proc/http_cli-put.md).

# put

### Description

Requests the HTTP put service

It is required to assign the data, which is to be transmitted, to the body property in advance.

### Syntax

\<HttpCli object>.put \<URL string>

### Example

```python
var domain="http://192.168.1.200:8888"
cli.body=500
cli.put domain+"/setting/max_torque"
```
