15 lines
228 B
HTTP
15 lines
228 B
HTTP
### GET request to example server
|
|
GET http://localhost/users
|
|
|
|
###
|
|
POST http://localhost/users/
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"name": "John Doe",
|
|
"email": "john.doe@example.com"
|
|
}
|
|
|
|
###
|
|
DELETE http://localhost/articles/13
|