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
#### `GET`
##### Input
#### Fetch customer information
```
$ curl -i -X GET 'http://localhost:9000/customers/5'
```
##### Output
```
HTTP/1.1 200 OK
Content-Type: application/json; charset=UTF-8
@ -172,9 +168,7 @@ Content-Length: 93
}
```
#### `POST`
##### Input
#### Add new customer
```
$ curl -i -X POST \
@ -188,8 +182,6 @@ $ curl -i -X POST \
'http://localhost:9000/customers/200'
```
##### Output
```
HTTP/1.1 201 Created
Content-Type: text/plain; charset=UTF-8