18 lines
340 B
Plaintext
18 lines
340 B
Plaintext
|
|
### Create a new user
|
||
|
|
POST https://localhost:5001/workflows/users
|
||
|
|
Content-Type: application/json
|
||
|
|
Accept: application/json
|
||
|
|
|
||
|
|
{
|
||
|
|
"name": "Bob",
|
||
|
|
"job": "Postman"
|
||
|
|
}
|
||
|
|
|
||
|
|
### Get all users
|
||
|
|
GET https://localhost:5001/workflows/users/all
|
||
|
|
Accept: application/json
|
||
|
|
|
||
|
|
### Get a user
|
||
|
|
GET https://localhost:5001/workflows/users/2
|
||
|
|
Accept: application/json
|