We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51aed3b commit 1271766Copy full SHA for 1271766
1 file changed
docs/getstarted/tutorials/tutorial-loading-data-using-the-api.mdx
@@ -59,15 +59,15 @@ Each line in the script has a curl statement like the one below.
59
<summary>Click to expand the code block</summary>
60
```bash
61
#Add a Building
62
- curl -i -H "Accept: application/json"
63
- -X POST
64
- -d "name=New Haven DC"
65
- -d "address=123 main st"
66
- -d "contact_name=roger"
67
- -d "contact_phone=1234567890"
68
- -d "notes=super critical"
69
- -u $USER:$PASS
70
- $URL/api/1.0/buildings/
+ curl -i -H "Accept: application/json" \
+ -X POST \
+ -d "name=New Haven DC" \
+ -d "address=123 main st" \
+ -d "contact_name=roger" \
+ -d "contact_phone=1234567890" \
+ -d "notes=super critical" \
+ -u $USER:$PASS \
+ $URL/api/1.0/buildings/ \
71
--insecure
72
```
73
</details>
0 commit comments