{"info":{"_postman_id":"0855d952-4a91-4074-ae26-ccb893d537cb","name":"Playlist RESTful","description":"<html><head></head><body><p>Documentation for Playlists API.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"29003440","collectionId":"0855d952-4a91-4074-ae26-ccb893d537cb","publishedId":"2s9YC8xXL8","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2023-09-20T05:18:37.000Z"},"item":[{"name":"Get Playlists","id":"a2fff663-923f-49e6-900d-23beae9a3576","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"localhost:8000/playlists/","description":"<p>Returns a list of all public Playlist Records.</p>\n","urlObject":{"port":"8000","path":["playlists",""],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"a603bfd3-e348-460c-8895-aae649af5f2f","name":"Get Playlists","originalRequest":{"method":"GET","header":[],"url":"localhost:8000/playlists/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 20 Sep 2023 03:46:37 GMT"},{"key":"Content-Length","value":"496"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"ID\": 2,\n            \"CreatedAt\": \"2023-09-16T18:48:28.952883079-07:00\",\n            \"UpdatedAt\": \"2023-09-19T20:45:13.721318155-07:00\",\n            \"DeletedAt\": null,\n            \"name\": \"Twitch Streams\",\n            \"creator\": \"Mary Jane\",\n            \"link\": [\n                \"Twitch.tv/snutzy\",\n                \"Twitch.tv/asmongold\",\n                \"Twitch.tv/ziqoftw\"\n            ],\n            \"public\": true\n        },\n        {\n            \"ID\": 3,\n            \"CreatedAt\": \"2023-09-19T20:46:32.72543932-07:00\",\n            \"UpdatedAt\": \"2023-09-19T20:46:32.72543932-07:00\",\n            \"DeletedAt\": null,\n            \"name\": \"YouTube Channels\",\n            \"creator\": \"Frank Sinatra\",\n            \"link\": [\n                \"Louis Armstrong\",\n                \"Chet Baker\"\n            ],\n            \"public\": true\n        }\n    ]\n}"}],"_postman_id":"a2fff663-923f-49e6-900d-23beae9a3576"},{"name":"Get Playlist Details","id":"1f629a14-ce15-48f7-aa31-9f36f46b99c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"localhost:8000/playlists/{playlistId}","description":"<p>Returns details about the specific Playlist record.</p>\n","urlObject":{"port":"8000","path":["playlists","{playlistId}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"44bc0258-2ba2-4c49-9255-e00d1e39ca4b","name":"Get Playlist Details","originalRequest":{"method":"GET","header":[],"url":"localhost:8000/playlists/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 20 Sep 2023 03:40:05 GMT"},{"key":"Content-Length","value":"211"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"ID\": 2,\n        \"CreatedAt\": \"2023-09-16T18:48:28.952883079-07:00\",\n        \"UpdatedAt\": \"2023-09-16T18:48:28.952883079-07:00\",\n        \"DeletedAt\": null,\n        \"name\": \"articles\",\n        \"creator\": \"noslen\",\n        \"link\": [\n            \"@pocket\",\n            \"@nyt\"\n        ],\n        \"public\": true\n    }\n}"}],"_postman_id":"1f629a14-ce15-48f7-aa31-9f36f46b99c7"},{"name":"Create Playlist","id":"7de5d28e-1cfb-4ca5-b2dc-fa0c25745370","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"YouTube Channels\",\n    \"Creator\": \"Frank Sinatra\",\n    \"Links\": [\"Louis Armstrong\", \"Chet Baker\"],\n    \"Public\": true\n}","options":{"raw":{"language":"json"}}},"url":"localhost:8000/playlists/","description":"<p>Creates a new Playlist record.</p>\n","urlObject":{"port":"8000","path":["playlists",""],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"7d1349fa-f613-415c-ae9c-436428bd54b8","name":"Create Playlist","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"YouTube Channels\",\n    \"Creator\": \"Frank Sinatra\",\n    \"Links\": [\"Louis Armstrong\", \"Chet Baker\"],\n    \"Public\": true\n}","options":{"raw":{"language":"json"}}},"url":"localhost:8000/playlists/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 20 Sep 2023 03:43:43 GMT"},{"key":"Content-Length","value":"240"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"ID\": 3,\n        \"CreatedAt\": \"2023-09-19T20:43:43.458241145-07:00\",\n        \"UpdatedAt\": \"2023-09-19T20:43:43.458241145-07:00\",\n        \"DeletedAt\": null,\n        \"name\": \"YouTube Channels\",\n        \"creator\": \"Frank Sinatra\",\n        \"link\": [\n            \"Louis Armstrong\",\n            \"Chet Baker\"\n        ],\n        \"public\": true\n    }\n}"}],"_postman_id":"7de5d28e-1cfb-4ca5-b2dc-fa0c25745370"},{"name":"Update Playlist","id":"8883fe43-da28-4176-9deb-7ef9a0965a2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"Twitch Streams\",\n    \"Creator\": \"Mary Jane\",\n    \"Links\": [\"Twitch.tv/snutzy\", \"Twitch.tv/asmongold\", \"Twitch.tv/ziqoftw\"],\n    \"Public\": true\n}","options":{"raw":{"language":"json"}}},"url":"localhost:8000/playlists/{playlistId}","description":"<p>Updates an existing Playlist record.</p>\n","urlObject":{"port":"8000","path":["playlists","{playlistId}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"2535e02c-067c-4225-90f2-5d43bc5efa17","name":"Update Playlist","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"Name\": \"Twitch Streams\",\n    \"Creator\": \"Mary Jane\",\n    \"Links\": [\"Twitch.tv/snutzy\", \"Twitch.tv/asmongold\", \"Twitch.tv/ziqoftw\"],\n    \"Public\": true\n}","options":{"raw":{"language":"json"}}},"url":"localhost:8000/playlists/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 20 Sep 2023 05:16:59 GMT"},{"key":"Content-Length","value":"263"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"ID\": 2,\n        \"CreatedAt\": \"2023-09-16T18:48:28.952883079-07:00\",\n        \"UpdatedAt\": \"2023-09-19T22:16:59.60038982-07:00\",\n        \"DeletedAt\": null,\n        \"name\": \"Twitch Streams\",\n        \"creator\": \"Mary Jane\",\n        \"link\": [\n            \"Twitch.tv/snutzy\",\n            \"Twitch.tv/asmongold\",\n            \"Twitch.tv/ziqoftw\"\n        ],\n        \"public\": true\n    }\n}"}],"_postman_id":"8883fe43-da28-4176-9deb-7ef9a0965a2b"},{"name":"Delete Playlist","id":"44b8f986-0184-4adf-a7ac-ff26c5e8e1a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"localhost:8000/playlists/{playlistId}","description":"<p>Deletes an existing Playlist record.</p>\n","urlObject":{"port":"8000","path":["playlists","{playlistId}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"5d89c9b1-4441-4f35-bbea-368cbc65ea14","name":"Delete Playlist","originalRequest":{"method":"DELETE","header":[],"url":"localhost:8000/playlists/2"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 20 Sep 2023 03:46:17 GMT"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"44b8f986-0184-4adf-a7ac-ff26c5e8e1a6"}],"variable":[{"key":"playlistId","value":"2"}]}