13 lines
234 B
HTTP
13 lines
234 B
HTTP
### Create a user
|
|
POST http://localhost:8080/api/users
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"name": "John Doe",
|
|
"avatar": "https://api.dicebear.com/7.x/avataaars/svg?seed=John"
|
|
}
|
|
|
|
### Fetch users
|
|
GET http://localhost:8080/api/users
|
|
|