1
0
mirror of https://github.com/actix/examples synced 2025-06-27 01:27:43 +02:00

improve mysql readme

This commit is contained in:
Rob Ede
2023-07-18 01:01:26 +01:00
parent f3cf37bb0d
commit 048f4fd884
13 changed files with 168 additions and 216 deletions

View File

@ -0,0 +1,34 @@
# Tellers API
All examples show cURL and [HTTPie](https://httpie.io/cli) snippets.
## Adding A Teller
```sh
curl -d '{"teller_name":"John Doe", "branch_name":"Central Business District"}' -H 'Content-Type: application/json' http://localhost:8080/teller
http POST :8080/teller teller_name="John Doe" branch_name="Central Business District"
```
You should expect a 204 No Content response.
## Listing Tellers
```sh
curl http://localhost:8080/teller
http :8080/teller
```
The response should be a 200 OK with the following JSON body:
```json
{
"teller_data": [
{
"teller_name": "john doe",
"branch_name": "central business district"
}
]
}
```