Skip to content

Commit 2781102

Browse files
authored
Merge pull request #107 from BoschSmartHome/automationtrigger
add automation trigger
2 parents c79e046 + ce969ed commit 2781102

File tree

2 files changed

+255
-15
lines changed

2 files changed

+255
-15
lines changed

openapi/MainResources-local-openapi-v3.yml

+107-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ openapi: 3.0.0
33
info:
44
title: Bosch Smart Home Local API for Main Resources
55
description: |-
6-
This description focuses on the JSON-based, REST-like API for the Main Resources (devices, rooms, scenarios, messages). To get a detailed description of the related services and states of a device, select one in the 'Select a definition' drop-down box (top right corner).
6+
This description focuses on the JSON-based, REST-like API for the Main Resources (devices, rooms, scenarios, automations, messages). To get a detailed description of the related services and states of a device, select one in the 'Select a definition' drop-down box (top right corner).
77
88
By using this documentation, the developer accepts and agrees to be bound by our [Terms and Conditions](https://github.com/BoschSmartHome/bosch-shc-api-docs#terms-and-conditions).
99
@@ -21,6 +21,7 @@ tags:
2121
- name: Devices
2222
- name: Rooms
2323
- name: Scenarios
24+
- name: Automations
2425
- name: Messages
2526
- name: Doors/Windows
2627
- name: UserDefinedStates
@@ -190,6 +191,75 @@ paths:
190191
'405':
191192
description: The method was not allowed.
192193
###
194+
### Automations
195+
###
196+
'/automation/rules':
197+
get:
198+
summary: List all available Automations.
199+
description: Returns all Automations.
200+
tags:
201+
- Automations
202+
parameters:
203+
- $ref: '#/components/parameters/apiVersionHeaderParam'
204+
responses:
205+
'200':
206+
description: Accepted request.
207+
content:
208+
application/json:
209+
schema:
210+
type: array
211+
items:
212+
$ref: '#/components/schemas/Automation'
213+
'404':
214+
description: The entity could not be found.
215+
'/automation/rules/{automationId}':
216+
get:
217+
summary: Retrieve a specific Automation.
218+
description: |-
219+
Returns the Automation identified by the `automationId` path parameter. The
220+
response includes details about the Automation.
221+
tags:
222+
- Automations
223+
parameters:
224+
- $ref: '#/components/parameters/apiVersionHeaderParam'
225+
- $ref: '#/components/parameters/automationIdPathParam'
226+
responses:
227+
'200':
228+
description: Accepted request.
229+
content:
230+
application/json:
231+
schema:
232+
$ref: '#/components/schemas/Automation'
233+
'404':
234+
description: |-
235+
The entity could not be found. One of the defined path parameters was invalid.
236+
content:
237+
application/json:
238+
schema:
239+
$ref: '#/components/schemas/AdvancedError'
240+
241+
'/automation/rules/{automationId}/trigger':
242+
put:
243+
summary: Triggers the Automation.
244+
description: |-
245+
Triggers the Automation identified by the 'automationId' path parameter, ignoring any conditions being configured.
246+
tags:
247+
- Automations
248+
parameters:
249+
- $ref: '#/components/parameters/apiVersionHeaderParam'
250+
- $ref: '#/components/parameters/automationIdPathParam'
251+
responses:
252+
'202':
253+
description: Accepted request.
254+
'404':
255+
description: The entity could not be found.
256+
content:
257+
application/json:
258+
schema:
259+
$ref: '#/components/schemas/AdvancedError'
260+
'405':
261+
description: The method was not allowed.
262+
###
193263
### Messages
194264
###
195265
'/messages':
@@ -423,6 +493,42 @@ components:
423493
description: An array of actions defined in this scenario.
424494
items:
425495
type: object
496+
Automation:
497+
type: object
498+
properties:
499+
'@type':
500+
type: string
501+
description: The type of the Object.
502+
example: automation
503+
id:
504+
type: string
505+
description: "A single fully qualified identifier of the Automation."
506+
name:
507+
type: string
508+
description: The name of the Automation.
509+
enabled:
510+
type: boolean
511+
description: Indicates if the Automation is enabled.
512+
example: true
513+
automationTriggers:
514+
type: array
515+
description: An array of triggers defined in this Automation.
516+
items:
517+
type: object
518+
automationConditions:
519+
type: array
520+
description: An array of conditions defined in this Automation.
521+
items:
522+
type: object
523+
automationActions:
524+
type: array
525+
description: An array of actions defined in this Automation.
526+
items:
527+
type: object
528+
conditionLogicalOp:
529+
type: string
530+
description: The logical operator of the conditions.
531+
enum: [AND,OR]
426532
Message:
427533
type: object
428534
properties:

postman/Bosch Smart Home Controller.postman_collection.json

+148-14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"info": {
3-
"_postman_id": "e9ef2cd5-d80f-45f5-a2bd-47cb327fff19",
3+
"_postman_id": "f537c0b8-ad5d-463b-b399-37a5d1b1f4ee",
44
"name": "Bosch Smart Home Controller",
55
"description": "This API enables you to locally access the state of and control your Bosch Smart Home system. Configuring the system is not supported.",
66
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
@@ -503,7 +503,7 @@
503503
"response": []
504504
},
505505
{
506-
"name": "Messages as array",
506+
"name": "Automations as array",
507507
"event": [
508508
{
509509
"listen": "test",
@@ -513,9 +513,39 @@
513513
],
514514
"type": "text/javascript"
515515
}
516-
},
516+
}
517+
],
518+
"request": {
519+
"method": "GET",
520+
"header": [
521+
{
522+
"key": "Content-Type",
523+
"value": "application/json"
524+
},
525+
{
526+
"key": "api-version",
527+
"value": "{{api_version}}",
528+
"type": "text"
529+
}
530+
],
531+
"url": {
532+
"raw": "{{shc_api}}/automation/rules",
533+
"host": [
534+
"{{shc_api}}"
535+
],
536+
"path": [
537+
"automation",
538+
"rules"
539+
]
540+
}
541+
},
542+
"response": []
543+
},
544+
{
545+
"name": "Automation by Id",
546+
"event": [
517547
{
518-
"listen": "prerequest",
548+
"listen": "test",
519549
"script": {
520550
"exec": [
521551
""
@@ -538,19 +568,21 @@
538568
}
539569
],
540570
"url": {
541-
"raw": "{{shc_api}}/messages",
571+
"raw": "{{shc_api}}/automation/rules/{{automation_id}}",
542572
"host": [
543573
"{{shc_api}}"
544574
],
545575
"path": [
546-
"messages"
576+
"automation",
577+
"rules",
578+
"{{automation_id}}"
547579
]
548580
}
549581
},
550582
"response": []
551583
},
552584
{
553-
"name": "Open doors/windows",
585+
"name": "Automation trigger",
554586
"event": [
555587
{
556588
"listen": "test",
@@ -572,26 +604,33 @@
572604
}
573605
],
574606
"request": {
575-
"method": "GET",
607+
"method": "PUT",
576608
"header": [
577609
{
578610
"key": "Content-Type",
579-
"value": "application/json"
611+
"value": "application/json",
612+
"type": "text"
580613
},
581614
{
582615
"key": "api-version",
583-
"type": "text",
584-
"value": "{{api_version}}"
616+
"value": "{{api_version}}",
617+
"type": "text"
585618
}
586619
],
620+
"body": {
621+
"mode": "raw",
622+
"raw": ""
623+
},
587624
"url": {
588-
"raw": "{{shc_api}}/doors-windows/openwindows",
625+
"raw": "{{shc_api}}/automation/rules/{{automation_id}}/trigger",
589626
"host": [
590627
"{{shc_api}}"
591628
],
592629
"path": [
593-
"doors-windows",
594-
"openwindows"
630+
"automation",
631+
"rules",
632+
"{{automation_id}}",
633+
"trigger"
595634
]
596635
}
597636
},
@@ -678,6 +717,101 @@
678717
}
679718
},
680719
"response": []
720+
},
721+
{
722+
"name": "Messages as array",
723+
"event": [
724+
{
725+
"listen": "test",
726+
"script": {
727+
"exec": [
728+
""
729+
],
730+
"type": "text/javascript"
731+
}
732+
},
733+
{
734+
"listen": "prerequest",
735+
"script": {
736+
"exec": [
737+
""
738+
],
739+
"type": "text/javascript"
740+
}
741+
}
742+
],
743+
"request": {
744+
"method": "GET",
745+
"header": [
746+
{
747+
"key": "Content-Type",
748+
"value": "application/json"
749+
},
750+
{
751+
"key": "api-version",
752+
"value": "{{api_version}}",
753+
"type": "text"
754+
}
755+
],
756+
"url": {
757+
"raw": "{{shc_api}}/messages",
758+
"host": [
759+
"{{shc_api}}"
760+
],
761+
"path": [
762+
"messages"
763+
]
764+
}
765+
},
766+
"response": []
767+
},
768+
{
769+
"name": "Open doors/windows",
770+
"event": [
771+
{
772+
"listen": "test",
773+
"script": {
774+
"exec": [
775+
""
776+
],
777+
"type": "text/javascript"
778+
}
779+
},
780+
{
781+
"listen": "prerequest",
782+
"script": {
783+
"exec": [
784+
""
785+
],
786+
"type": "text/javascript"
787+
}
788+
}
789+
],
790+
"request": {
791+
"method": "GET",
792+
"header": [
793+
{
794+
"key": "Content-Type",
795+
"value": "application/json"
796+
},
797+
{
798+
"key": "api-version",
799+
"type": "text",
800+
"value": "{{api_version}}"
801+
}
802+
],
803+
"url": {
804+
"raw": "{{shc_api}}/doors-windows/openwindows",
805+
"host": [
806+
"{{shc_api}}"
807+
],
808+
"path": [
809+
"doors-windows",
810+
"openwindows"
811+
]
812+
}
813+
},
814+
"response": []
681815
}
682816
]
683817
},

0 commit comments

Comments
 (0)