{"info":{"_postman_id":"3d34268e-6177-4231-9904-b8f2767204da","name":"Game Store APIs","description":"<html><head></head><body><p>Game Store REST APIs for CRUD and Image Upload</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"26440641","collectionId":"3d34268e-6177-4231-9904-b8f2767204da","publishedId":"2s93zE41DR","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2023-07-05T07:15:50.000Z"},"item":[{"name":"Games","item":[{"name":"Get Games","id":"7fb90df7-06b7-4de7-844d-76cc20986f27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:5250/games?pageNumber=1&pageSize=10","description":"<p>Get all games with pagination, search filter, and field filtering</p>\n","urlObject":{"protocol":"http","port":"5250","path":["games"],"host":["localhost"],"query":[{"disabled":true,"key":"api-version","value":"2.0"},{"key":"pageNumber","value":"1"},{"key":"pageSize","value":"10"},{"disabled":true,"key":"filter","value":"platform"},{"disabled":true,"key":"fields","value":"name,price"}],"variable":[]}},"response":[{"id":"335bb922-4f6b-4c1e-92ee-9bbe8702cc36","name":"Get Games","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5250/games?pageNumber=1&pageSize=10","protocol":"http","host":["localhost"],"port":"5250","path":["games"],"query":[{"key":"api-version","value":"2.0","disabled":true},{"key":"pageNumber","value":"1"},{"key":"pageSize","value":"10"},{"key":"filter","value":"platform","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Tue, 04 Jul 2023 07:11:29 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"X-Pagination","value":"{\"currentPage\":1,\"pageSize\":10,\"totalCount\":5,\"totalPages\":1}"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"id\": 2,\n            \"name\": \"Super Mario 64\",\n            \"genre\": \"Platform\",\n            \"price\": 19.99,\n            \"releaseDate\": \"1996-06-23T00:00:00\",\n            \"imageUrl\": \"https://upload.wikimedia.org/wikipedia/en/6/6a/Super_Mario_64_box_cover.jpg\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Vector 2\",\n            \"genre\": \"Platform\",\n            \"price\": 9.99,\n            \"releaseDate\": \"2015-09-20T00:00:00\",\n            \"imageUrl\": \"https://placehold.co/100\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"Fifa 23\",\n            \"genre\": \"Sports\",\n            \"price\": 49.99,\n            \"releaseDate\": \"2022-09-19T00:00:00\",\n            \"imageUrl\": \"https://placehold.co/100\"\n        },\n        {\n            \"id\": 8,\n            \"name\": \"Fortnite\",\n            \"genre\": \"Fighting\",\n            \"price\": 19.99,\n            \"releaseDate\": \"2017-07-21T00:00:00\",\n            \"imageUrl\": \"https://placehold.co/100\"\n        },\n        {\n            \"id\": 10,\n            \"name\": \"Fifa 23\",\n            \"genre\": \"Sports\",\n            \"price\": 49.99,\n            \"releaseDate\": \"2022-09-19T00:00:00\",\n            \"imageUrl\": \"https://res.cloudinary.com/dbls6j3tg/image/upload/v1688453672/GameStore/sb64aaxkl1oecrvz8h5p.jpg\"\n        }\n    ]\n}"},{"id":"1f39a855-8cfd-4694-9c1b-c6fe7128fd38","name":"Get Games With Fields","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5250/games?pageNumber=1&pageSize=10&filter=platform&fields=name,price","protocol":"http","host":["localhost"],"port":"5250","path":["games"],"query":[{"key":"api-version","value":"2.0","disabled":true},{"key":"pageNumber","value":"1"},{"key":"pageSize","value":"10"},{"key":"filter","value":"platform"},{"key":"fields","value":"name,price","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 05 Jul 2023 06:47:28 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"X-Pagination","value":"{\"currentPage\":1,\"pageSize\":10,\"totalCount\":2,\"totalPages\":1}"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"fields\": [\n        {\n            \"name\": \"Super Mario 64\",\n            \"price\": 19.99\n        },\n        {\n            \"name\": \"Vector 2\",\n            \"price\": 9.99\n        }\n    ]\n}"}],"_postman_id":"7fb90df7-06b7-4de7-844d-76cc20986f27"},{"name":"Get Game By Id","id":"f772bf32-75e6-4ee0-aaf0-d9a5b6937628","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"scope","value":"<scope>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"clientId","value":"<client-id>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"redirect_uri","value":"<redirect_uri>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[],"url":"http://localhost:5250/games/2?api-version=2.0","description":"<p>Get games by id with field filtering</p>\n","urlObject":{"protocol":"http","port":"5250","path":["games","2"],"host":["localhost"],"query":[{"key":"api-version","value":"2.0"},{"disabled":true,"key":"fields","value":"name,genre,imageUrl,discountedPrice"}],"variable":[]}},"response":[{"id":"47c6ffb7-28aa-4554-8179-d1d6bdcdb981","name":"Get Game By Id","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5250/games/2?api-version=2.0","protocol":"http","host":["localhost"],"port":"5250","path":["games","2"],"query":[{"key":"api-version","value":"2.0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Tue, 04 Jul 2023 07:10:10 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"id\": 2,\n        \"name\": \"Super Mario 64\",\n        \"genre\": \"Platform\",\n        \"price\": 19.99,\n        \"discountedPrice\": 13.993,\n        \"releaseDate\": \"1996-06-23T00:00:00\",\n        \"imageUrl\": \"https://upload.wikimedia.org/wikipedia/en/6/6a/Super_Mario_64_box_cover.jpg\"\n    }\n}"},{"id":"5fe70311-b1f5-4759-91f1-7256128198ee","name":"Get Game By Id With Fields","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localhost:5250/games/2?api-version=2.0&fields=name,genre,imageUrl,discountedPrice","protocol":"http","host":["localhost"],"port":"5250","path":["games","2"],"query":[{"key":"api-version","value":"2.0"},{"key":"fields","value":"name,genre,imageUrl,discountedPrice"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 05 Jul 2023 07:02:30 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"fields\": {\n        \"name\": \"Super Mario 64\",\n        \"genre\": \"Platform\",\n        \"imageUrl\": \"https://upload.wikimedia.org/wikipedia/en/6/6a/Super_Mario_64_box_cover.jpg\",\n        \"discountedPrice\": 13.993\n    }\n}"}],"_postman_id":"f772bf32-75e6-4ee0-aaf0-d9a5b6937628"},{"name":"Create Game","id":"2d510b77-ff57-4146-9a0e-ae8c4f4f2392","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{admin_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Fifa 23\",\r\n    \"genre\": \"Sports\",\r\n    \"price\": 49.99,\r\n    \"releaseDate\": \"2022-09-19\",\r\n    \"imageUrl\": \"https://res.cloudinary.com/dbls6j3tg/image/upload/v1688453672/GameStore/sb64aaxkl1oecrvz8h5p.jpg\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5250/games","urlObject":{"protocol":"http","port":"5250","path":["games"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"909f75cc-6783-411f-9d0f-19167c790e73","name":"Create Game","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Fifa 23\",\r\n    \"genre\": \"Sports\",\r\n    \"price\": 49.99,\r\n    \"releaseDate\": \"2022-09-19\",\r\n    \"imageUrl\": \"https://res.cloudinary.com/dbls6j3tg/image/upload/v1688453672/GameStore/sb64aaxkl1oecrvz8h5p.jpg\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5250/games"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Tue, 04 Jul 2023 07:09:00 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Location","value":"http://localhost:5250/games/10"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"id\": 10,\n        \"name\": \"Fifa 23\",\n        \"genre\": \"Sports\",\n        \"price\": 49.99,\n        \"releaseDate\": \"2022-09-19T00:00:00\",\n        \"imageUrl\": \"https://res.cloudinary.com/dbls6j3tg/image/upload/v1688453672/GameStore/sb64aaxkl1oecrvz8h5p.jpg\"\n    }\n}"}],"_postman_id":"2d510b77-ff57-4146-9a0e-ae8c4f4f2392"},{"name":"Update Game By Id","id":"091ce209-3365-47c1-be28-3a2d759fdd97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{admin_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Super Mario 64\",\r\n    \"genre\": \"Platform\",\r\n    \"price\": 19.99,\r\n    \"releaseDate\": \"1996-06-23T00:00:00\",\r\n    \"imageUrl\": \"https://upload.wikimedia.org/wikipedia/en/6/6a/Super_Mario_64_box_cover.jpg\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5250/games/2","urlObject":{"protocol":"http","port":"5250","path":["games","2"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"70886f7c-03c1-478f-b6c4-eb5664be1a72","name":"Update Game By Id","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Super Mario 64\",\r\n    \"genre\": \"Platform\",\r\n    \"price\": 19.99,\r\n    \"releaseDate\": \"1996-06-23T00:00:00\",\r\n    \"imageUrl\": \"https://upload.wikimedia.org/wikipedia/en/6/6a/Super_Mario_64_box_cover.jpg\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5250/games/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Tue, 04 Jul 2023 07:07:17 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"id\": 2,\n        \"name\": \"Super Mario 64\",\n        \"genre\": \"Platform\",\n        \"price\": 19.99,\n        \"releaseDate\": \"1996-06-23T00:00:00\",\n        \"imageUrl\": \"https://upload.wikimedia.org/wikipedia/en/6/6a/Super_Mario_64_box_cover.jpg\"\n    }\n}"}],"_postman_id":"091ce209-3365-47c1-be28-3a2d759fdd97"},{"name":"Delete Game By Id","id":"41c5ba34-4765-44de-9d60-a50fe1f29cb2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{admin_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"http://localhost:5250/games/9","urlObject":{"protocol":"http","port":"5250","path":["games","9"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"31c168fe-aea0-4f7b-b24a-009b876ccff2","name":"Delete Game By Id","originalRequest":{"method":"DELETE","header":[],"url":"http://localhost:5250/games/9"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Tue, 04 Jul 2023 07:09:43 GMT"},{"key":"Server","value":"Kestrel"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"41c5ba34-4765-44de-9d60-a50fe1f29cb2"}],"id":"a13f25ed-de84-487c-9356-f558ec780949","description":"<p>CRUD for Games Endpoints</p>\n","_postman_id":"a13f25ed-de84-487c-9356-f558ec780949"},{"name":"Images","item":[{"name":"Upload Image","id":"d10f2593-9920-4897-9ff6-31a2daad03b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{admin_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":"/C:/Users/magboola/Downloads/GameImages-230528-233513/ForzaHorizon5.jpg"}]},"url":"http://localhost:5250/images/upload","urlObject":{"protocol":"http","port":"5250","path":["images","upload"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"facd6618-4764-4617-a81f-60ecb854c85b","name":"Upload Image","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":"/C:/Users/magboola/Downloads/GameImages-230528-233513/ForzaHorizon5.jpg"}]},"url":"http://localhost:5250/images/upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Tue, 04 Jul 2023 07:13:07 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"imageUrl\": \"https://res.cloudinary.com/dbls6j3tg/image/upload/v1688454786/GameStore/ig9ltta6qlgfdzsjn71n.jpg\"\n    }\n}"}],"_postman_id":"d10f2593-9920-4897-9ff6-31a2daad03b2"}],"id":"6f094556-39fd-487c-ab4b-8f9592507bcc","_postman_id":"6f094556-39fd-487c-ab4b-8f9592507bcc","description":""},{"name":"https://molaycule.eu.auth0.com/.well-known/openid-configuration","id":"365437c9-bf57-42b7-bf09-49360ed4d376","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://molaycule.eu.auth0.com/.well-known/openid-configuration","urlObject":{"protocol":"https","path":[".well-known","openid-configuration"],"host":["molaycule","eu","auth0","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"365437c9-bf57-42b7-bf09-49360ed4d376"},{"name":"Swagger","id":"4ce7c2b0-ecf1-47ba-bdb2-ac1c0b58ca98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://localhost:5250/swagger/v1/swagger.json","urlObject":{"protocol":"http","port":"5250","path":["swagger","v1","swagger.json"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"4ce7c2b0-ecf1-47ba-bdb2-ac1c0b58ca98"}]}