From 2c934075239b642e8ff69f76f8bb2910acabc5ee Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Tue, 20 Oct 2020 10:25:21 +0200 Subject: [PATCH] Fix right carrots (#693) --- docs/api/rest.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/api/rest.md b/docs/api/rest.md index f5ffc230..5a2ff55c 100644 --- a/docs/api/rest.md +++ b/docs/api/rest.md @@ -217,7 +217,7 @@ curl -X GET -H "Authorization: Bearer ABCDEFGH" \
-/api/history/period/<timestamp&rt; +/api/history/period/<timestamp> Returns an array of state changes in the past. Each object contains further details for the entities. @@ -324,7 +324,7 @@ curl -X GET -H "Authorization: Bearer ABCDEFGH" \
-/api/logbook/<timestamp&rt; +/api/logbook/<timestamp> Returns an array of logbook entries. @@ -419,7 +419,7 @@ curl -X GET -H "Authorization: Bearer ABCDEFGH" \
-/api/states/<entity_id&rt; +/api/states/<entity_id> Returns a state object for specified entity_id. Returns 404 if not found. @@ -471,7 +471,7 @@ curl -X GET -H "Authorization: Bearer ABCDEFGH" \
-/api/camera_proxy/<camera entity_id&rt; +/api/camera_proxy/<camera entity_id> Returns the data (image) from the specified camera entity_id. @@ -486,7 +486,7 @@ curl -X GET -H "Authorization: Bearer ABCDEFGH" \
-/api/states/<entity_id&rt; +/api/states/<entity_id> Updates or creates a state. You can create any state that you want, it does not have to be backed by an entity in Home Assistant. @@ -533,7 +533,7 @@ curl -X POST -H "Authorization: Bearer ABCDEFGH" \
-/api/events/<event_type&rt; +/api/events/<event_type> Fires an event with event_type. Please be mindful of the data structure as documented on our [Data Science portal](https://data.home-assistant.io/docs/events/#database-table).