mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2026-04-04 13:57:37 +00:00
Initial commit
This commit is contained in:
parent
9656378279
commit
0dbecd11bb
5 changed files with 38 additions and 99 deletions
|
|
@ -0,0 +1 @@
|
|||
DELETE https://localhost:5001/api/customers/abcxy HTTP/1.1
|
||||
18
vs4win/PracticalApps/RestClientTests/update-customer.http
Normal file
18
vs4win/PracticalApps/RestClientTests/update-customer.http
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
PUT https://localhost:5001/api/customers/abcxy HTTP/1.1
|
||||
Content-Type: application/json
|
||||
Content-Length: 289
|
||||
|
||||
{
|
||||
"customerID": "ABCXY",
|
||||
"companyName": "ABC Corp",
|
||||
"contactName": "Joan Smythe",
|
||||
"contactTitle": "Lady",
|
||||
"address": "Wall Street",
|
||||
"city": "New York",
|
||||
"region": "NY",
|
||||
"postalCode": "90210",
|
||||
"country": "USA",
|
||||
"phone": "(123) 555-1234",
|
||||
"fax": null,
|
||||
"orders": null
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue