mirror of
https://github.com/actix/examples
synced 2025-02-17 15:23:31 +01:00
19 lines
418 B
Plaintext
19 lines
418 B
Plaintext
1.
|
|
Linux
|
|
|
|
curl -d '{"teller_name":"John Doe", "branch_name":"Central Business District"}' -H 'Content-Type: application/json' http://127.0.0.1:8080/addteller
|
|
|
|
2.
|
|
Windows
|
|
|
|
curl -H "Content-type:application/json" --data-binary "{\"teller_name\":\"John Doe\", \"branch_name\":\"Central Business District\"}" http://127.0.0.1:8080/addteller
|
|
|
|
|
|
3.
|
|
JSON response
|
|
|
|
{
|
|
"status_code": 0,
|
|
"status_description": "Successful"
|
|
}
|