Skip to content

Instantly share code, notes, and snippets.

@rogergcc
Created October 24, 2020 23:06
Show Gist options
  • Save rogergcc/3d8447de5de375a1f6aac1d95d5de7ad to your computer and use it in GitHub Desktop.
Save rogergcc/3d8447de5de375a1f6aac1d95d5de7ad to your computer and use it in GitHub Desktop.
request.rest REST Client for Visual Studio Code

GET http://localhost:3000/promotions HTTP/1.1 content-type: application/json

### GET http://localhost:3000/dishes HTTP/1.1

### GET http://localhost:3000/leaders HTTP/1.1

### GET http://localhost:3000/promotions/1 HTTP/1.1 content-type: application/json

### GET http://localhost:3000/dishes/1 HTTP/1.1 content-type: application/json ### GET http://localhost:3000/leaders/1 HTTP/1.1 content-type: application/json

### POST http://localhost:3000/leaders HTTP/1.1 content-type: application/json

{
"name": "sample", "description": "dish description"

}

### PUT http://localhost:3000/leaders/1 content-type: application/json

{
"name": "sample", "description": "dish description"

}

### DELETE http://localhost:3000/leaders/3 content-type: application/json

{
"name": "sample", "description": "dish description"

}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment