POST
/
api
/
keyboard
/
type
curl --request POST \
  --url http://localhost:4242/{computer_name}/api/keyboard/type \
  --header 'Content-Type: application/json' \
  --data '{
  "display_num": 1,
  "text": "Hello, World!",
  "typing_delay": 12,
  "typing_group_size": 50
}'
"<any>"

Body

application/json

Text to type and typing parameters

text
string
required

Text to type

Example:

"Hello, World!"

display_num
integer
default:1

Display number to target

Example:

1

typing_delay
integer
default:12

Delay between keystrokes in milliseconds

Required range: x >= 0
Example:

12

typing_group_size
integer
default:50

Number of characters to type at once

Required range: x > 0
Example:

50

Response

200
application/json
Successfully typed the text

The response is of type any.