diff --git a/docs/api/rest.md b/docs/api/rest.md index e7b108bc..444e6944 100644 --- a/docs/api/rest.md +++ b/docs/api/rest.md @@ -645,3 +645,18 @@ If the check fails, the errors attribute in the object will list what caused the ``` + + + +Handle an intent. + +Sample `curl` command: + +```shell +curl -X POST -H "Authorization: Bearer ${TOKEN}" \ + -H 'Content-Type: application/json' \ + -d '{ "name": "SetTimer", "data": { "seconds": "30" } }' \ + http://localhost:8123/api/intent/handle +``` + +