{"id":19670972,"url":"https://github.com/santanasj/endpoint-testing-with-postman","last_synced_at":"2026-05-03T20:32:43.257Z","repository":{"id":63262439,"uuid":"545411900","full_name":"SantanaSJ/endpoint-testing-with-Postman","owner":"SantanaSJ","description":"Spring Boot restful API project","archived":false,"fork":false,"pushed_at":"2023-02-04T22:36:49.000Z","size":662,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-06T18:58:49.126Z","etag":null,"topics":["java","spring","spring-boot","spring-security"],"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/SantanaSJ.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-10-04T10:19:36.000Z","updated_at":"2024-05-26T14:17:46.000Z","dependencies_parsed_at":"2023-02-18T20:00:38.379Z","dependency_job_id":null,"html_url":"https://github.com/SantanaSJ/endpoint-testing-with-Postman","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SantanaSJ/endpoint-testing-with-Postman","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SantanaSJ%2Fendpoint-testing-with-Postman","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SantanaSJ%2Fendpoint-testing-with-Postman/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SantanaSJ%2Fendpoint-testing-with-Postman/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SantanaSJ%2Fendpoint-testing-with-Postman/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SantanaSJ","download_url":"https://codeload.github.com/SantanaSJ/endpoint-testing-with-Postman/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SantanaSJ%2Fendpoint-testing-with-Postman/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32583930,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T06:36:36.687Z","status":"ssl_error","status_checked_at":"2026-05-03T06:36:09.306Z","response_time":103,"last_error":"SSL_read: 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":["java","spring","spring-boot","spring-security"],"created_at":"2024-11-11T17:07:40.258Z","updated_at":"2026-05-03T20:32:43.066Z","avatar_url":"https://github.com/SantanaSJ.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"### Basic testing with Postman\nSpring Restful web service end points \u003cbr\u003e\nWe will have the following rest web services endpoints.\n\n\n|    \t| URI                             \t| HTTP Method \t| Details                \t|\n|----\t|---------------------------------\t|-------------\t|------------------------\t|\n| 1  \t| /api/artist/all                 \t| GET         \t|  Gets all   artists    \t|\n| 2  \t| /api/album/all                  \t| GET         \t| Gets all albums        \t|\n| 3  \t| /api/artist/find/{id}           \t| GET         \t| Find an artist by id   \t|\n| 4  \t| /api/album/find/{id}            \t| GET         \t| Find an album by id     \t|\n| 5  \t| /api/artist/find-by-name/{name} \t| GET         \t| Find artist by name    \t|\n| 6  \t| /api/album/find-by-name/{name}  \t| GET         \t| Find album by name     \t|\n| 7  \t| /api/artist/add                 \t| POST        \t| Add an artist          \t|\n| 8  \t| /api/album/add                  \t| POST        \t| Add an album            \t|\n| 9  \t| /api/artist/update              \t| PATCH       \t| Update an artist       \t|\n| 10 \t| /api/album/update               \t| PATCH       \t| Update an album         \t|\n| 11 \t| /api/artist/delete{id}          \t| DELETE      \t| Delete an artist       \t|\n| 12 \t| /api/vinyl/delete{id}           \t| DELETE      \t| Delete a album         \t|\n\n\n\n### Get all artists\n\n```\nGET /api/artist/all\n\nRESPONSE: HTTP 200 (OK)\n```\n\u003cimg src=\"https://github.com/SantanaSJ/vinyl-store-app/blob/master/all artists.png\" alt=\"postman\" title=\"postman\"\u003e\n\n\n### Get all albums\n\n```\nGET /api/album/all\n\nRESPONSE: HTTP 200 (OK)\n```\n\u003cimg src=\"https://github.com/SantanaSJ/vinyl-store-app/blob/master/all.png\" alt=\"postman\" title=\"postman\"\u003e\n\n### Create an artist \n\n```\nPOST /api/artist/add\nAccept: */*\nContent-Type: application/json\n{\n    \"name\": \"Pink Floyd\",\n    \"description\": \"Pink Floyd are an English rock band formed in London in 1965.\",\n    \"albums\": [\n        {\n            \"artist\": \"Pink Floyd\",\n            \"albumName\": \"The Dark Side of the Moon\",\n            \"description\": \"The Dark Side of the Moon is the eighth studio album by the English rock band Pink Floyd. \"\n        }\n    ]\n}\nRESPONSE: HTTP 201 (Created)\nLocation header: http://localhost:8080/artist/23\n```\n\u003cimg src=\"https://github.com/SantanaSJ/vinyl-store-app/blob/master/add artist.png\" alt=\"postman\" title=\"postman\"\u003e\n\n### Create an album \n```\nPOST /api/album/add\nAccept: */*\nContent-Type: application/json\n{\n    \"artist\": \"Pink Floyd\",\n    \"albumName\": \"Atom Heart Mother\",\n    \"description\": \"Atom Heart Mother is the fifth studio album by the English progressive rock band Pink Floyd.\"\n}\nRESPONSE: HTTP 201 (Created)\nLocation header: http://localhost:8080/album/23\n```\n\u003cimg src=\"https://github.com/SantanaSJ/vinyl-store-app/blob/master/add album.png\" alt=\"postman\" title=\"postman\"\u003e\n\n### Update an artist \n```\nPATCH /api/artist/update\nAccept: */*\nContent-Type: application/json\n{\n    \"id\": {{artistId}},\n    \"name\": \"Smashing Pumpkins3\",\n    \"description\": \"Changed description.\"\n}\nRESPONSE: HTTP 200 (artist)\n```\n\u003cimg src=\"https://github.com/SantanaSJ/vinyl-store-app/blob/master/artist update.png\" alt=\"postman\" title=\"postman\"\u003e\n\n### Update an album \n```\nPATCH /api/album/update\nAccept: */*\nContent-Type: application/json\n{\n    \"id\": {{albumId}},\n    \"albumName\": \"Stormbringer1\",\n    \"description\": \"Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\"\n}\nRESPONSE: HTTP 200 (album)\n```\n\u003cimg src=\"https://github.com/SantanaSJ/vinyl-store-app/blob/master/album update.png\" alt=\"postman\" title=\"postman\"\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsantanasj%2Fendpoint-testing-with-postman","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsantanasj%2Fendpoint-testing-with-postman","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsantanasj%2Fendpoint-testing-with-postman/lists"}