mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2025-12-06 05:32:03 +01:00
18 lines
393 B
HTTP
18 lines
393 B
HTTP
POST https://localhost:5001/api/customers/ HTTP/1.1
|
|
Content-Type: application/json
|
|
Content-Length: 301
|
|
|
|
{
|
|
"customerID": "ABCXY",
|
|
"companyName": "ABC Corp",
|
|
"contactName": "John Smith",
|
|
"contactTitle": "Sir",
|
|
"address": "Main Street",
|
|
"city": "New York",
|
|
"region": "NY",
|
|
"postalCode": "90210",
|
|
"country": "USA",
|
|
"phone": "(123) 555-1234",
|
|
"fax": null,
|
|
"orders": null
|
|
} |