25 lines
376 B
JSON
25 lines
376 B
JSON
{
|
|
"request": {
|
|
"method": "GET",
|
|
"urlPath": "/users/get/all"
|
|
},
|
|
"response": {
|
|
"status": 200,
|
|
"headers": {
|
|
"Content-Type": "application/json"
|
|
},
|
|
"jsonBody": [
|
|
{
|
|
"id": 1,
|
|
"name": "Ivan Ivanov",
|
|
"grade": "A"
|
|
},
|
|
{
|
|
"id": 2,
|
|
"name": "Petr Petrov",
|
|
"grade": "B"
|
|
}
|
|
]
|
|
}
|
|
}
|