You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Myprojects/backend/s-39/s-39activity.postman_collec...

100 lines
1.7 KiB
JSON

{
"info": {
"_postman_id": "649466f2-0332-4044-b49c-d327542d1436",
"name": "s39 Activity",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "30178270"
},
"item": [
{
"name": "getAllToDo",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "https://jsonplaceholder.typicode.com/todos",
"protocol": "https",
"host": [
"jsonplaceholder",
"typicode",
"com"
],
"path": [
"todos"
]
}
},
"response": []
},
{
"name": "getSpecificToDo",
"request": {
"method": "GET",
"header": []
},
"response": []
},
{
"name": "createToDo",
"request": {
"method": "POST",
"header": [],
"url": {
"raw": "https://jsonplaceholder.typicode.com/todos",
"protocol": "https",
"host": [
"jsonplaceholder",
"typicode",
"com"
],
"path": [
"todos"
]
}
},
"response": []
},
{
"name": "updateToDo",
"request": {
"method": "PUT",
"header": [],
"url": {
"raw": "https://jsonplaceholder.typicode.com/todos/1",
"protocol": "https",
"host": [
"jsonplaceholder",
"typicode",
"com"
],
"path": [
"todos",
"1"
]
}
},
"response": []
},
{
"name": "deleteToDo",
"request": {
"method": "DELETE",
"header": [],
"url": {
"raw": "https://jsonplaceholder.typicode.com/todos/1",
"protocol": "https",
"host": [
"jsonplaceholder",
"typicode",
"com"
],
"path": [
"todos",
"1"
]
}
},
"response": []
}
]
}