1
0
mirror of https://github.com/actix/examples synced 2025-02-25 10:32:49 +01:00
examples/databases/mysql/apis/getteller.txt
2023-07-17 17:55:17 +01:00

24 lines
297 B
Plaintext

1.
Linux
curl 'http://localhost:8080/getteller'
2.
Windows
curl http://localhost:8080/getteller
3.
JSON response
{
"status_code": 0,
"status_description": "Successful",
"teller_data": [
{
"teller_name": "john doe",
"branch_name": "central business district"
}
]
}