Skip to content

Commit dd76efa

Browse files
status (#36596)
Co-authored-by: OpenPublishing.Build <opbuild@microsoft.com>
1 parent 2adb81d commit dd76efa

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

aspnetcore/mobile/native-mobile-backend.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ In the terminal, test adding new items by calling the following curl command usi
209209
curl -v -X POST 'https://localhost:5001/api/todoitems/' \
210210
--header 'Content-Type: application/json' \
211211
--data '{
212-
"id": "6bb8b868-dba1-4f1a-93b7-24ebce87e243",
212+
"id": "aaaabbbb-0000-cccc-1111-dddd2222eeee",
213213
"name": "A Test Item",
214214
"notes": "asdf",
215215
"done": false
@@ -222,7 +222,7 @@ curl -v -X POST 'https://localhost:5001/api/todoitems/' \
222222
curl -v -X POST 'https://localhost:5001/api/todoitems/' `
223223
--header 'Content-Type: application/json' `
224224
--data '{
225-
"id": "6bb8b868-dba1-4f1a-93b7-24ebce87e243",
225+
"id": "aaaabbbb-0000-cccc-1111-dddd2222eeee",
226226
"name": "A Test Item",
227227
"notes": "asdf",
228228
"done": false
@@ -252,7 +252,7 @@ To test with curl, change the verb to `PUT`. Specify the updated object data in
252252
curl -v -X PUT 'https://localhost:5001/api/todoitems/' \
253253
--header 'Content-Type: application/json' \
254254
--data '{
255-
"id": "6bb8b868-dba1-4f1a-93b7-24ebce87e243",
255+
"id": "aaaabbbb-0000-cccc-1111-dddd2222eeee",
256256
"name": "A Test Item",
257257
"notes": "asdf",
258258
"done": true
@@ -264,7 +264,7 @@ curl -v -X PUT 'https://localhost:5001/api/todoitems/' \
264264
curl -v -X PUT 'https://localhost:5001/api/todoitems/' `
265265
--header 'Content-Type: application/json' `
266266
--data '{
267-
"id": "6bb8b868-dba1-4f1a-93b7-24ebce87e243",
267+
"id": "aaaabbbb-0000-cccc-1111-dddd2222eeee",
268268
"name": "A Test Item",
269269
"notes": "asdf",
270270
"done": true

0 commit comments

Comments
 (0)