Skip to content

Instantly share code, notes, and snippets.

@eugenio-oliveira
Last active November 8, 2018 19:04
Show Gist options
  • Save eugenio-oliveira/897c5263738c75cf4ac9253a4ad34a37 to your computer and use it in GitHub Desktop.
Save eugenio-oliveira/897c5263738c75cf4ac9253a4ad34a37 to your computer and use it in GitHub Desktop.
Comandos CURL
# GET
curl http://localhost:4000/contacts/
# POST
curl http://localhost:4000/contacts/ -X POST -H "Content-Type: application/json" -d '{"name" : "Eugênio Oliveira", "email": "eugenio@infoway-pi.com.br"}'
# PATCH
curl http://localhost:4000/contacts/101/ -X PATCH -H "Content-Type: application/json" -d '{"name" : "Eugênio Oliveira", "email": "eugenio@infoway-pi.com.br", "birthdate" : "07/11/1984"}'
# DELETE
curl http://localhost:4000/contacts/101/ -X DELETE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment