cs11dotnet7/vscode/PracticalApps/RestClientTests/update-customer.http

18 lines
397 B
Plaintext
Raw Normal View History

2022-03-13 17:20:39 +01:00
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
}