mirror of
https://github.com/actix/examples
synced 2024-11-24 06:43:00 +01:00
18 lines
413 B
Plaintext
18 lines
413 B
Plaintext
|
1.
|
||
|
Linux
|
||
|
|
||
|
curl -d '{"branch_name":"HQ branch", "location":"Central Business District"}' -H 'Content-Type: application/json' http://127.0.0.1:8080/addbranch
|
||
|
|
||
|
2.
|
||
|
Windows
|
||
|
|
||
|
curl -H "Content-type:application/json" --data-binary "{\"branch_name\":\"HQ branch\", \"location\":\"Central Business District\"}" http://127.0.0.1:8080/addbranch
|
||
|
|
||
|
|
||
|
3.
|
||
|
Json response
|
||
|
|
||
|
{
|
||
|
"status_code": 0,
|
||
|
"status_description": "Successful"
|
||
|
}
|