{"info":{"_postman_id":"59e44c07-19ac-4d62-b0e8-6cf74e53ff46","name":"Sports Team Website API","description":"<html><head></head><body><p>A collection of APIs for managing various aspects of a sports team website, including players, coaches, juniors, competitions, matches, news, drafts, etc.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"24392833","collectionId":"59e44c07-19ac-4d62-b0e8-6cf74e53ff46","publishedId":"2s9Xy3sBLL","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2023-08-10T16:33:54.000Z"},"item":[{"name":"Player","item":[{"name":"Create new player","id":"39eb36e9-cd89-4358-bdb0-606b39a212ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"firstName\": \"Theresia\",\r\n    \"lastName\": \"Mann\",\r\n    \"nationality\": \"Gibraltar\",\r\n    \"position\": \"Outside Hitter\",\r\n    \"birthDate\": \"2000-04-06\",\r\n    \"height\": 1.88,\r\n    \"playerNumber\": 43,\r\n    \"description\": \"neural\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/player","description":"<p>Add a new player to the database. Returns the newly created player's information and a 201 Created status. </p>\n","urlObject":{"path":["api","player"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"39eb36e9-cd89-4358-bdb0-606b39a212ba"},{"name":"Get players","id":"db907aa3-f49e-446e-a40f-54b929be9674","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/player","description":"<p>Retrieve a list of players. Optionally, specify the number of players to fetch.</p>\n","urlObject":{"path":["api","player"],"host":[""],"query":[{"disabled":true,"description":{"content":"<p>The number of players to be returned of all players</p>\n","type":"text/plain"},"key":"numOfPlayers","value":"3"}],"variable":[]}},"response":[],"_postman_id":"db907aa3-f49e-446e-a40f-54b929be9674"},{"name":"Get player by id","id":"cfa686cb-1e9c-47fe-b2ef-6bed5673f8d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/player/1","description":"<p>Retrieve details of a specific player using their ID. </p>\n","urlObject":{"path":["api","player","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"cfa686cb-1e9c-47fe-b2ef-6bed5673f8d3"},{"name":"Get player photo by player_id","id":"bbee848c-52c8-413c-afd6-73cac25cfce9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/player/image/1","description":"<p>Get the photo of a specific player by their ID. </p>\n","urlObject":{"path":["api","player","image","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"bbee848c-52c8-413c-afd6-73cac25cfce9"},{"name":"Get player's achievements","id":"e0a1e36b-60de-4f5e-ad27-873a0d6a35dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/player/1/achievements","description":"<p>Fetch achievements of a player by their ID. </p>\n","urlObject":{"path":["api","player","1","achievements"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"e0a1e36b-60de-4f5e-ad27-873a0d6a35dc"},{"name":"Update player","id":"227ba8e1-ec5e-440e-be82-bf86f8029720","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"firstName\": \"Lucian\",\r\n    \"lastName\": \"Tofan\",\r\n    \"nationality\": \"Romanian\",\r\n    \"position\": \"Opposite\",\r\n    \"birthDate\": \"1985-10-23\",\r\n    \"height\": 2.0,\r\n    \"playerNumber\": 23,\r\n    \"description\": \"\",\r\n    \"photo\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/player/1","description":"<p>Update player details by their ID. Returns the updated player's information.</p>\n","urlObject":{"path":["api","player","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"227ba8e1-ec5e-440e-be82-bf86f8029720"},{"name":"Delete player","id":"2f5578c1-0759-4a10-9fc1-fa0c216a8cd3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"/api/player/1","description":"<p>Delete a player using their ID. Returns a 200 OK status. </p>\n","urlObject":{"path":["api","player","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"2f5578c1-0759-4a10-9fc1-fa0c216a8cd3"}],"id":"ed72de81-4b15-43cb-8097-b8ff0e226040","description":"<p>These APIs enable manipulation of player data, including fetching player information, their achievements, photos, adding new players, updating player details, and deleting players.</p>\n","_postman_id":"ed72de81-4b15-43cb-8097-b8ff0e226040"},{"name":"Coach","item":[{"name":"Create new coach","id":"bc8afd40-cef4-482f-ac14-520782cf6a44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"firstName\": \"Andrei\",\r\n    \"lastName\": \"Paval\",\r\n    \"nationality\": \"Romanian\",\r\n    \"birthDate\": \"2000-10-03\",\r\n    \"description\": \"\",\r\n    \"photo\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/coach","description":"<p>Add a new coach to the database. Returns the newly created coach's information and a <code>201 Created</code> status.</p>\n","urlObject":{"path":["api","coach"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"bc8afd40-cef4-482f-ac14-520782cf6a44"},{"name":"Get coaches","id":"7e459f81-ef90-4888-8e23-2d9627104dde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/coach","description":"<p>Retrieve a list of all coaches.</p>\n","urlObject":{"path":["api","coach"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"7e459f81-ef90-4888-8e23-2d9627104dde"},{"name":"Get coach by id","id":"0fdb8a7a-480c-4b38-9f1b-53a3b7333afa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/coach/2","description":"<p>Fetch details of a specific coach using their ID.</p>\n","urlObject":{"path":["api","coach","2"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"0fdb8a7a-480c-4b38-9f1b-53a3b7333afa"},{"name":"Get coach photo","id":"a6b697b4-51a8-4745-9523-d4e1a0e9ebb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/coach/image/1","description":"<p>Get the photo of a specific coach by their ID.</p>\n","urlObject":{"path":["api","coach","image","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"a6b697b4-51a8-4745-9523-d4e1a0e9ebb5"},{"name":"Update coach","id":"4e69dbb3-2c80-4237-bf23-5cf27fef5d56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"birthDate\": \"2001-10-02\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/coach/1","description":"<p>Update coach details by their ID. Returns the updated coach's information.</p>\n","urlObject":{"path":["api","coach","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"4e69dbb3-2c80-4237-bf23-5cf27fef5d56"},{"name":"Delete coach","id":"9766b9c4-745a-45ce-8a53-f91660a10642","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"/api/coach/3","description":"<p>Delete a coach using their ID. Returns a <code>200 OK</code> status.</p>\n","urlObject":{"path":["api","coach","3"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"9766b9c4-745a-45ce-8a53-f91660a10642"}],"id":"eb09f6c7-c12e-44e2-be20-a2a5a2b0293f","description":"<p>These APIs allow you to interact with coach data, including fetching coach information, photos, adding new coaches, updating coach details, and deleting coaches. </p>\n","_postman_id":"eb09f6c7-c12e-44e2-be20-a2a5a2b0293f"},{"name":"Junior","item":[{"name":"Add new Junior","id":"43cef9a6-1d51-499a-baa9-49ef4befc616","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"firstName\": \"Andrei\",\r\n    \"lastName\": \"Paval\",\r\n    \"birthDate\": \"2000-10-03\",\r\n    \"division\": \"Juniors\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/junior","description":"<p>Add a new junior player. Returns the newly created junior player's information and a <code>201 Created</code> status.</p>\n","urlObject":{"path":["api","junior"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"43cef9a6-1d51-499a-baa9-49ef4befc616"},{"name":"Get all Juniors","id":"7151ae8c-091d-4d76-bdcd-1aa0fa722a47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/junior","description":"<p>Retrieve a list of all junior players.</p>\n","urlObject":{"path":["api","junior"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"7151ae8c-091d-4d76-bdcd-1aa0fa722a47"},{"name":"Get Junior by id","id":"7ab9aab2-e935-46fe-acb7-cbbf3bbbf72c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/junior/1","description":"<p>Fetch details of a specific junior player using its ID.</p>\n","urlObject":{"path":["api","junior","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"7ab9aab2-e935-46fe-acb7-cbbf3bbbf72c"},{"name":"Get Juniors by division","id":"e37c5b40-258b-43ee-bf3d-841657b0bec8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/junior/division/juniors","description":"<p>Retrieve junior players by their division.</p>\n","urlObject":{"path":["api","junior","division","juniors"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"e37c5b40-258b-43ee-bf3d-841657b0bec8"},{"name":"Get junior's achievements","id":"95141007-a147-4ecf-8562-b3f83a909fc6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/junior/1/achievements","description":"<p>Retrieve achievements of a specific junior player using their ID.</p>\n","urlObject":{"path":["api","junior","1","achievements"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"95141007-a147-4ecf-8562-b3f83a909fc6"},{"name":"Update Junior by id","id":"cdd5c71b-b9d7-4152-8fd7-bcdd21323813","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"firstName\": \"Andrei\",\r\n    \"lastName\": \"Pavel\",\r\n    \"birthDate\": \"2000-10-03\",\r\n    \"division\": \"Mini-volleyball\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/junior/1","description":"<p>Update junior player details by their ID. Returns the updated junior player's information.</p>\n","urlObject":{"path":["api","junior","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"cdd5c71b-b9d7-4152-8fd7-bcdd21323813"},{"name":"Delete Junior by id","id":"601e4759-5d4a-4abe-9ed1-d73afa6caf57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"/api/junior/1","description":"<p>Delete a junior player using their ID. Returns a <code>200 OK</code> status.</p>\n","urlObject":{"path":["api","junior","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"601e4759-5d4a-4abe-9ed1-d73afa6caf57"}],"id":"e22c6454-69aa-4e5f-932a-6eabf7ba9943","description":"<p>These APIs allow you to manage junior player data, including fetching all junior players, getting specific player information by ID, filtering players by division, retrieving player achievements, adding new junior players, updating player information, and deleting junior players.</p>\n","_postman_id":"e22c6454-69aa-4e5f-932a-6eabf7ba9943"},{"name":"Competition","item":[{"name":"Create competition","id":"3b7ccfd1-0698-4f61-ac86-aa7ef45bb82e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"competitionName\": \"Campionat\",\r\n    \"season\": \"2022-2023\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/competition","description":"<p>Add a new competition. Returns the newly created competition's information and a <code>201 Created</code> status.</p>\n","urlObject":{"path":["api","competition"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"3b7ccfd1-0698-4f61-ac86-aa7ef45bb82e"},{"name":"Get all competitions","id":"2845b0e2-0750-4c61-be6e-8e733b999569","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/competition","description":"<p>Fetch all competitions.</p>\n","urlObject":{"path":["api","competition"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"2845b0e2-0750-4c61-be6e-8e733b999569"},{"name":"Get competition by id","id":"885342af-5d34-4b5d-b1de-8d38fc1bbac8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/competition/1","description":"<p>Retrieve details of a specific competition using its ID.</p>\n","urlObject":{"path":["api","competition","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"885342af-5d34-4b5d-b1de-8d38fc1bbac8"},{"name":"Get competitions  by season and/or name","id":"1ce8dc0e-5292-4ba6-81c5-a9fb3cad4a57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/competition?season=2022-2023","description":"<p>Fetch a list of competitions. Optionally, filter by name or season.</p>\n","urlObject":{"path":["api","competition"],"host":[""],"query":[{"key":"season","value":"2022-2023"},{"disabled":true,"key":"name","value":"Cupa"}],"variable":[]}},"response":[],"_postman_id":"1ce8dc0e-5292-4ba6-81c5-a9fb3cad4a57"},{"name":"Get competition's matches","id":"587ba3d0-1655-472d-800d-2a1de331c2e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/competition/1/matches","description":"<p>Get all matches associated with a competition.</p>\n","urlObject":{"path":["api","competition","1","matches"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"587ba3d0-1655-472d-800d-2a1de331c2e1"},{"name":"Get competition's completed matches","id":"11c64450-4d3c-4a88-9fa0-aaccd8517120","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/competition/1/completedMatches","description":"<p>Get completed matches for a competition.</p>\n","urlObject":{"path":["api","competition","1","completedMatches"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"11c64450-4d3c-4a88-9fa0-aaccd8517120"},{"name":"Get competition's scheduled matches","id":"b5f9cf1e-819e-416f-852d-1743a7c78ad5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/competition/1/scheduledMatches","description":"<p>Get upcoming scheduled matches for a competition.</p>\n","urlObject":{"path":["api","competition","1","scheduledMatches"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"b5f9cf1e-819e-416f-852d-1743a7c78ad5"},{"name":"Get competition's last match","id":"f8c46947-09fc-4971-b7bb-61ca366f3060","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/competition/1/lastMatch","description":"<p>Fetch details of the last match for a competition.</p>\n","urlObject":{"path":["api","competition","1","lastMatch"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"f8c46947-09fc-4971-b7bb-61ca366f3060"},{"name":"Get competition's next match","id":"88b48a3b-7361-4c56-8bd6-cb607db73bd8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/competition/1/nextMatch","description":"<p>Retrieve details of the next scheduled match for a competition.</p>\n","urlObject":{"path":["api","competition","1","nextMatch"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"88b48a3b-7361-4c56-8bd6-cb607db73bd8"},{"name":"Update competition","id":"84fa7093-6559-40b8-bb62-3f376c325369","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"competitionName\": \"Cupa Romaniei\",\r\n    \"season\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/competition/1","description":"<p>Update competition details by its ID. Returns the updated competition's information.</p>\n","urlObject":{"path":["api","competition","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"84fa7093-6559-40b8-bb62-3f376c325369"},{"name":"Delete competition","id":"d5ead7f1-b156-46e2-9972-0f8f159912ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"/api/competition/1","description":"<p>Delete a competition using its ID. Returns a <code>200 OK</code> status.</p>\n","urlObject":{"path":["api","competition","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"d5ead7f1-b156-46e2-9972-0f8f159912ec"}],"id":"f03d0ee4-faa4-4e7c-b1fa-771222006887","description":"<p>These APIs allow you to interact with competition data, including fetching competition information, associated matches, upcoming and completed matches, adding new competitions, updating competition details, and deleting competitions.</p>\n","_postman_id":"f03d0ee4-faa4-4e7c-b1fa-771222006887"},{"name":"Match","item":[{"name":"Create match","id":"8702ca7b-e40a-40a5-b0d7-80e056b5cde7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"homeTeam\": \"CSM Suceava\",\r\n    \"homeTeamLogo\": \"\",\r\n    \"awayTeam\": \"U Cluj\",\r\n    \"awayTeamLogo\":\"\",\r\n    \"matchDate\": \"2023-02-10\",\r\n    \"matchLocation\": \"Suceava\",\r\n    \"livestreamUrl\": \"\",\r\n    \"matchScore\": \"\",\r\n    \"set1Score\": \"\",\r\n    \"set2Score\": \"\",\r\n    \"set3Score\": \"\",\r\n    \"set4Score\": \"\",\r\n    \"set5Score\": \"\",\r\n    \"competition\": {\r\n        \"competitionId\": 1\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/match","description":"<p>Add a new match using the provided match details in the request body. Returns the newly created match's information and a <code>201 Created</code> status.</p>\n","urlObject":{"path":["api","match"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"8702ca7b-e40a-40a5-b0d7-80e056b5cde7"},{"name":"Update match","id":"9c9cdb88-9aa2-494a-b100-2860cdfaddc1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"homeTeam\": \"CSM Suceava\",\r\n    \"homeTeamLogo\": \"\",\r\n    \"awayTeam\": \"U Cluj\",\r\n    \"awayTeamLogo\": \"\",\r\n    \"matchDate\": \"2023-02-20\",\r\n    \"matchLocation\": \"Suceava\",\r\n    \"livestreamUrl\": \"\",\r\n    \"matchScore\": \"\",\r\n    \"set1Score\": \"\",\r\n    \"set2Score\": \"\",\r\n    \"set3Score\": \"\",\r\n    \"set4Score\": \"\",\r\n    \"set5Score\": \"\",\r\n    \"competition\": {\r\n        \"competitionId\": 1\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/match/1","description":"<p>Update match details using its ID and the updated match information in the request body.</p>\n","urlObject":{"path":["api","match","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"9c9cdb88-9aa2-494a-b100-2860cdfaddc1"},{"name":"Get all matches","id":"23e2bcc4-f140-4651-8a69-b8bb1ba0d684","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/match","description":"<p>Retrieve details of all matches.</p>\n","urlObject":{"path":["api","match"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"23e2bcc4-f140-4651-8a69-b8bb1ba0d684"},{"name":"Get match by id","id":"d78697ca-4fcb-455a-bde1-4c3df94d258d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/match/1","description":"<p>Fetch details of a specific match using its ID.</p>\n","urlObject":{"path":["api","match","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"d78697ca-4fcb-455a-bde1-4c3df94d258d"},{"name":"Get all scheduled matches","id":"e405cd25-4106-476e-b8d9-c7ee858c0b8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/match/scheduled","description":"<p>Retrieve details of upcoming scheduled matches.</p>\n","urlObject":{"path":["api","match","scheduled"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"e405cd25-4106-476e-b8d9-c7ee858c0b8c"},{"name":"Get all completed matches","id":"2dc0cdf7-75c4-475c-9fe9-78d42726d5b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/match/completed","description":"<p>Retrieve details of completed matches.</p>\n","urlObject":{"path":["api","match","completed"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"2dc0cdf7-75c4-475c-9fe9-78d42726d5b4"},{"name":"Get next match","id":"20457e2e-9120-4e6e-8430-e4b2138730c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/match/next","description":"<p>Retrieve details of the next match.</p>\n","urlObject":{"path":["api","match","next"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"20457e2e-9120-4e6e-8430-e4b2138730c3"},{"name":"Get last match","id":"d457a1e7-ecbe-4e01-819c-a310127e3f9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/match/last","description":"<p>Retrieve details of the most recent match.</p>\n","urlObject":{"path":["api","match","last"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"d457a1e7-ecbe-4e01-819c-a310127e3f9c"},{"name":"Delete match by id","id":"a1850225-e14c-4f37-ad90-76bb2159b18f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"/api/match/2","description":"<p>Delete a match using its ID. Returns a <code>200 OK</code> status.</p>\n","urlObject":{"path":["api","match","2"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"a1850225-e14c-4f37-ad90-76bb2159b18f"},{"name":"Delete all matches","id":"ca5094a2-bd6f-4ae6-b208-c268bb5a5428","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"/api/match","description":"<p>Delete all matches. Returns a <code>200 OK</code> status.</p>\n","urlObject":{"path":["api","match"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"ca5094a2-bd6f-4ae6-b208-c268bb5a5428"}],"id":"2aed1bb7-adfd-4708-9f24-67f8ac2e0b4b","description":"<p>This collection of APIs allows you to manage match-related information, including retrieving match details (all, by ID, upcoming, completed, next, and last), adding new matches, updating match information, and deleting matches (individual or all). </p>\n","_postman_id":"2aed1bb7-adfd-4708-9f24-67f8ac2e0b4b"},{"name":"Player Achievement","item":[{"name":"Create Player achievement","id":"97b94888-ee30-4372-9185-07202c3b2b44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"achievement\": \"Player of the match\",\r\n    \"achievementDate\": \"2023-01-13\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/playerAchievement?playerId=1","description":"<p>Add a new player achievement by providing the player's ID and achievement details in the request body. Returns the newly created player achievement's information and a <code>201 Created</code> status.</p>\n","urlObject":{"path":["api","playerAchievement"],"host":[""],"query":[{"key":"playerId","value":"1"}],"variable":[]}},"response":[],"_postman_id":"97b94888-ee30-4372-9185-07202c3b2b44"},{"name":"Get all achievements","id":"3559965e-e8db-4f5c-82b4-b81ba9082853","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/playerAchievement","description":"<p>Retrieve details of all player achievements.</p>\n","urlObject":{"path":["api","playerAchievement"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"3559965e-e8db-4f5c-82b4-b81ba9082853"},{"name":"Get achievement by id","id":"aee34ca0-2413-4fdc-8878-f747b9f2551d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/playerAchievement/1","description":"<p>Retrieve details of a specific player achievement using its ID.</p>\n","urlObject":{"path":["api","playerAchievement","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"aee34ca0-2413-4fdc-8878-f747b9f2551d"},{"name":"Update achievement by id","id":"6e96e80c-ee0c-4e1b-88cf-cb188f67914f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"achievement\": \"Player of the month\",\r\n    \"achievementDate\": \"2023-01-20\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/playerAchievement/1","description":"<p>Update player achievement details using its ID and the updated achievement information in the request body.</p>\n","urlObject":{"path":["api","playerAchievement","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"6e96e80c-ee0c-4e1b-88cf-cb188f67914f"},{"name":"Delete player achievement by id","id":"2376021e-4eed-408f-b6e9-57fea55b4811","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"/api/playerAchievement/1","description":"<p>Delete a player achievement using its ID. Returns a <code>200 OK</code> status.</p>\n","urlObject":{"path":["api","playerAchievement","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"2376021e-4eed-408f-b6e9-57fea55b4811"}],"id":"038f6a09-6e2a-4d02-a69a-c79adab0b42a","description":"<p>This collection manages APIs related to player achievements.</p>\n","_postman_id":"038f6a09-6e2a-4d02-a69a-c79adab0b42a"},{"name":"Junior Achievement","item":[{"name":"Create junior achievement","id":"d7a17834-ed4f-43e2-8c08-34da76089e3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"achievement\": \"Junior of the month\",\r\n    \"achievementDate\": \"2022-12-30\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/juniorAchievement?juniorId=1","description":"<p>Add a new achievement for a specific junior player. Requires a <code>juniorId</code> as a request parameter and the achievement details in the request body. Returns the newly created junior achievement's information and a <code>201 Created</code> status.</p>\n","urlObject":{"path":["api","juniorAchievement"],"host":[""],"query":[{"key":"juniorId","value":"1"}],"variable":[]}},"response":[],"_postman_id":"d7a17834-ed4f-43e2-8c08-34da76089e3b"},{"name":"Get all achievements","id":"91f3f396-ff98-4cab-9d18-dc5fbdf1709d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/juniorAchievement","description":"<p>Retrieve a list of all junior achievements.</p>\n","urlObject":{"path":["api","juniorAchievement"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"91f3f396-ff98-4cab-9d18-dc5fbdf1709d"},{"name":"Get achievement by id","id":"7f4b11d0-0165-46ac-b2f5-71908dfd804b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/juniorAchievement/1","description":"<p> Fetch details of a specific junior achievement using its ID.</p>\n","urlObject":{"path":["api","juniorAchievement","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"7f4b11d0-0165-46ac-b2f5-71908dfd804b"},{"name":"Update achievement by id","id":"b628abce-bc1d-4bea-91a0-08ffc7932927","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"achievement\": \"Most aces\",\r\n    \"achievementDate\": \"2023-01-20\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/juniorAchievement/1","description":"<p>Update junior achievement details using its ID. Returns the updated junior achievement's information.</p>\n","urlObject":{"path":["api","juniorAchievement","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"b628abce-bc1d-4bea-91a0-08ffc7932927"},{"name":"Delete achievement by id","id":"31d7bfea-3ace-4aa2-a7ee-4aed769446d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"/api/juniorAchievement/1","description":"<p>Delete a junior achievement using its ID. Returns a <code>200 OK</code> status.</p>\n","urlObject":{"path":["api","juniorAchievement","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"31d7bfea-3ace-4aa2-a7ee-4aed769446d6"}],"id":"eaca5b7e-6d34-419c-be88-fb74d5fcf481","description":"<p>This collection allows you to manage junior achievements, including adding new achievements for specific junior players, fetching all achievements, retrieving details of specific achievements by ID, updating achievement information, and deleting achievements. </p>\n","_postman_id":"eaca5b7e-6d34-419c-be88-fb74d5fcf481"},{"name":"Sponsor","item":[{"name":"Create sponsor","id":"527796c0-2bda-468d-8ad0-f08c5f1ee196","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"sponsorName\": \"Emirates Airlines\",\r\n    \"sponsorWebsite\": \"www.emirates.com\",\r\n    \"season\": \"\",\r\n    \"sponsorLogo\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/sponsor","description":"<p>Add a new sponsor by providing sponsor details in the request body. Returns the newly created sponsor's information and a <code>201 Created</code> status.</p>\n","urlObject":{"path":["api","sponsor"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"527796c0-2bda-468d-8ad0-f08c5f1ee196"},{"name":"Get all sponsors","id":"c510d69b-5beb-40f7-b478-1b56b3a5e646","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/sponsor","description":"<p>Retrieve details of all sponsors.</p>\n","urlObject":{"path":["api","sponsor"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"c510d69b-5beb-40f7-b478-1b56b3a5e646"},{"name":"Get sponsor by id","id":"c4be48ed-d0ab-4616-8a6c-498c4ceb360b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/sponsor/1","description":"<p>Retrieve details of a specific sponsor using its ID.</p>\n","urlObject":{"path":["api","sponsor","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"c4be48ed-d0ab-4616-8a6c-498c4ceb360b"},{"name":"Update sponsor","id":"2f7a0cc1-97f7-47f0-b33c-e2bc945ab59b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"sponsorName\": \"Primaria si Consiliul Local Suceava\",\r\n    \"sponsorWebsite\": \"evp.primariasv.ro/dm_suceava/site.nsf/pagini/prima+pagina-0001220E\",\r\n    \"season\": \"\",\r\n    \"sponsorLogo\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/sponsor/1","description":"<p>Update sponsor details using its ID and the updated sponsor information in the request body.</p>\n","urlObject":{"path":["api","sponsor","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"2f7a0cc1-97f7-47f0-b33c-e2bc945ab59b"},{"name":"Delete sponsor","id":"9a61532e-6515-4324-ada3-8e452f5d0a38","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"/api/sponsor/1","description":"<p>Delete a sponsor using its ID. Returns a <code>200 OK</code> status.</p>\n","urlObject":{"path":["api","sponsor","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"9a61532e-6515-4324-ada3-8e452f5d0a38"},{"name":"Delete all sponsors","id":"60840034-4428-49c3-b3b9-c26ceaffae7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"/api/sponsor","description":"<p>Delete all sponsors. Returns a <code>200 OK</code> status.</p>\n","urlObject":{"path":["api","sponsor"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"60840034-4428-49c3-b3b9-c26ceaffae7d"}],"id":"cf8b15c3-2103-44c2-9aef-157514f219c3","description":"<p>These APIs enable manipulation of sponsors, including adding new sponsors, fetching all sponsors, retrieving details of specific sponsors by ID, updating sponsors information, and deleting sponsors.</p>\n","_postman_id":"cf8b15c3-2103-44c2-9aef-157514f219c3"},{"name":"News","item":[{"name":"Create news","id":"7b7d85df-496c-460b-a995-c743a84cd397","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"newsTitle\": \"blanditiis ut aut\",\r\n    \"description\": \"Cumque sit necessitatibus architecto. Necessitatibus doloribus minima quo sit reprehenderit. Similique rerum quia praesentium neque fuga sit ad eum aliquid. Ipsum qui dolorem quis esse optio quo in eveniet in. Sit aut voluptatibus. Voluptas eos sit.\n \rNulla facilis sapiente et ea omnis. Sequi sapiente deleniti ad nihil deserunt deleniti molestias nulla ut. Ut distinctio et ut. Rerum molestiae mollitia quas quasi ducimus.\n \rAut ut ut vel delectus consectetur. Magnam consequatur nesciunt. At veritatis doloremque vero commodi quo recusandae tempore commodi. Possimus fugiat sunt omnis quis.\",\r\n    \"publicationDate\": \"2023-08-12T17:55:59.73\",\r\n    \"hashTags\": \"multi-byte\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/news","description":"<p>Add a new news article by providing news details in the request body. Returns the newly created news article's information and a <code>201 Created</code> status.</p>\n","urlObject":{"path":["api","news"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"7b7d85df-496c-460b-a995-c743a84cd397"},{"name":"Get all published news (optionally, from 'from' and/or until 'to' params)","id":"367ab2c9-6aff-4c1b-abbf-71ec3bedd65f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/news","description":"<p>Retrieve details of all published news articles within a date range (optional).</p>\n","urlObject":{"path":["api","news"],"host":[""],"query":[{"disabled":true,"key":"from","value":"2023-01-19T09:00:00.000000"},{"disabled":true,"key":"to","value":"2023-01-19T10:00:00.000000"}],"variable":[]}},"response":[],"_postman_id":"367ab2c9-6aff-4c1b-abbf-71ec3bedd65f"},{"name":"Get all scheduled news","id":"5936a835-1584-41dd-ac0a-aa7b798a4925","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/news/scheduled","description":"<p> Retrieve details of all scheduled news articles.</p>\n","urlObject":{"path":["api","news","scheduled"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"5936a835-1584-41dd-ac0a-aa7b798a4925"},{"name":"Get news by id","id":"81976cdc-586c-4388-bc37-d066f924facf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/news/1","description":"<p>Retrieve details of a specific news article using its ID.</p>\n","urlObject":{"path":["api","news","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"81976cdc-586c-4388-bc37-d066f924facf"},{"name":"Get news with images","id":"050005aa-0471-4599-89c2-8ed95bec18ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/news/newsWithImages","description":"<p>Retrieve details of news articles with image attachments.</p>\n","urlObject":{"path":["api","news","newsWithImages"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"050005aa-0471-4599-89c2-8ed95bec18ec"},{"name":"Get news with videos","id":"e7e1dca4-2e4e-4cbc-9296-e445a16b0045","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/news/newsWithVideos","description":"<p>Retrieve details of news articles with video attachments.</p>\n","urlObject":{"path":["api","news","newsWithVideos"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"e7e1dca4-2e4e-4cbc-9296-e445a16b0045"},{"name":"Update news","id":"1235af80-f31a-452e-b61e-48ca6218cd88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"newsTitle\": \"dfasdf\",\r\n    \"description\": \"asdfasdf\",\r\n    \"publicationDate\": \"\",\r\n    \"hashTags\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/news/1","description":"<p> Update news article details using its ID and the updated news information in the request body.</p>\n","urlObject":{"path":["api","news","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"1235af80-f31a-452e-b61e-48ca6218cd88"},{"name":"Delete news by id","id":"9bf47acf-7020-472b-a7a1-33bbea75366b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"/api/news/1","description":"<p>Delete a news article using its ID. Returns a <code>200 OK</code> status.</p>\n","urlObject":{"path":["api","news","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"9bf47acf-7020-472b-a7a1-33bbea75366b"}],"id":"64e8f805-bda8-4940-95a3-0d12895ae1b0","description":"<p>This collection of APIs enables manipulation of news articles, attachments, and their details.</p>\n","_postman_id":"64e8f805-bda8-4940-95a3-0d12895ae1b0"},{"name":"Draft","item":[{"name":"Create draft","id":"c770744a-1431-4898-a1d4-a7cff90a5804","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"draftTitle\": \"CSM o invinge pe U Cluj\",\r\n    \"description\": \"\",\r\n    \"draftDate\": \"\",\r\n    \"hashTags\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/draft","description":"<p>Add a new draft. Returns the newly created draft's information and a <code>201 Created</code> status.</p>\n","urlObject":{"path":["api","draft"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"c770744a-1431-4898-a1d4-a7cff90a5804"},{"name":"Get all drafts","id":"18e46b2a-0e9d-4b01-97b8-81babc07204d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/draft","description":"<p>Retrieve a list of all drafts.</p>\n","urlObject":{"path":["api","draft"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"18e46b2a-0e9d-4b01-97b8-81babc07204d"},{"name":"Get draft by id","id":"5fda79df-ebff-4408-a412-bcc07230368c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/draft/1","description":"<p>Fetch details of a specific draft using its ID.</p>\n","urlObject":{"path":["api","draft","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"5fda79df-ebff-4408-a412-bcc07230368c"},{"name":"Get drafts with images","id":"378fb157-f066-4a19-9224-bb88f5211bd9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/draft/draftsWithImages","description":"<p>Fetch drafts with image attachments.</p>\n","urlObject":{"path":["api","draft","draftsWithImages"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"378fb157-f066-4a19-9224-bb88f5211bd9"},{"name":"Get drafts with videos","id":"69065450-2007-4611-946a-d833558cf802","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/draft/draftsWithVideos","description":"<p>Fetch drafts with video attachments.</p>\n","urlObject":{"path":["api","draft","draftsWithVideos"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"69065450-2007-4611-946a-d833558cf802"},{"name":"Update draft","id":"724f552f-ea68-4a0b-a3d5-efa0494f402f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"draftTitle\": \"CSM o invinge pe U Cluj\",\r\n    \"description\": \"vai de capul lor\",\r\n    \"draftDate\": \"\",\r\n    \"hashTags\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/draft/1","description":"<p>Update draft details by its ID. Returns the updated draft's information.</p>\n","urlObject":{"path":["api","draft","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"724f552f-ea68-4a0b-a3d5-efa0494f402f"},{"name":"Delete draft","id":"72f67e5d-3bf7-49a5-8e90-9be7a1fc0938","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"/api/draft/1","description":"<p>Delete a draft using its ID. Returns a <code>200 OK</code> status.</p>\n","urlObject":{"path":["api","draft","1"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"72f67e5d-3bf7-49a5-8e90-9be7a1fc0938"}],"id":"b3ec2a2c-03b9-4f52-b26f-9cc28ff83a45","description":"<p>These APIs allow you to interact with draft and attachment data, including adding drafts with attachments, retrieving draft information, managing attachments, updating draft details, and deleting drafts and attachments. </p>\n","_postman_id":"b3ec2a2c-03b9-4f52-b26f-9cc28ff83a45"},{"name":"Login","item":[{"name":"Login","id":"6fe67e8a-014a-4174-8c7d-90d75f8bcc1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"username","value":"andrei.paval2@student.usv.ro","type":"text"},{"key":"password","value":"password","type":"text"}]},"url":"/api/login","urlObject":{"path":["api","login"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"6fe67e8a-014a-4174-8c7d-90d75f8bcc1a"}],"id":"54d62580-2b4e-4522-9b10-5b3e0b547074","_postman_id":"54d62580-2b4e-4522-9b10-5b3e0b547074","description":""},{"name":"User","item":[{"name":"Get all users","id":"0c0b0c8e-eef0-431c-a4c1-300be5f2e15b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/user/all","urlObject":{"path":["api","user","all"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"0c0b0c8e-eef0-431c-a4c1-300be5f2e15b"}],"id":"47c84737-fe0d-428f-8179-9515ddb9ae02","_postman_id":"47c84737-fe0d-428f-8179-9515ddb9ae02","description":""}],"event":[{"listen":"prerequest","script":{"id":"943bb098-b773-4e8f-ba93-78c9e3452190","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b6da8544-8fa2-4ca0-b292-b0fb5800479c","type":"text/javascript","exec":[""]}}],"variable":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmbG9yaW4ucGFsYWdoaWFudUBzdHVkZW50LnVzdi5ybyIsInJvbGVzIjpbIkNPTlRFTlRfQ1JFQVRPUiJdLCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjgwODAvYXBpL2xvZ2luIiwiZXhwIjoxNjc3OTIzODE1fQ.aqe8m94l4y92IetM39-hTogldJmIT6E6lYNzUsEQVgU","disabled":true},{"key":"baseUrl","value":"","type":"string"}]}