Skip to content

Commit dffdea0

Browse files
committed
improved readme
1 parent 5834488 commit dffdea0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ description: "Creating a modern REST API with Python and Azure SQL, using Flask
1414
urlFragment: "azure-sql-db-node-rest-api"
1515
---
1616

17-
# Creating a REST API with Azure Functions, Node and Azure SQL
17+
# Serverless REST API with Azure Functions, Node and Azure SQL
1818

1919
![License](https://img.shields.io/badge/license-MIT-green.svg)
2020

sample-usage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ curl -s -X PUT http://localhost:7071/api/customer --header 'content-type: appli
2727
## Update customer
2828

2929
```bash
30-
curl -s -X PATCH http://localhost:5000/customer/1050 --header 'content-type: application/json' --data '{"CustomerName": "Jane Dean", "PhoneNumber": "231-778-5678" }'
30+
curl -s -X PATCH http://localhost:7071/customer/1050 --header 'content-type: application/json' --data '{"CustomerName": "Jane Dean", "PhoneNumber": "231-778-5678" }'
3131
```
3232

3333
## Delete a customer
3434

3535
```bash
36-
curl -s -X DELETE http://localhost:5000/customer/1050
36+
curl -s -X DELETE http://localhost:7071/customer/1050
3737
```

0 commit comments

Comments
 (0)