1
0
mirror of https://github.com/actix/examples synced 2024-11-24 06:43:00 +01:00
examples/databases/mysql/apis/teller.md
2023-07-18 01:01:26 +01:00

35 lines
674 B
Markdown

# 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"
}
]
}
```