Skip to content

Commit eca7e52

Browse files
committed
Fix incorrect code sample
1 parent f1192dd commit eca7e52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/docs/http-methods.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
```js
88
curl -X GET \
9-
https://gateway.pseudorestapi.com/api/{model-name} \
9+
https://gateway.pseudorestapi.com/{model-name} \
1010
-H "Accept: application/json" \
1111
-u {api-key}:{secret-key}
1212
```
@@ -15,7 +15,7 @@ curl -X GET \
1515

1616
```js
1717
curl -X GET \
18-
https://gateway.pseudorestapi.com/api/{model-name}/{id} \
18+
https://gateway.pseudorestapi.com/{model-name}/{id} \
1919
-H "Accept: application/json" \
2020
-u {api-key}:{secret-key}
2121
```

0 commit comments

Comments
 (0)