Skip to content

Commit 4918bda

Browse files
committed
Add -i to get the headers
Signed-off-by: Marc Duiker <[email protected]>
1 parent 1dc008f commit 4918bda

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tutorials/workflow/csharp/combined-patterns/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ graph LR
8787
4. Use the POST request in the [`order-workflow.http`](./order-workflow.http) file to start the workflow, or use this cURL command:
8888

8989
```bash
90-
curl --request POST \
90+
curl -i --request POST \
9191
--url http://localhost:5260/start \
9292
--header 'content-type: application/json' \
9393
--data '{"id": "b0d38481-5547-411e-ae7b-255761cce17a","orderItem" : {"productId": "RBD001","productName": "Rubber Duck","quantity": 10,"totalPrice": 15.00},"customerInfo" : {"id" : "Customer1","country" : "The Netherlands"}}'

tutorials/workflow/csharp/external-system-interaction/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ graph LR
6464
4. Use the POST request in the [`externalevents.http`](./externalevents.http) file to start the workflow, or use this cURL command:
6565

6666
```bash
67-
curl --request POST \
67+
curl -i --request POST \
6868
--url http://localhost:5258/start \
6969
--header 'content-type: application/json' \
7070
--data '{"id": "b7dd836b-e913-4446-9912-d400befebec5","description": "Rubber ducks","quantity": 100,"totalPrice": 500}'

0 commit comments

Comments
 (0)