{"id":20196205,"url":"https://github.com/shaikrasheed99/springboot-todo-crud","last_synced_at":"2026-04-13T01:34:33.235Z","repository":{"id":41424729,"uuid":"508429635","full_name":"shaikrasheed99/springboot-todo-crud","owner":"shaikrasheed99","description":"CRUD implementation of TODOs using Spring Boot. ","archived":false,"fork":false,"pushed_at":"2022-11-08T17:40:06.000Z","size":128,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-05T06:37:44.921Z","etag":null,"topics":["flyway-migrations","java","postgresql","rest-api","spring-boot","todo-app"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shaikrasheed99.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-06-28T19:29:11.000Z","updated_at":"2022-12-30T04:44:28.000Z","dependencies_parsed_at":"2022-09-21T08:24:12.040Z","dependency_job_id":null,"html_url":"https://github.com/shaikrasheed99/springboot-todo-crud","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/shaikrasheed99/springboot-todo-crud","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shaikrasheed99%2Fspringboot-todo-crud","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shaikrasheed99%2Fspringboot-todo-crud/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shaikrasheed99%2Fspringboot-todo-crud/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shaikrasheed99%2Fspringboot-todo-crud/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shaikrasheed99","download_url":"https://codeload.github.com/shaikrasheed99/springboot-todo-crud/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shaikrasheed99%2Fspringboot-todo-crud/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31736723,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-12T22:19:12.206Z","status":"ssl_error","status_checked_at":"2026-04-12T22:18:33.088Z","response_time":58,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["flyway-migrations","java","postgresql","rest-api","spring-boot","todo-app"],"created_at":"2024-11-14T04:22:28.970Z","updated_at":"2026-04-13T01:34:33.214Z","avatar_url":"https://github.com/shaikrasheed99.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Spring Boot TODO CRUD TDD\n\n## Gradle based spring boot application which provide APIs to create, read, update and delete the todo using test driven development.\n\n## Features of the Application\n    - Create todo\n    - Read todo\n    - Update todo\n    - Delete todo\n    - Read todos by Priority\n    - Read todos by Completed Status\n\n## APIs\n\n### Create a Todo\n\n* Request\n```\nPOST /todo\nHost: localhost:3000\nContent-Type: application/json\n{\n    \"id\": 1,\n    \"description\": \"Sleeping\",\n    \"completed\": false,\n    \"priority\": \"high\"\n}\n```\n* Response\n```\n{\n    \"data\": {\n        \"id\": 1\n    }\n}\n```\n\n### Get Todo details by Todo id\n\n* Request\n```\nGET /todo/{1}\nHost: localhost:3000\n```\n* Response\n```\n{\n    \"data\": {\n        \"id\": 1,\n        \"description\": \"Sleeping\",\n        \"completed\": false,\n        \"priority\": \"high\"\n    }\n}\n```\n\n### Update Todo details\n\n* Request\n```\nPUT /todo/{1}\nHost: localhost:3000\nContent-Type: application/json\n{\n    \"id\": 1,\n    \"description\": \"Sleeping\",\n    \"completed\": true,\n    \"priority\": \"high\"\n}\n```\n* Response\n```\n{\n    \"data\": {\n        \"id\": 1,\n        \"description\": \"Sleeping\",\n        \"completed\": true,\n        \"priority\": \"high\"\n    }\n}\n```\n\n### Delete a Todo by Todo id\n\n* Request\n```\nDELETE /todo/{1} \nHost: localhost:3000\n```\n* Response\n```\n{\n    \"data\": {\n        \"message\": \"Delete successfully!\"\n    }\n}\n```\n\n### Get Todos by Priority\n\n* Request\n```\nGET /todo/priority/{“high”} \nHost: localhost:3000\n```\n* Response\n```\n{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"description\": \"Sleeping\",\n            \"completed\": false,\n            \"priority\": \"high\"\n        }\n    ]\n}\n```\n\n### Get Todos by Completed Status\n\n* Request\n```\nGET /todo/completed/{false} \nHost: localhost:3000\n```\n* Response\n```\n{\n    \"data\": [\n        {\n            \"id\": 1,\n            \"description\": \"Sleeping\",\n            \"completed\": false,\n            \"priority\": \"high\"\n        }\n    ]\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshaikrasheed99%2Fspringboot-todo-crud","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshaikrasheed99%2Fspringboot-todo-crud","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshaikrasheed99%2Fspringboot-todo-crud/lists"}