Skip to main content
POST
/
input
/
unbind
remove a key binding
curl --request POST \
  --url http://localhost:3917/input/unbind \
  --header 'Content-Type: application/json' \
  --data '{
  "key": "W"
}'
{
  "ok": true,
  "message": "<string>"
}

Body

application/json

The key name whose binding should be removed from the ActionMap.

The body is of type any.

Response

200 - application/json

Binding removed (or a message when no binding existed).

ok
boolean
required
message
string | null