Remove event forward API descriptions as they no longer exist

This commit is contained in:
Paulus Schoutsen 2020-10-20 09:52:39 +02:00 committed by GitHub
parent 5876dc7b26
commit 3c04290e21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -665,53 +665,3 @@ If the check fails, the errors attribute in the object will list what caused the
```
</details>
<details>
<summary className="endpoint post protected">/api/event_forwarding</summary>
Set up event forwarding to another Home Assistant instance.
Requires a JSON object that represents the API to forward to.
```json
{
"host": "machine",
"api_password": "my_super_secret_password",
"port": 8880 // optional
}
```
It will return a message if event forwarding was set up successfully.
```json
{
"message": "Event forwarding setup."
}
```
</details>
<details>
<summary className="endpoint delete protected">/api/event_forwarding</summary>
Cancel event forwarding to another Home Assistant instance.
Requires a JSON object that represents the API to cancel forwarding to.
```json
{
"host": "machine",
"api_password": "my_super_secret_password",
"port": 8880 // optional
}
```
It will return a message if event forwarding was canceled successfully.
```json
{
"message": "Event forwarding cancelled."
}
```
</details>