Simplify example section in README

This commit is contained in:
Michael Bull 2018-01-24 13:23:47 +00:00
parent abf3716a71
commit 87942dd769
1 changed files with 2 additions and 10 deletions

View File

@ -149,16 +149,12 @@ user-facing errors.
### Payloads ### Payloads
#### `GET` #### Fetch customer information
##### Input
``` ```
$ curl -i -X GET 'http://localhost:9000/customers/5' $ curl -i -X GET 'http://localhost:9000/customers/5'
``` ```
##### Output
``` ```
HTTP/1.1 200 OK HTTP/1.1 200 OK
Content-Type: application/json; charset=UTF-8 Content-Type: application/json; charset=UTF-8
@ -172,9 +168,7 @@ Content-Length: 93
} }
``` ```
#### `POST` #### Add new customer
##### Input
``` ```
$ curl -i -X POST \ $ curl -i -X POST \
@ -188,8 +182,6 @@ $ curl -i -X POST \
'http://localhost:9000/customers/200' 'http://localhost:9000/customers/200'
``` ```
##### Output
``` ```
HTTP/1.1 201 Created HTTP/1.1 201 Created
Content-Type: text/plain; charset=UTF-8 Content-Type: text/plain; charset=UTF-8