Skip to content

Commit 6d99444

Browse files
authored
Merge pull request #3 from SquareGPS/Stoplight-testing
Fixed links to endpoints from markdown files
2 parents b5ae58c + 0ba2367 commit 6d99444

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

docs/Guides/Advanced-configurations.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ For this example, let's presume that we have already:
4646

4747
We'll update the existing flow to send the processed data to both Navixy and our MQTT endpoint:
4848

49-
#### [POST /iot/logic/flow/update](IoT_Logic.json/paths/~1iot~1logic~1flow~1update/post)
49+
#### [POST /iot/logic/flow/update](../../IoT_Logic.json/paths/~1iot~1logic~1flow~1update/post)
5050

5151
Request body:
5252
```json
@@ -149,7 +149,7 @@ Response:
149149

150150
### Verifying the flow configuration
151151

152-
#### [GET /iot/logic/flow/read](IoT_Logic.json/paths/~1iot~1logic~1flow~1read/get)
152+
#### [GET /iot/logic/flow/read](../../IoT_Logic.json/paths/~1iot~1logic~1flow~1read/get)
153153

154154
Request body:
155155
```json
@@ -196,7 +196,7 @@ For this example, let's presume that we have already:
196196

197197
### Adding multiple transformation nodes
198198

199-
#### [POST /iot/logic/flow/update](IoT_Logic.json/paths/~1iot~1logic~1flow~1update/post)
199+
#### [POST /iot/logic/flow/update](../../IoT_Logic.json/paths/~1iot~1logic~1flow~1update/post)
200200

201201
Request body:
202202
```json
@@ -311,7 +311,7 @@ Response:
311311

312312
### Verifying the flow configuration
313313

314-
#### [GET /iot/logic/flow/read](IoT_Logic.json/paths/~1iot~1logic~1flow~1read/get)
314+
#### [GET /iot/logic/flow/read](../../IoT_Logic.json/paths/~1iot~1logic~1flow~1read/get)
315315

316316
Request body:
317317
```json

docs/Guides/scenario1.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Let's create a complete workflow to send your device data to an external MQTT br
66

77
First, we need to define where the data will be sent:
88

9-
### [POST /iot/logic/flow/endpoint/create](IoT_Logic.json/paths/~1iot~1logic~1flow~1endpoint~1create)
9+
### [POST /iot/logic/flow/endpoint/create](../../IoT_Logic.json/paths/~1iot~1logic~1flow~1endpoint~1create/post)
1010

1111
Request body:
1212
```json
@@ -44,7 +44,7 @@ The response will include the endpoint ID that we'll need later:
4444

4545
Next, we need to create a data source endpoint to connect to your devices:
4646

47-
### [POST /iot/logic/flow/endpoint/create](IoT_Logic.json/paths/~1iot~1logic~1flow~1endpoint~1create)
47+
### [POST /iot/logic/flow/endpoint/create](../../IoT_Logic.json/paths/~1iot~1logic~1flow~1endpoint~1create/post)
4848

4949
Request body:
5050
```json
@@ -74,7 +74,7 @@ The response will include the endpoint ID that we'll need later:
7474

7575
Now we'll create the complete flow that connects your data source endpoint to the MQTT endpoint:
7676

77-
### [POST /iot/logic/flow/create](IoT_Logic.json/paths/~1iot~1logic~1flow~1create/post)
77+
### [POST /iot/logic/flow/create](../../IoT_Logic.json/paths/~1iot~1logic~1flow~1create/post)
7878

7979
Request body:
8080
```json

docs/Guides/scenario2.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ For this example, let's presume that we have already:
1414

1515
To see all your existing flows, send the request:
1616

17-
### [GET /iot/logic/flow/list](IoT_Logic.json/paths/~1iot~1logic~1flow~1list/get)
17+
### [GET /iot/logic/flow/list](../../IoT_Logic.json/paths/~1iot~1logic~1flow~1list/get)
1818

1919
Response:
2020
```json
@@ -33,7 +33,7 @@ Response:
3333

3434
To see the details of a specific flow, send the request:
3535

36-
### [GET /iot/logic/flow/read](IoT_Logic.json/paths/~1iot~1logic~1flow~1read/get)
36+
### [GET /iot/logic/flow/read](../../IoT_Logic.json/paths/~1iot~1logic~1flow~1read/get)
3737

3838
Request body:
3939
```json
@@ -125,7 +125,7 @@ Response:
125125

126126
Let's add another processing rule to calculate engine temperature in Celsius:
127127

128-
### [POST /iot/logic/flow/update](IoT_Logic.json/paths/~1iot~1logic~1flow~1update/post)
128+
### [POST /iot/logic/flow/update](../../IoT_Logic.json/paths/~1iot~1logic~1flow~1update/post)
129129

130130
Request body:
131131
```json

0 commit comments

Comments
 (0)