docs: fixed POST request in code snippet for quotation acceptance (#11983)

docs: fixed POST request in code snippet for quotation acceptance
This commit is contained in:
valerioXplo
2025-04-11 12:42:11 +02:00
committed by GitHub
parent ff9d1624b2
commit df5d410be2

View File

@@ -3645,7 +3645,7 @@ npm run dev
Then, send a request to accept a quote for the authenticated customer:
```bash
curl 'http://localhost:9000/store/customers/me/quotes/{quote_id}/accept' \
curl -X POST 'http://localhost:9000/store/customers/me/quotes/{quote_id}/accept' \
-H 'x-publishable-api-key: {your_publishable_api_key}' \
-H 'Authorization: Bearer {token}'
```