curl --location --request POST 'http://localhost:3000/client' \
--header 'Content-Type: application/json' \
--data-raw '{
"fullname": "Álvaro Stagg",
"email": "[email protected]",
"phone": "0123456789"
}'
curl --location --request GET 'http://localhost:3000/client'
curl --location --request POST 'http://localhost:3060/items' \
--header 'Content-Type: application/xml' \
--data-raw '<item>
<name>Sopa</name>
<stock>11</stock>
</item>'
curl --location --request GET 'http://localhost:3060/items'
This is an educational project for our Software Engineer III course. This project may not be used under production environments and will no receive any update after we've approved our course.
- Antonio José Mata Rodríguez ([email protected])
- Álvaro Antonio Stagg Ramírez ([email protected])