docs: add missing shipping_profile_id in create product snippets (#11443)

* initial

* add link
This commit is contained in:
Shahed Nasser
2025-02-13 15:30:40 +02:00
committed by GitHub
parent 4e6372bfdf
commit b864cb4e28
5 changed files with 12 additions and 2 deletions
@@ -117,6 +117,7 @@ curl -X POST 'http://localhost:9000/admin/products' \
"values": ["Default option value"]
}
],
"shipping_profile_id": "{shipping_profile_id}",
"additional_data": {
"brand": "Acme"
}
@@ -125,7 +126,7 @@ curl -X POST 'http://localhost:9000/admin/products' \
<Note title="Tip">
Make sure to replace the `{token}` in the authorization header with an admin user's authentication token.
Make sure to replace the `{token}` in the authorization header with an admin user's authentication token, and `{shipping_profile_id}` with an existing shipping profile's ID.
</Note>