{"info":{"_postman_id":"c078629d-92e4-4cc3-8b78-2bf10c86d3d8","name":"FLEX","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"description":"<html><head></head><body></body></html>","owner":"8325040","collectionId":"c078629d-92e4-4cc3-8b78-2bf10c86d3d8","publishedId":"UzQxP58G","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2022-07-19T08:20:15.000Z"},"item":[{"name":"Knowledge","item":[{"name":"Token Usage","id":"97dcb234-6cc0-406b-9e8b-8a2056dfe930","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"INFO","header":[],"url":"","description":"<p><b>Service Tokens</b></p>\n<p>Service tokens are used when no regional context is required on the API endpoint.</p>\n<p>Service token is not a guest token and should not be used as such, because guest tokens have a regional context based on where the guest is coming from.</p>\n<p>Examples of endpoints that have no regional context, and use service tokens are:</p>\n<ol>\n<li><p>getservicetoken</p>\n</li>\n<li><p>getservicetokeninfo/{{HM_ServiceAPI_Token}}</p>\n</li>\n<li><p>getserviceinfo/{{HM_ServiceAPI_Token}}</p>\n</li>\n<li><p>getshorturl/{{HM_ServiceAPI_Token}}</p>\n</li>\n<li><p>getregionbyip/{{HM_ServiceAPI_Token}}?ip={IP}</p>\n</li>\n<li><p>getcountries/{{HM_ServiceAPI_Token}}</p>\n</li>\n<li><p>getguestmembertoken/{{HM_ServiceAPI_Token}}/{RegionID}</p>\n</li>\n<li><p>getmembertoken/{{HM_ServiceAPI_Token}}</p>\n</li>\n<li><p>registermember/{{HM_ServiceAPI_Token}}</p>\n</li>\n<li><p>validatepersistentlogintoken/{{HM_ServiceAPI_Token}}</p>\n</li>\n</ol>\n<p>When looking at the documentation, if you see {{HM_ServiceAPI_Token}} in the URL then this is the service token.</p>\n<p><b>Member Tokens</b></p>\n<p>Member tokens can come in two forms:</p>\n<ol>\n<li><p>Guest member token</p>\n</li>\n<li><p>Logged in member token</p>\n</li>\n</ol>\n<p>A <strong>guest member token</strong> is obtained by:</p>\n<ol>\n<li><p>getregionbyip/{{HM_ServiceAPI_Token}}?ip={IP}</p>\n</li>\n<li><p>getguestmembertoken/{{HM_ServiceAPI_Token}}/{RegionID}</p>\n</li>\n</ol>\n<p>This guest member token can be used in all API endpoints that contain “HM_ServiceAPI_MemberToken”</p>\n<p>A l<strong>ogged in member token</strong> is obtained by:</p>\n<ol>\n<li><p>getmembertoken/{{HM_ServiceAPI_Token}}</p>\n</li>\n<li><p>validatepersistentlogintoken/{{HM_ServiceAPI_Token}}</p>\n</li>\n</ol>\n<p>This logged in member token can be used in all API endpoints that contain “HM_ServiceAPI_MemberToken”</p>\n<p><b>Desired State</b></p>\n<p>Our <strong>desired state</strong> is:</p>\n<ol>\n<li><p>Use service tokens in only the API methods that are listed as {{HM_ServiceAPI_Token}}</p>\n</li>\n<li><p>Use member tokens in all other cases</p>\n</li>\n<li><p>When a user comes to the site, the following should occur:</p>\n</li>\n<li><p>Retrieve the users IP address</p>\n</li>\n<li><p>Retrieve a region based on the IP address</p>\n</li>\n<li><p>Use the region to retrieve a guest member token</p>\n</li>\n<li><p>If the user logs in, the guest member token should be replaced with the logged in member token</p>\n<ol>\n<li>All page content that had been generated using the guest member token should be refreshed using the logged in member token</li>\n</ol>\n</li>\n<li><p>If the user logs out, the logged in member token should be replaced with the guest member token</p>\n<ol>\n<li>All page content that had been generated using the logged in member token should be refreshed using the guest member token</li>\n</ol>\n</li>\n</ol>\n","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"97dcb234-6cc0-406b-9e8b-8a2056dfe930"}],"id":"1f9f1150-7be1-4269-a8d7-5b9153da07eb","_postman_id":"1f9f1150-7be1-4269-a8d7-5b9153da07eb","description":""},{"name":"==CMS==","item":[{"name":"Authentication","item":[{"name":"Get Authorised","event":[{"listen":"test","script":{"id":"20eb5a70-2392-4a14-8a63-ca2a42d0d7ca","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","var jsonData = null;","var jsonDataToken = \"\";","","/*if (responseBody.indexOf(\"<?xml\") >= 0) {","    jsonData = xml2Json(responseBody);","    jsonDataToken = jsonData.responseservicetoken.token.$.value;","} else {*/","    jsonData = JSON.parse(responseBody)","    jsonDataToken = jsonData.access_token;","/*}*/","","console.log(\"HM_IntegrationAPI_AuthToken set to \" + jsonDataToken);","","postman.setEnvironmentVariable(\"HM_IntegrationAPI_AuthToken\", jsonDataToken);","postman.setEnvironmentVariable(\"HM_ServiceAPI_AuthToken\", jsonDataToken);"],"type":"text/javascript"}}],"id":"8783eea6-be88-41f1-b63d-042c061c5c0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"{{HM_IntegrationAPI_AuthGrantType}}","type":"text"},{"key":"client_id","value":"{{HM_IntegrationAPI_AuthClientID}}","type":"text"},{"key":"client_secret","value":"{{HM_IntegrationAPI_AuthClientSecret}}","type":"text"}]},"url":"{{HM_IntegrationAPI_AuthUrl}}","urlObject":{"host":["{{HM_IntegrationAPI_AuthUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8783eea6-be88-41f1-b63d-042c061c5c0d"},{"name":"Get Service Token","event":[{"listen":"test","script":{"id":"1a00da84-e3cc-4913-9017-03c6d976f0ca","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","var jsonData = null;","var jsonDataToken = \"\";","","if (responseBody.indexOf(\"<?xml\") >= 0) {","    jsonData = xml2Json(responseBody);","    jsonDataToken = jsonData.responseservicetoken.token.$.value;","} else {","    jsonData = JSON.parse(responseBody)","    jsonDataToken = jsonData.Token.Value;","}","","console.log(\"HM_IntegrationAPI_Token set to \" + jsonDataToken);","console.log(\"HM_ServiceAPI_Token set to \" + jsonDataToken);","","postman.setEnvironmentVariable(\"HM_IntegrationAPI_Token\", jsonDataToken);","postman.setEnvironmentVariable(\"HM_ServiceAPI_Token\", jsonDataToken);"],"type":"text/javascript"}}],"id":"62c895a2-5aa3-4957-9357-bafa00c6f5d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"AccessKey","value":"{{HM_IntegrationAPI_Key}}"},{"key":"Authorization","value":"{{HM_IntegrationAPI_AuthToken}}"},{"key":"Content-Type","value":"application/json"}],"url":"{{HM_IntegrationAPI_URL}}/getservicetoken","urlObject":{"path":["getservicetoken"],"host":["{{HM_IntegrationAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"62c895a2-5aa3-4957-9357-bafa00c6f5d0"}],"id":"2b43aa7a-8f55-420a-8fba-f5ddd53d8f4c","_postman_id":"2b43aa7a-8f55-420a-8fba-f5ddd53d8f4c","description":""},{"name":"Lookups","item":[{"name":"Lookup (When Region Required)","event":[{"listen":"test","script":{"id":"c12db662-d47c-40b9-b5d1-bf3b571d9233","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"47bc982d-cfd8-49d5-afa3-aebab0008d81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"RegionID\": \"{{RegionID}}\",\r\n\t\"Keyword\": \"%\",\r\n\t\"Wildcard\": true,\r\n\t\"ReturnTracks\": true,\r\n\t\"ReturnTracks_MainOnly\": true,\r\n\t\"ReturnTracks_Fields\": \"DisplayTitle,Keywords,Instrumentation,MusicFor,Mood\",\r\n\t\"ReturnTracks_Limit\": 1,\r\n\t\"ReturnTracks_Order\": \"Date_Descent\",\r\n\t\"ReturnTracks_DisableKeywordGroup\": true,\r\n\t\"ReturnTracks_Rank\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_IntegrationAPI_URL}}/autocomplete/{{HM_IntegrationAPI_Token}}","urlObject":{"path":["autocomplete","{{HM_IntegrationAPI_Token}}"],"host":["{{HM_IntegrationAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"47bc982d-cfd8-49d5-afa3-aebab0008d81"},{"name":"Lookup Track (By Text)","event":[{"listen":"test","script":{"id":"c12db662-d47c-40b9-b5d1-bf3b571d9233","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"79b3bfd6-3088-4c26-9a3a-b48d3ca91f5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"Keyword\": \"I'm the boss of me\",\r\n\t\"Wildcard\": true,\r\n\t\"ReturnTracks\": true,\r\n\t\"ReturnTracks_MainOnly\": true,\r\n\t\"ReturnTracks_Fields\": \"DisplayTitle,CdCode\",\r\n\t\"ReturnTracks_Limit\": 1,\r\n\t\"ReturnTracks_Order\": \"Date_Descent\",\r\n\t\"ReturnTracks_DisableKeywordGroup\": true,\r\n\t\"ReturnTracks_Rank\": \"\",\r\n    \"regionid\": \"{{regionid}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_IntegrationAPI_URL}}/autocomplete/{{HM_IntegrationAPI_Token}}","urlObject":{"path":["autocomplete","{{HM_IntegrationAPI_Token}}"],"host":["{{HM_IntegrationAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"79b3bfd6-3088-4c26-9a3a-b48d3ca91f5a"},{"name":"Lookup Album (By Text)","event":[{"listen":"test","script":{"id":"c12db662-d47c-40b9-b5d1-bf3b571d9233","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"f3934bc3-7688-477f-a553-1d46e5e12089","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"Keyword\": \"happy\",\r\n\t\"Wildcard\": true,\r\n\t\"ReturnAlbums\": true,\r\n\t\"ReturnAlbums_Fields\": \"CdCode,DisplayTitle,Description,Keywords\",\r\n\t\"ReturnAlbums_Limit\": 10,\r\n\t\"ReturnAlbums_Order\": \"Date_Descent\",\r\n\t\"ReturnAlbums_DisableKeywordGroup\": true,\r\n    \"RegionID\": \"{{RegionID}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_IntegrationAPI_URL}}/autocomplete/{{HM_IntegrationAPI_Token}}","urlObject":{"path":["autocomplete","{{HM_IntegrationAPI_Token}}"],"host":["{{HM_IntegrationAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f3934bc3-7688-477f-a553-1d46e5e12089"},{"name":"Lookup Label (By Text)","event":[{"listen":"test","script":{"id":"c12db662-d47c-40b9-b5d1-bf3b571d9233","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"44748e03-7802-45a7-a218-05e1e805aa7a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"Keyword\": \"%\",\r\n\t\"Wildcard\": true,\r\n    \"ReturnLibraries\": true,\r\n\t\"ReturnLibraries_Fields\": \"Name,Prefix,Description\",\r\n\t\"ReturnLibraries_Limit\": 10,\r\n\t\"ReturnLibraries_DisableKeywordGroup\": true,\r\n    \"regionid\":\"{{RegionID}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_IntegrationAPI_URL}}/autocomplete/{{HM_IntegrationAPI_Token}}","urlObject":{"path":["autocomplete","{{HM_IntegrationAPI_Token}}"],"host":["{{HM_IntegrationAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"44748e03-7802-45a7-a218-05e1e805aa7a"},{"name":"Lookup Playlist (By Text)","event":[{"listen":"test","script":{"id":"c12db662-d47c-40b9-b5d1-bf3b571d9233","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"7cd43971-7c99-4524-abb6-4c1327442042","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"Keyword\": \"happy\",\r\n\t\"Wildcard\": true,\r\n\t\"ReturnFeaturedPlaylists\": true,\r\n\t\"ReturnFeaturedPlaylist_Fields\": \"ProjectTitle,Description\",\r\n\t\"ReturnFeaturedPlaylists_Limit\": 10,\r\n\t\"ReturnFeaturedPlaylist_Order\": \"Alphabetic_Ascent\",\r\n\t\"ReturnFeaturedPlaylists_DisableKeywordGroup\": true,\r\n    \"ReturnFeaturedPlaylists_Types\": \"Tree,Styles,MemberGroups\",\r\n    \"RegionID\": \"{{regionid}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_IntegrationAPI_URL}}/autocomplete/{{HM_IntegrationAPI_Token}}","urlObject":{"path":["autocomplete","{{HM_IntegrationAPI_Token}}"],"host":["{{HM_IntegrationAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7cd43971-7c99-4524-abb6-4c1327442042"},{"name":"Lookup Collection (By Text)","event":[{"listen":"test","script":{"id":"c12db662-d47c-40b9-b5d1-bf3b571d9233","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"a3951542-8107-4d69-a93a-726b1f11bd0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"Keyword\": \"%\",\r\n    \"Wildcard\": true,\r\n    \"ReturnStyles\": true,\r\n    \"ReturnStyles_Limit\": 1000,\r\n    \"ReturnStyles_Order\": \"Alphabetic_Ascent\",\r\n    \"ReturnStyles_DisableKeywordGroup\": true,\r\n    \"regionid\": \"{{RegionID}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_IntegrationAPI_URL}}/autocomplete/{{HM_IntegrationAPI_Token}}","urlObject":{"path":["autocomplete","{{HM_IntegrationAPI_Token}}"],"host":["{{HM_IntegrationAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a3951542-8107-4d69-a93a-726b1f11bd0e"},{"name":"Lookup Artist (By Text)","event":[{"listen":"test","script":{"id":"c12db662-d47c-40b9-b5d1-bf3b571d9233","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"d792e492-7e36-40d5-8d72-3a481e498e53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"Keyword\": \"%\",\r\n    \"Wildcard\": false,\r\n    \"ReturnRightHolders\": true,\r\n    \"ReturnRightHolders_Fields\": \"FirstName,LastName\",\r\n    \"ReturnRightHolders_Limit\": 10,\r\n    \"ReturnRightHolders_DisableKeywordGroup\": true,\r\n    \"RightHolderTypes\": \"Composer,ComposerAuthor,Artist\",\r\n    \"regionid\": \"{{regionid}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_IntegrationAPI_URL}}/autocomplete/{{HM_IntegrationAPI_Token}}","urlObject":{"path":["autocomplete","{{HM_IntegrationAPI_Token}}"],"host":["{{HM_IntegrationAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d792e492-7e36-40d5-8d72-3a481e498e53"},{"name":"Lookup Rates","event":[{"listen":"test","script":{"id":"c12db662-d47c-40b9-b5d1-bf3b571d9233","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"52b33f4d-b450-48c7-bb4c-b1b14e5e1607","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"Keywords\": \"\",\r\n    \"Skip\": \"0\",\r\n    \"Limit\": \"2\",\r\n    \"Sort\": \"Alphabetic_Asc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_IntegrationAPI_URL}}/searchrates/{{HM_IntegrationAPI_Token}}","urlObject":{"path":["searchrates","{{HM_IntegrationAPI_Token}}"],"host":["{{HM_IntegrationAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"e26de94d-511d-4aea-86d9-c72f9d779fdb","name":"Lookup Rates (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"Keywords\": \"\",\r\n    \"Skip\": \"0\",\r\n    \"Limit\": \"2\",\r\n    \"Sort\": \"Alphabetic_Asc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_IntegrationAPI_URL}}/searchrates/{{HM_IntegrationAPI_Token}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Fri, 20 Feb 2026 05:05:58 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"Rates\": [\n        {\n            \"ID\": \"9bc0f10772ba3fb6\",\n            \"Style\": \"Flat\",\n            \"Code\": \"Indie Film\",\n            \"Title\": \"Independent Feature Film or Trailer\",\n            \"Description\": \"Feature film or trailer use. For indie films with budgets up to $250,000.\",\n            \"Fee\": 750,\n            \"FeeWithTax\": 0,\n            \"DatetimeStamp\": \"2024-04-12 05:40:13\",\n            \"OrderID\": \"4\",\n            \"CurrencyCode\": \"USD\",\n            \"ParentRate\": {\n                \"ID\": \"15346e27fe392591\",\n                \"Code\": \"\",\n                \"Description\": \"Film\",\n                \"Fee\": 0,\n                \"FeeWithTax\": 0,\n                \"OrderID\": \"1787\",\n                \"DescriptionNotes\": \"Single Use Track Licensing\"\n            }\n        },\n        {\n            \"ID\": \"351cebe664248c2d\",\n            \"Style\": \"Flat\",\n            \"Code\": \"Global Ads\",\n            \"Title\": \"Global Advertisements / All Media\",\n            \"Description\": \"Global advertisements used in all media\",\n            \"Fee\": 4999,\n            \"FeeWithTax\": 0,\n            \"DatetimeStamp\": \"2023-10-27 15:56:45\",\n            \"OrderID\": \"8\",\n            \"CurrencyCode\": \"USD\",\n            \"ParentRate\": {\n                \"ID\": \"2d112e9e87a1a590\",\n                \"Code\": \"\",\n                \"Description\": \"Advertisements\",\n                \"Fee\": 0,\n                \"FeeWithTax\": 0,\n                \"OrderID\": \"1788\",\n                \"DescriptionNotes\": \"Single Use Track Licensing\"\n            }\n        }\n    ]\n}"},{"id":"4b5415af-da57-4c2c-8412-d2a622cc6fc8","name":"Lookup Rates (Filtered by IDs)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"IDs\": [\"ae808c58b684190a\", \"9bc0f10772ba3fb6\", \"69d94875f49172ee\"],\r\n    \"Keywords\": \"\",\r\n    \"Skip\": \"0\",\r\n    \"Limit\": \"2\",\r\n    \"Sort\": \"Alphabetic_Asc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_IntegrationAPI_URL}}/searchrates/{{HM_IntegrationAPI_Token}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Tue, 04 Nov 2025 06:50:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"Rates\": [\n        {\n            \"ID\": \"9bc0f10772ba3fb6\",\n            \"Style\": \"Flat\",\n            \"Code\": \"Indie Film\",\n            \"Title\": \"Independent Feature Film or Trailer\",\n            \"Description\": \"Feature film or trailer use. For indie films with budgets up to $250,000.\",\n            \"Fee\": 750,\n            \"FeeWithTax\": 0,\n            \"DatetimeStamp\": \"2024-04-12 05:40:13\",\n            \"OrderID\": \"4\",\n            \"CurrencyCode\": \"USD\"\n        },\n        {\n            \"ID\": \"69d94875f49172ee\",\n            \"Style\": \"Flat\",\n            \"Code\": \"National Ads\",\n            \"Title\": \"National Advertisements / All Media\",\n            \"Description\": \"National advertisements used in all media\",\n            \"Fee\": 2499,\n            \"FeeWithTax\": 0,\n            \"DatetimeStamp\": \"2023-10-27 15:55:56\",\n            \"OrderID\": \"7\",\n            \"CurrencyCode\": \"USD\"\n        }\n    ]\n}"}],"_postman_id":"52b33f4d-b450-48c7-bb4c-b1b14e5e1607"},{"name":"Lookup Subscription Plans","event":[{"listen":"test","script":{"id":"c12db662-d47c-40b9-b5d1-bf3b571d9233","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"403b38b3-1e59-4f46-bbd6-b383858c34f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"Keywords\": \"\",\r\n    \"Skip\": \"0\",\r\n    \"Limit\": \"20\",\r\n    \"Sort\": \"Alphabetic_Asc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_IntegrationAPI_URL}}/searchsubscriptionplans/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["searchsubscriptionplans","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_IntegrationAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"ffad2016-8270-4d58-bfb5-b54f03a8f8a5","name":"Lookup Subscription Plans (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"Keywords\": \"\",\r\n    \"Skip\": \"0\",\r\n    \"Limit\": \"20\",\r\n    \"Sort\": \"Alphabetic_Asc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_IntegrationAPI_URL}}/searchsubscriptionplans/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Fri, 20 Feb 2026 05:15:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"SubscriptionPlans\": [\n        {\n            \"ID\": \"2a4b1e7ffc58be67\",\n            \"Name\": \"2025 Free\",\n            \"Description\": \"\",\n            \"Status\": \"Active\",\n            \"Featured\": false,\n            \"AllowBadges\": true,\n            \"BadgeDisplayTitle\": \"\",\n            \"PlatformHandleType\": \"Unlimited\",\n            \"AllowTeam\": true,\n            \"TeamMembers\": 4,\n            \"DownloadLimit\": \"Unlimited\",\n            \"DateCreated\": \"2025-01-17T07:12:28\",\n            \"HasFreeTrial\": false,\n            \"RequestQuote\": true,\n            \"SubscriptionInclusions\": [\n                {\n                    \"ID\": \"d8dbea47ec77b80e\",\n                    \"Description\": \"Plan Includes\",\n                    \"OrderID\": 0,\n                    \"IsHeader\": true,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"d59bc885aeeb0e17\",\n                    \"Description\": \"Use on any online platform, website and in digital ads\",\n                    \"OrderID\": 1,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"40c201e4650194db\",\n                    \"Description\": \"Licensed and approved for use on client projects\",\n                    \"OrderID\": 2,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"f56c3d6c9eec4723\",\n                    \"Description\": \"Access For Up To 4 Users\",\n                    \"OrderID\": 3,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"4bd5cc5f12d4eb4a\",\n                    \"Description\": \"Team Members Have Full Access To All Features On Viralnoise\",\n                    \"OrderID\": 4,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                }\n            ],\n            \"Subscriptions\": []\n        },\n        {\n            \"ID\": \"a78a2958d39dff66\",\n            \"Name\": \"Company\",\n            \"Description\": \"Unlimited music for commercial use by companies up to 25 employees\",\n            \"Status\": \"Active\",\n            \"Featured\": true,\n            \"AllowBadges\": true,\n            \"BadgeDisplayTitle\": \"Approved for commercial use by companies with up to 25 employees\",\n            \"PlatformHandleType\": \"Unlimited\",\n            \"AllowTeam\": true,\n            \"TeamMembers\": 4,\n            \"DownloadLimit\": \"Unlimited\",\n            \"DateCreated\": \"2024-06-20T11:20:28\",\n            \"HasFreeTrial\": true,\n            \"RequestQuote\": false,\n            \"SubscriptionInclusions\": [\n                {\n                    \"ID\": \"342d37f9cbd9d25e\",\n                    \"Description\": \"Includes everything in Freelance, plus:\",\n                    \"OrderID\": 0,\n                    \"IsHeader\": true,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"7907138b683424f4\",\n                    \"Description\": \"Access for up to 4 users\",\n                    \"OrderID\": 1,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"07615de0da9a3d50\",\n                    \"Description\": \"Team members have full access to all features on Viralnoise\",\n                    \"OrderID\": 2,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"f405c2552535f1c8\",\n                    \"Description\": \"Intended for in-house employees working on company projects\",\n                    \"OrderID\": 3,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                }\n            ],\n            \"Subscriptions\": [\n                {\n                    \"ID\": \"a4d6dfcde39361fa\",\n                    \"Period\": \"Monthly\",\n                    \"PeriodDays\": 0,\n                    \"TrialDownloadLimit\": 0,\n                    \"RolloverSubscriptionID\": \"\",\n                    \"Status\": \"Active\",\n                    \"PriceBadge\": \"Save 40% when billed yearly\",\n                    \"SubscriptionPrices\": [\n                        {\n                            \"ID\": \"adcce32c13d08e8b\",\n                            \"Price\": 74.99,\n                            \"StartDate\": \"2024-10-30T00:00:00\",\n                            \"Status\": 1\n                        }\n                    ],\n                    \"FreeTrial\": {\n                        \"ID\": \"6e615bb799aa8ef3\",\n                        \"Period\": \"Trial\",\n                        \"PeriodDays\": 14,\n                        \"TrialDownloadLimit\": 1000,\n                        \"RolloverSubscriptionID\": \"a4d6dfcde39361fa\",\n                        \"Status\": \"Active\",\n                        \"PriceBadge\": \"\",\n                        \"SubscriptionPrices\": []\n                    }\n                },\n                {\n                    \"ID\": \"d860490f6e1daa25\",\n                    \"Period\": \"Yearly\",\n                    \"PeriodDays\": 0,\n                    \"TrialDownloadLimit\": 0,\n                    \"RolloverSubscriptionID\": \"\",\n                    \"Status\": \"Active\",\n                    \"PriceBadge\": \"Billed yearly ($539.88/year)\",\n                    \"SubscriptionPrices\": [\n                        {\n                            \"ID\": \"944ee2b1c670ae11\",\n                            \"Price\": 539.88,\n                            \"StartDate\": \"2024-06-20T00:00:00\",\n                            \"Status\": 1\n                        }\n                    ],\n                    \"FreeTrial\": {\n                        \"ID\": \"f88a7358b187dcfe\",\n                        \"Period\": \"Trial\",\n                        \"PeriodDays\": 14,\n                        \"TrialDownloadLimit\": 1000,\n                        \"RolloverSubscriptionID\": \"d860490f6e1daa25\",\n                        \"Status\": \"Active\",\n                        \"PriceBadge\": \"\",\n                        \"SubscriptionPrices\": []\n                    }\n                }\n            ]\n        },\n        {\n            \"ID\": \"fa24bebee2409643\",\n            \"Name\": \"Enterprise\",\n            \"Description\": \"Unlimited music, customized deal terms and supervision services\",\n            \"Status\": \"Active\",\n            \"Featured\": true,\n            \"AllowBadges\": true,\n            \"BadgeDisplayTitle\": \"Unlimited music, customized deal terms and supervision services\",\n            \"PlatformHandleType\": \"Unlimited\",\n            \"AllowTeam\": true,\n            \"TeamMembers\": 4,\n            \"DownloadLimit\": \"Unlimited\",\n            \"DateCreated\": \"2024-06-20T11:22:57\",\n            \"HasFreeTrial\": false,\n            \"RequestQuote\": true,\n            \"SubscriptionInclusions\": [\n                {\n                    \"ID\": \"fdf24422bf73526e\",\n                    \"Description\": \"Includes everything in Company, plus:\",\n                    \"OrderID\": 0,\n                    \"IsHeader\": true,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"3a6016b420fa5e7f\",\n                    \"Description\": \"Account management for unlimited employee users\",\n                    \"OrderID\": 1,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"b20aada17ffad8f7\",\n                    \"Description\": \"All rights covered for TV shows, Films documentaries and ads\",\n                    \"OrderID\": 2,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"2b6b2e42bd56b925\",\n                    \"Description\": \"Custom playlist curation\",\n                    \"OrderID\": 3,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"15e56c77236ff16f\",\n                    \"Description\": \"Custom composition and music editorial services available\",\n                    \"OrderID\": 4,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                }\n            ],\n            \"Subscriptions\": []\n        },\n        {\n            \"ID\": \"82193ff640dd7d69\",\n            \"Name\": \"Freelance\",\n            \"Description\": \"Unlimited music for commercial use by individual freelancers for their clients\",\n            \"Status\": \"Active\",\n            \"Featured\": true,\n            \"AllowBadges\": true,\n            \"BadgeDisplayTitle\": \"Approved for commercial use by solo freelancers working on client projects\",\n            \"PlatformHandleType\": \"Unlimited\",\n            \"AllowTeam\": false,\n            \"TeamMembers\": 0,\n            \"DownloadLimit\": \"Unlimited\",\n            \"DateCreated\": \"2024-06-20T11:16:55\",\n            \"HasFreeTrial\": true,\n            \"RequestQuote\": false,\n            \"SubscriptionInclusions\": [\n                {\n                    \"ID\": \"8bf1cb830dee7e16\",\n                    \"Description\": \"Includes everything in Individual, plus:\",\n                    \"OrderID\": 0,\n                    \"IsHeader\": true,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"f005ea25ae1dd914\",\n                    \"Description\": \"Licensed and approved for use on client projects\",\n                    \"OrderID\": 1,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"ab2d1f4102e46d95\",\n                    \"Description\": \"Use on any online platform, website and in digital ads\",\n                    \"OrderID\": 2,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                }\n            ],\n            \"Subscriptions\": [\n                {\n                    \"ID\": \"d8a8cde475eae2d8\",\n                    \"Period\": \"Monthly\",\n                    \"PeriodDays\": 0,\n                    \"TrialDownloadLimit\": 0,\n                    \"RolloverSubscriptionID\": \"\",\n                    \"Status\": \"Active\",\n                    \"PriceBadge\": \"Save 52% when billed yearly\",\n                    \"SubscriptionPrices\": [\n                        {\n                            \"ID\": \"a54a51394d0c33e8\",\n                            \"Price\": 39.99,\n                            \"StartDate\": \"2024-10-30T00:00:00\",\n                            \"Status\": 1\n                        }\n                    ],\n                    \"FreeTrial\": {\n                        \"ID\": \"b31e02b362421e6f\",\n                        \"Period\": \"Trial\",\n                        \"PeriodDays\": 14,\n                        \"TrialDownloadLimit\": 500,\n                        \"RolloverSubscriptionID\": \"d8a8cde475eae2d8\",\n                        \"Status\": \"Active\",\n                        \"PriceBadge\": \"\",\n                        \"SubscriptionPrices\": []\n                    }\n                },\n                {\n                    \"ID\": \"207d9e094d264f78\",\n                    \"Period\": \"Yearly\",\n                    \"PeriodDays\": 0,\n                    \"TrialDownloadLimit\": 0,\n                    \"RolloverSubscriptionID\": \"\",\n                    \"Status\": \"Active\",\n                    \"PriceBadge\": \"Billed yearly ($227.88/year)\",\n                    \"SubscriptionPrices\": [\n                        {\n                            \"ID\": \"15e56c77236ff16f\",\n                            \"Price\": 227.88,\n                            \"StartDate\": \"2024-06-20T00:00:00\",\n                            \"Status\": 1\n                        }\n                    ],\n                    \"FreeTrial\": {\n                        \"ID\": \"54abe8203e7fbebc\",\n                        \"Period\": \"Trial\",\n                        \"PeriodDays\": 14,\n                        \"TrialDownloadLimit\": 500,\n                        \"RolloverSubscriptionID\": \"207d9e094d264f78\",\n                        \"Status\": \"Active\",\n                        \"PriceBadge\": \"\",\n                        \"SubscriptionPrices\": []\n                    }\n                }\n            ]\n        },\n        {\n            \"ID\": \"15e56c77236ff16f\",\n            \"Name\": \"Freelance 2025\",\n            \"Description\": \"\",\n            \"Status\": \"Active\",\n            \"Featured\": false,\n            \"AllowBadges\": true,\n            \"BadgeDisplayTitle\": \"\",\n            \"PlatformHandleType\": \"Unlimited\",\n            \"AllowTeam\": false,\n            \"TeamMembers\": 0,\n            \"DownloadLimit\": \"Unlimited\",\n            \"DateCreated\": \"2025-04-29T07:42:08\",\n            \"HasFreeTrial\": false,\n            \"RequestQuote\": true,\n            \"SubscriptionInclusions\": [\n                {\n                    \"ID\": \"a385486882ec5fc2\",\n                    \"Description\": \"Plan Includes\",\n                    \"OrderID\": 0,\n                    \"IsHeader\": true,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"56272b6e285543c2\",\n                    \"Description\": \"Unlimited access to 35,000+ music tracks and 30,000+ SFX\",\n                    \"OrderID\": 1,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"6512a55af122f93b\",\n                    \"Description\": \"Use on any online platform, website and in digital ads\",\n                    \"OrderID\": 2,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"47800e5732182292\",\n                    \"Description\": \"Licensed and approved for use on client projects\",\n                    \"OrderID\": 3,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                }\n            ],\n            \"Subscriptions\": []\n        },\n        {\n            \"ID\": \"0dabdb1ee6f7b545\",\n            \"Name\": \"Individual\",\n            \"Description\": \"Unlimited Music for individuals, influencers and content creators\",\n            \"Status\": \"Active\",\n            \"Featured\": true,\n            \"AllowBadges\": true,\n            \"BadgeDisplayTitle\": \"Approved for personal, non commercial use on socials and podcasts\",\n            \"PlatformHandleType\": \"ChannelPerPlatform\",\n            \"PlatformHandles\": 1,\n            \"AllowTeam\": false,\n            \"TeamMembers\": 0,\n            \"DownloadLimit\": \"Unlimited\",\n            \"DateCreated\": \"2024-06-20T11:04:36\",\n            \"HasFreeTrial\": true,\n            \"RequestQuote\": false,\n            \"SubscriptionInclusions\": [\n                {\n                    \"ID\": \"e5153b3e6e5ba804\",\n                    \"Description\": \"Includes\",\n                    \"OrderID\": 0,\n                    \"IsHeader\": true,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"3b7e990361490e50\",\n                    \"Description\": \"40,000+ music tracks\",\n                    \"OrderID\": 1,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"dc15e27d90cd9441\",\n                    \"Description\": \"30,000+ SFX\",\n                    \"OrderID\": 2,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"5fb40fd1612d533b\",\n                    \"Description\": \"Access to track submixes/alternate mixes\",\n                    \"OrderID\": 3,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"733cf072013be8c4\",\n                    \"Description\": \"Similar search AI & curated playlists\",\n                    \"OrderID\": 4,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"96f153356899e5c5\",\n                    \"Description\": \"Non commercial use on one channel per social media platform\",\n                    \"OrderID\": 5,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                }\n            ],\n            \"Subscriptions\": [\n                {\n                    \"ID\": \"7ef73e68361d5167\",\n                    \"Period\": \"Monthly\",\n                    \"PeriodDays\": 0,\n                    \"TrialDownloadLimit\": 0,\n                    \"RolloverSubscriptionID\": \"\",\n                    \"Status\": \"Active\",\n                    \"PriceBadge\": \"Save 40% when billed yearly.\",\n                    \"SubscriptionPrices\": [\n                        {\n                            \"ID\": \"3ed4108412fbdc30\",\n                            \"Price\": 14.99,\n                            \"StartDate\": \"2024-10-30T00:00:00\",\n                            \"Status\": 1\n                        }\n                    ],\n                    \"FreeTrial\": {\n                        \"ID\": \"3460aac33d9d5974\",\n                        \"Period\": \"Trial\",\n                        \"PeriodDays\": 14,\n                        \"TrialDownloadLimit\": 500,\n                        \"RolloverSubscriptionID\": \"7ef73e68361d5167\",\n                        \"Status\": \"Active\",\n                        \"PriceBadge\": \"\",\n                        \"SubscriptionPrices\": []\n                    }\n                },\n                {\n                    \"ID\": \"b1850e380186ee50\",\n                    \"Period\": \"Yearly\",\n                    \"PeriodDays\": 0,\n                    \"TrialDownloadLimit\": 0,\n                    \"RolloverSubscriptionID\": \"\",\n                    \"Status\": \"Active\",\n                    \"PriceBadge\": \"Billed yearly ($107.88/year)\",\n                    \"SubscriptionPrices\": [\n                        {\n                            \"ID\": \"b20aada17ffad8f7\",\n                            \"Price\": 107.88,\n                            \"StartDate\": \"2024-06-20T00:00:00\",\n                            \"Status\": 1\n                        }\n                    ],\n                    \"FreeTrial\": {\n                        \"ID\": \"431298b4a4ba9ba6\",\n                        \"Period\": \"Trial\",\n                        \"PeriodDays\": 14,\n                        \"TrialDownloadLimit\": 500,\n                        \"RolloverSubscriptionID\": \"b1850e380186ee50\",\n                        \"Status\": \"Active\",\n                        \"PriceBadge\": \"\",\n                        \"SubscriptionPrices\": []\n                    }\n                }\n            ]\n        },\n        {\n            \"ID\": \"ab2d1f4102e46d95\",\n            \"Name\": \"Influencer Free Year\",\n            \"Description\": \"\",\n            \"Status\": \"Active\",\n            \"Featured\": false,\n            \"AllowBadges\": true,\n            \"BadgeDisplayTitle\": \"\",\n            \"PlatformHandleType\": \"Unlimited\",\n            \"AllowTeam\": true,\n            \"TeamMembers\": 4,\n            \"DownloadLimit\": \"Unlimited\",\n            \"DateCreated\": \"2024-11-23T08:11:35\",\n            \"HasFreeTrial\": false,\n            \"RequestQuote\": true,\n            \"SubscriptionInclusions\": [\n                {\n                    \"ID\": \"0b803dc5164ac6c3\",\n                    \"Description\": \"Plan Features\",\n                    \"OrderID\": 0,\n                    \"IsHeader\": true,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"8eb46bfcbf92cd8b\",\n                    \"Description\": \"unlimited whielisting\",\n                    \"OrderID\": 1,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"286afda37aebd8d3\",\n                    \"Description\": \"4 shared users\",\n                    \"OrderID\": 2,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"b234a3a85cb97283\",\n                    \"Description\": \"Eric Meyers on call\",\n                    \"OrderID\": 3,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                }\n            ],\n            \"Subscriptions\": []\n        },\n        {\n            \"ID\": \"7907138b683424f4\",\n            \"Name\": \"Influencer Paid Yearly\",\n            \"Description\": \"\",\n            \"Status\": \"Active\",\n            \"Featured\": false,\n            \"AllowBadges\": true,\n            \"BadgeDisplayTitle\": \"\",\n            \"PlatformHandleType\": \"Unlimited\",\n            \"AllowTeam\": true,\n            \"TeamMembers\": 4,\n            \"DownloadLimit\": \"Unlimited\",\n            \"DateCreated\": \"2024-12-07T07:53:25\",\n            \"HasFreeTrial\": false,\n            \"RequestQuote\": true,\n            \"SubscriptionInclusions\": [\n                {\n                    \"ID\": \"620328726fcbc63b\",\n                    \"Description\": \"Your Plan\",\n                    \"OrderID\": 0,\n                    \"IsHeader\": true,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"774a90ded6e5b77f\",\n                    \"Description\": \"Call Eric If You Need Anything\",\n                    \"OrderID\": 1,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"0e578ede43fcf22a\",\n                    \"Description\": \"shared users\",\n                    \"OrderID\": 2,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                }\n            ],\n            \"Subscriptions\": []\n        },\n        {\n            \"ID\": \"b1850e380186ee50\",\n            \"Name\": \"SongHub Mater Account\",\n            \"Description\": \"\",\n            \"Status\": \"Active\",\n            \"Featured\": false,\n            \"AllowBadges\": true,\n            \"BadgeDisplayTitle\": \"SongHub Enterprise Account\",\n            \"PlatformHandleType\": \"Unlimited\",\n            \"AllowTeam\": true,\n            \"TeamMembers\": 10,\n            \"DownloadLimit\": \"Unlimited\",\n            \"DateCreated\": \"2025-08-12T05:38:17\",\n            \"HasFreeTrial\": false,\n            \"RequestQuote\": true,\n            \"SubscriptionInclusions\": [\n                {\n                    \"ID\": \"ecfbc915c4f0a2c9\",\n                    \"Description\": \"Plan Features\",\n                    \"OrderID\": 0,\n                    \"IsHeader\": true,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"ad1d7e6b149fd62e\",\n                    \"Description\": \"Unlimited music and SFX downloads\",\n                    \"OrderID\": 1,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"ba2ddc954bed2aa4\",\n                    \"Description\": \"Access to track submixes/alternate mixes\",\n                    \"OrderID\": 2,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"a35470ca67c44d8a\",\n                    \"Description\": \"Similar search AI & curated playlists\",\n                    \"OrderID\": 3,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"3a4c960a62e75e62\",\n                    \"Description\": \"Non commercial use on multiple social media platforms\",\n                    \"OrderID\": 4,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                }\n            ],\n            \"Subscriptions\": []\n        },\n        {\n            \"ID\": \"3460aac33d9d5974\",\n            \"Name\": \"VN ADMIN FREE\",\n            \"Description\": \"\",\n            \"Status\": \"Active\",\n            \"Featured\": false,\n            \"AllowBadges\": true,\n            \"BadgeDisplayTitle\": \"\",\n            \"PlatformHandleType\": \"Unlimited\",\n            \"AllowTeam\": false,\n            \"TeamMembers\": 0,\n            \"DownloadLimit\": \"Unlimited\",\n            \"DateCreated\": \"2025-07-30T04:18:24\",\n            \"HasFreeTrial\": false,\n            \"RequestQuote\": true,\n            \"SubscriptionInclusions\": [\n                {\n                    \"ID\": \"b31e02b362421e6f\",\n                    \"Description\": \"Includes:\",\n                    \"OrderID\": 0,\n                    \"IsHeader\": true,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"54abe8203e7fbebc\",\n                    \"Description\": \"Unlimited download access\",\n                    \"OrderID\": 1,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"6e615bb799aa8ef3\",\n                    \"Description\": \"Access to track submixes/alternate mixes\",\n                    \"OrderID\": 2,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"f88a7358b187dcfe\",\n                    \"Description\": \"Similar search AI & curated playlists\",\n                    \"OrderID\": 3,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"38e7a2f64dae66f4\",\n                    \"Description\": \"Use on any online platform, website and in digital ads\",\n                    \"OrderID\": 4,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                }\n            ],\n            \"Subscriptions\": []\n        }\n    ]\n}"},{"id":"48274916-aa6f-48e2-9bec-72e2d1f4aef1","name":"Lookup Subscription Plans (Filtered by IDs)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"IDs\": [\"SubscriptionID1\"],\r\n    \"Keywords\": \"\",\r\n    \"Skip\": \"0\",\r\n    \"Limit\": \"20\",\r\n    \"Sort\": \"Alphabetic_Asc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_IntegrationAPI_URL}}/searchsubscriptionplans/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Tue, 04 Nov 2025 06:51:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"SubscriptionPlans\": [\n        {\n            \"ID\": \"2a4b1e7ffc58be67\",\n            \"Name\": \"2025 Free\",\n            \"Description\": \"\",\n            \"Status\": \"Active\",\n            \"Featured\": false,\n            \"AllowBadges\": true,\n            \"BadgeDisplayTitle\": \"\",\n            \"PlatformHandleType\": \"Unlimited\",\n            \"AllowTeam\": true,\n            \"TeamMembers\": 4,\n            \"DownloadLimit\": \"Unlimited\",\n            \"DateCreated\": \"2025-01-17T07:12:28\",\n            \"HasFreeTrial\": false,\n            \"RequestQuote\": true,\n            \"SubscriptionInclusions\": [\n                {\n                    \"ID\": \"d8dbea47ec77b80e\",\n                    \"Description\": \"Plan Includes\",\n                    \"OrderID\": 0,\n                    \"IsHeader\": true,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"d59bc885aeeb0e17\",\n                    \"Description\": \"Use on any online platform, website and in digital ads\",\n                    \"OrderID\": 1,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"40c201e4650194db\",\n                    \"Description\": \"Licensed and approved for use on client projects\",\n                    \"OrderID\": 2,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"f56c3d6c9eec4723\",\n                    \"Description\": \"Access For Up To 4 Users\",\n                    \"OrderID\": 3,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"4bd5cc5f12d4eb4a\",\n                    \"Description\": \"Team Members Have Full Access To All Features On Viralnoise\",\n                    \"OrderID\": 4,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                }\n            ],\n            \"Subscriptions\": []\n        }\n    ]\n}"}],"_postman_id":"403b38b3-1e59-4f46-bbd6-b383858c34f3"}],"id":"28e98f67-9b60-45a6-b36f-255e929477d3","_postman_id":"28e98f67-9b60-45a6-b36f-255e929477d3","description":""},{"name":"List Views","item":[{"name":"List (When Region Required)","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"ce36b77c-6336-4e36-a4c5-423f8bf02f8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"Region\": \"{{regionid}}\",\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Track\": {\r\n                \"Tracks\": \"g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"5\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_IntegrationAPI_URL}}/cloudsearch/{{HM_IntegrationAPI_Token}}","urlObject":{"path":["cloudsearch","{{HM_IntegrationAPI_Token}}"],"host":["{{HM_IntegrationAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ce36b77c-6336-4e36-a4c5-423f8bf02f8a"},{"name":"Track List","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"15e1a82b-e4af-413c-8079-eef4aebfa7d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Track\": {\r\n                \"Tracks\": \"g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"5\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_IntegrationAPI_URL}}/cloudsearch/{{HM_IntegrationAPI_Token}}","urlObject":{"path":["cloudsearch","{{HM_IntegrationAPI_Token}}"],"host":["{{HM_IntegrationAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"15e1a82b-e4af-413c-8079-eef4aebfa7d4"},{"name":"Album List","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"263da46a-2787-4fef-a85d-a7958e77b7c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Album\": {\r\n                \"Albums\": \"g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Album\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"15\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_IntegrationAPI_URL}}/cloudsearch/{{HM_IntegrationAPI_Token}}","urlObject":{"path":["cloudsearch","{{HM_IntegrationAPI_Token}}"],"host":["{{HM_IntegrationAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"263da46a-2787-4fef-a85d-a7958e77b7c2"},{"name":"Label List","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"2e6fea90-167c-4a1a-bcb4-055cf22d8c6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Library\": {\r\n            \t\"Libraries\": \"g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Library\",\r\n            \"View_Library_Count\":\"Track\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"15\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_IntegrationAPI_URL}}/cloudsearch/{{HM_IntegrationAPI_Token}}","urlObject":{"path":["cloudsearch","{{HM_IntegrationAPI_Token}}"],"host":["{{HM_IntegrationAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2e6fea90-167c-4a1a-bcb4-055cf22d8c6b"},{"name":"Playlist List","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"028de08d-7ca8-4f6f-8b9d-b132a4c5d795","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"FeaturedPlaylistType\": \"Tree,Styles,MemberGroups\",\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Playlist\": {\r\n                \"Playlists\": \"g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Playlist\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"5\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_IntegrationAPI_URL}}/cloudsearch/{{HM_IntegrationAPI_Token}}","description":"<p><strong>GAP</strong></p>\n<p>It is not currently possible to search via <code>ST_PLAYLIST</code>, nor is it possible to get results <code>VIEW: PLAYLIST</code></p>\n","urlObject":{"path":["cloudsearch","{{HM_IntegrationAPI_Token}}"],"host":["{{HM_IntegrationAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"028de08d-7ca8-4f6f-8b9d-b132a4c5d795"},{"name":"Collection List","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"b923def0-38ac-4d28-b124-a3715263a270","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Style\": {\r\n                \"Styles\": \"g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Style\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"15\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_IntegrationAPI_URL}}/cloudsearch/{{HM_IntegrationAPI_Token}}","urlObject":{"path":["cloudsearch","{{HM_IntegrationAPI_Token}}"],"host":["{{HM_IntegrationAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b923def0-38ac-4d28-b124-a3715263a270"},{"name":"Artist List [GAP]","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"67d86ea5-32a0-42ed-843a-f1a7e18fd7cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Rightholder\": {\r\n                \"RightHolders\": \"7ccd253ac569c5j21m\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"RightHolder\",\r\n            \"View_RightHolder_Capacity\": \"Composer, ComposerAuthor, Artist, Writer\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"5\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_IntegrationAPI_URL}}/cloudsearch/{{HM_IntegrationAPI_Token}}","description":"<p><strong>GAP</strong></p>\n<p>It is not currently possible to search via <code>ST_RIGHTHOLDER</code>, nor is it possible to get results <code>VIEW: RIGHTHOLDER</code></p>\n","urlObject":{"path":["cloudsearch","{{HM_IntegrationAPI_Token}}"],"host":["{{HM_IntegrationAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"67d86ea5-32a0-42ed-843a-f1a7e18fd7cf"}],"id":"9446780b-c8b0-4a4f-a512-55fc7f2b02f4","_postman_id":"9446780b-c8b0-4a4f-a512-55fc7f2b02f4","description":""}],"id":"a4d15a6b-3dfb-4149-826f-aed5dbe13c26","_postman_id":"a4d15a6b-3dfb-4149-826f-aed5dbe13c26","description":""},{"name":"==Initial Load==","item":[{"name":"Get Authorised","event":[{"listen":"test","script":{"id":"20eb5a70-2392-4a14-8a63-ca2a42d0d7ca","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","var jsonData = null;","var jsonDataToken = \"\";","","/*if (responseBody.indexOf(\"<?xml\") >= 0) {","    jsonData = xml2Json(responseBody);","    jsonDataToken = jsonData.responseservicetoken.token.$.value;","} else {*/","    jsonData = JSON.parse(responseBody)","    jsonDataToken = jsonData.access_token;","/*}*/","","console.log(\"HM_ServiceAPI_AuthToken set to \" + jsonDataToken);","","postman.setEnvironmentVariable(\"HM_ServiceAPI_AuthToken\", jsonDataToken);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"4ebafa93-b778-4486-a672-b54738f7dd3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"{{HM_ServiceAPI_AuthGrantType}}","type":"text"},{"key":"client_id","value":"{{HM_ServiceAPI_AuthClientID}}","type":"text"},{"key":"client_secret","value":"{{HM_ServiceAPI_AuthClientSecret}}","type":"text"}]},"url":"{{HM_ServiceAPI_AuthUrl}}","urlObject":{"host":["{{HM_ServiceAPI_AuthUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4ebafa93-b778-4486-a672-b54738f7dd3d"},{"name":"Get Service Token","event":[{"listen":"test","script":{"id":"1a00da84-e3cc-4913-9017-03c6d976f0ca","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","var jsonData = null;","var jsonDataToken = \"\";","","if (responseBody.indexOf(\"<?xml\") >= 0) {","    jsonData = xml2Json(responseBody);","    jsonDataToken = jsonData.responseservicetoken.token.$.value;","} else {","    jsonData = JSON.parse(responseBody)","    jsonDataToken = jsonData.Token.Value;","}","","console.log(\"HM_ServiceAPI_Token set to \" + jsonDataToken);","","postman.setEnvironmentVariable(\"HM_ServiceAPI_Token\", jsonDataToken);","","postman.setEnvironmentVariable(\"HM_IntegrationAPI_Token\", jsonDataToken);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"0f258514-73b5-4b32-b784-0593ab7f00d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"AccessKey","value":"{{HM_ServiceAPI_Key}}","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"url":"{{HM_ServiceAPI_URL}}/getservicetoken","urlObject":{"path":["getservicetoken"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0f258514-73b5-4b32-b784-0593ab7f00d9"},{"name":"Get Regions By IP","event":[{"listen":"test","script":{"id":"62c89e64-91e1-4271-a062-870f7a986fa5","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"34c22ff5-23a9-4e34-addf-4ec65c463f35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"url":"{{HM_ServiceAPI_URL}}/getregionbyip/{{HM_ServiceAPI_Token}}?ip={{HM_ServiceAPI_IPAddress}}","description":"<p>Instructions for Opt-in after receiving the response:</p>\n<ul>\n<li><p>when “SubscribeDefault” is missing or empty then hide the subscribe checkbox.</p>\n</li>\n<li><p>when “SubscribeDefault” is true then show the subscribe checkbox selected.</p>\n</li>\n<li><p>when “SubscribeDefault” is false then show the subscribe checkbox deselected.</p>\n</li>\n</ul>\n<p>When posting data to <strong><code>/registermember/</code></strong> the Subscribe field is optional.</p>\n<p>When <strong>SubscribeDefault</strong> is omitted from <code>getRegionByIP</code>, the Member should be assigned as Subscribe:(null), ie. “opt in assumed”.</p>\n<p>PLEASE NOTE: the same applies when doing <code>/updatemember/</code> however the variable is slightly different, when a member is on their profile page you will be loading member details by doing <code>/getmember/</code>, if there is no field called \"<strong>SubscribeNewsletter</strong>\" it means the member has Assumed Opt-In, so you should not offer the option to update \"subscribe\" in <code>/updatemember/</code></p>\n<p>PLEASE NOTE: if you do the call as JSON subscribedefault won't appear when opt-in is assumed, however, if you do the call as XML it will show subscribedefault as being null</p>\n","urlObject":{"path":["getregionbyip","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"description":{"content":"<p>IPv4 or IPv6 IP address</p>\n","type":"text/plain"},"key":"ip","value":"{{HM_ServiceAPI_IPAddress}}"}],"variable":[]}},"response":[{"id":"761d3c15-8c11-48c4-a7db-a07f36d8221f","name":"Get Regions By IP","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":{"raw":"{{HM_ServiceAPI_URL}}/getregionbyip/{{HM_ServiceAPI_Token}}?ip={{HM_ServiceAPI_IPAddress}}","host":["{{HM_ServiceAPI_URL}}"],"path":["getregionbyip","{{HM_ServiceAPI_Token}}"],"query":[{"key":"ip","value":"{{HM_ServiceAPI_IPAddress}}","description":"IPv4 or IPv6 IP address"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 27 Oct 2024 14:10:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"Region\": {\n        \"ID\": \"88f8791e732f07e1\",\n        \"Name\": \"Global\",\n        \"Countries\": [\n            {\n                \"TLD\": \"GB\",\n                \"Name\": \"United Kingdom\",\n                \"IsTaxed\": true,\n                \"TaxRate\": 0.22\n            }\n        ],\n        \"LanguageCode\": \"\",\n        \"SubscribeDefault\": false,\n        \"LicensingModel\": \"SubscriptionEcomGatewayMemberOnly\",\n        \"Currency\": {\n            \"Name\": \"Australian Dollar\",\n            \"Code\": \"AUD\",\n            \"Symbol\": \"A$\"\n        },\n        \"Blocked\": false\n    },\n    \"Country\": {\n        \"TLD\": \"GB\",\n        \"Name\": \"United Kingdom\",\n        \"IsTaxed\": true,\n        \"TaxRate\": 0.22\n    }\n}"}],"_postman_id":"34c22ff5-23a9-4e34-addf-4ec65c463f35"},{"name":"Authenticate Guest Member","event":[{"listen":"test","script":{"id":"10836b42-e165-4ec1-a9a3-870c590ebc7d","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","var jsonData = null;","var jsonDataToken = \"\";","","if (responseBody.indexOf(\"<?xml\") >= 0) {","    jsonData = xml2Json(responseBody);","    jsonDataToken = jsonData.responseservicetoken.token.$.value;","} else {","    jsonData = JSON.parse(responseBody)","    jsonDataToken = jsonData.Token.Value;","}","","console.log(\"HM_ServiceAPI_MemberToken set to \" + jsonDataToken);","console.log(\"HM_ServiceAPI_MemberTokenIsLoggedMember set to false\");","","postman.setEnvironmentVariable(\"HM_ServiceAPI_MemberToken\", jsonDataToken);","postman.setEnvironmentVariable(\"HM_ServiceAPI_MemberTokenIsLoggedMember\", \"false\")"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"0fdf89e9-d7d2-40d7-b1f2-ef399c98d8c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"url":"{{HM_ServiceAPI_URL}}/getguestmembertoken/{{HM_ServiceAPI_Token}}/{{HM_IntegrationAPI_regionid}}","urlObject":{"path":["getguestmembertoken","{{HM_ServiceAPI_Token}}","{{HM_IntegrationAPI_regionid}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0fdf89e9-d7d2-40d7-b1f2-ef399c98d8c2"}],"id":"86fa7880-56e8-431f-b597-660670f686ac","_postman_id":"86fa7880-56e8-431f-b597-660670f686ac","description":""},{"name":"==Sitewide Panels==","item":[{"name":"Album Panel - Latest Albums","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"816c4ef1-7db5-4efd-92d3-eaf82fa63e85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"false\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"%\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Album\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"15\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"816c4ef1-7db5-4efd-92d3-eaf82fa63e85"},{"name":"Album Panel - Featured Albums [GAP]","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"91d2be45-c32a-42da-a828-9e91319ccd14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"FeaturedAlbumsOnly\": true,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"false\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"%\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Album\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"15\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: FeaturedAlbumsOnly = true flag</p>\n<p><strong>GAP</strong></p>\n<p>StartFragment</p>\n<p><code>FeaturedAlbumsOnly</code> does not currently exist</p>\n<p>EndFragm</p>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"91d2be45-c32a-42da-a828-9e91319ccd14"},{"name":"Album Panel - Album Picklist","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"c8ec6eaf-e2d5-4550-9a6c-bc713a74251c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Album\": {\r\n                \"Albums\": \"g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d\",\r\n                \"OrOperation\": \"true\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Album\",\r\n            \"Sort_Predefined\": \"\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"15\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c8ec6eaf-e2d5-4550-9a6c-bc713a74251c"},{"name":"Track Panel - Latest Tracks","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"81b4f8c8-ebf7-4b56-bad9-c67a28bb1270","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"false\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"%\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"5\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"81b4f8c8-ebf7-4b56-bad9-c67a28bb1270"},{"name":"Track Panel - Track Picklist","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"974849a5-efce-4751-8ebf-41c9df843802","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"false\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Track\": {\r\n                \"Tracks\": \"g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d\",\r\n                \"OrOperation\": \"true\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"5\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"974849a5-efce-4751-8ebf-41c9df843802"},{"name":"Collection Panel - Collection Picklist","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"033cb938-49f4-4493-921f-58a4db742011","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Style\": {\r\n                \"Styles\": \"g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d\",\r\n                \"OrOperation\": \"true\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Style\",\r\n            \"Sort_Predefined\": \"\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"15\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_ServiceToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_ServiceToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"033cb938-49f4-4493-921f-58a4db742011"},{"name":"Playlist Panel - Latest Playlists","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"32230873-0046-4d81-aa30-b09167f6f9fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"false\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"false\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"%\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Playlist\",\r\n            \"Sort_Predefined\": \"Custom_Asc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"15\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p><strong>GAP</strong></p>\n<p>It is not currently possible to search via <code>ST_PLAYLIST</code>, nor is it possible to get results <code>VIEW: PLAYLIST</code></p>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"32230873-0046-4d81-aa30-b09167f6f9fb"},{"name":"Playlist Panel - Playlist Picklist","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"56aa629e-d489-4de5-8f53-a6348ebcbffc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"false\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Playlist\": {\r\n                \"Playlists\": \"g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d\",\r\n                \"OrOperation\": \"true\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Playlist\",\r\n            \"Sort_Predefined\": \"\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"5\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p><strong>GAP</strong></p>\n<p>It is not currently possible to search via <code>ST_PLAYLIST</code>, nor is it possible to get results <code>VIEW: PLAYLIST</code></p>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"56aa629e-d489-4de5-8f53-a6348ebcbffc"},{"name":"Artist Panel - Artist Picklist [GAP]","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"bd1fe99f-c8a4-4972-82f1-30a1a3aae244","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Rightholder\": {\r\n                \"RightHolders\": \"7ccd253ac569c5j21m\",\r\n                \"OrOperation\": \"true\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"RightHolder\",\r\n            \"View_RightHolder_Capacity\": \"Composer, ComposerAuthor, Artist, Writer\",\r\n            \"Sort_Predefined\": \"\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"5\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p><strong>GAP</strong></p>\n<p>It is not currently possible to search via <code>ST_RIGHTHOLDER</code>, nor is it possible to get results <code>VIEW: RIGHTHOLDER</code></p>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bd1fe99f-c8a4-4972-82f1-30a1a3aae244"}],"id":"39f749b3-fa26-43eb-ae6d-e6345b9bc347","_postman_id":"39f749b3-fa26-43eb-ae6d-e6345b9bc347","description":""},{"name":"==Sitewide Actions==","item":[{"name":"Add to Playlist","item":[{"name":"Add Track to Playlist","event":[{"listen":"test","script":{"id":"9212fa91-afe6-49fb-ab8d-cf224498f580","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"ab55723e-3fb5-4e6c-a41c-3cb95c6da9eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"objecttype\": \"Track\",\r\n    \"objectids\": [\r\n        \"316bace72939965c\"\r\n    ],\r\n    \"addtoplaylistids\": [\r\n        \"31aa846ec3de5273\"\r\n    ],\r\n    \"addtoautosaveplaylists\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/addtomemberplaylists/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["addtomemberplaylists","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ab55723e-3fb5-4e6c-a41c-3cb95c6da9eb"},{"name":"Add Album to Playlist","event":[{"listen":"test","script":{"id":"9212fa91-afe6-49fb-ab8d-cf224498f580","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"339dbab1-ac32-461b-b40f-b255915042a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"objecttype\": \"Album\",\r\n    \"objectids\": [\r\n        \"316bace72939965c\"\r\n    ],\r\n    \"addtoplaylistids\": [\r\n        \"31aa846ec3de5273\"\r\n    ],\r\n    \"addtoautosaveplaylists\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/addtomemberplaylists/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["addtomemberplaylists","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"339dbab1-ac32-461b-b40f-b255915042a2"},{"name":"Add Playlist to Playlist","event":[{"listen":"test","script":{"id":"9212fa91-afe6-49fb-ab8d-cf224498f580","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"73877d30-da4d-4734-b8e0-ad53c7f11452","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"objecttype\": \"Playlist\",\r\n    \"objectids\": [\r\n        \"316bace72939965c\"\r\n    ],\r\n    \"addtoplaylistids\": [\r\n        \"31aa846ec3de5273\"\r\n    ],\r\n    \"addtoautosaveplaylists\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/addtomemberplaylists/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["addtomemberplaylists","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"73877d30-da4d-4734-b8e0-ad53c7f11452"},{"name":"Add Any to Hot Playlist","event":[{"listen":"test","script":{"id":"9212fa91-afe6-49fb-ab8d-cf224498f580","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"3b0d232b-9344-452b-b34e-c58ebe1ec4e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"objecttype\": \"{Track/Album/Playlist}\",\r\n    \"objectids\": [\r\n        \"316bace72939965c\"\r\n    ],\r\n    \"addtoplaylistids\": [],\r\n    \"addtoautosaveplaylists\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/addtomemberplaylists/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["addtomemberplaylists","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3b0d232b-9344-452b-b34e-c58ebe1ec4e8"}],"id":"64cf5491-dfe9-4c00-820b-dfdadd4ce2a8","_postman_id":"64cf5491-dfe9-4c00-820b-dfdadd4ce2a8","description":""},{"name":"Add to Likes","item":[{"name":"Add Track to Likes","event":[{"listen":"test","script":{"id":"2094fa59-8b2a-492e-8f22-b1c9f2adf7d9","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"e1aca3d0-f68e-43d5-a882-2627441f04f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/addtofavourites/{{HM_ServiceAPI_MemberToken}}/track/316bace72939965c","urlObject":{"path":["addtofavourites","{{HM_ServiceAPI_MemberToken}}","track","316bace72939965c"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e1aca3d0-f68e-43d5-a882-2627441f04f5"},{"name":"Add Album to Likes","event":[{"listen":"test","script":{"id":"2094fa59-8b2a-492e-8f22-b1c9f2adf7d9","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"1c19cb72-2546-470c-b5e0-8c9ca5e8e04e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/addtofavourites/{{HM_ServiceAPI_MemberToken}}/album/316bace72939965c","urlObject":{"path":["addtofavourites","{{HM_ServiceAPI_MemberToken}}","album","316bace72939965c"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1c19cb72-2546-470c-b5e0-8c9ca5e8e04e"},{"name":"Add Playlist to Likes","event":[{"listen":"test","script":{"id":"2094fa59-8b2a-492e-8f22-b1c9f2adf7d9","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"16a2644b-3441-4d3d-bec2-281ffb3fdba9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/addtofavourites/{{HM_ServiceAPI_MemberToken}}/playlist/316bace72939965c","urlObject":{"path":["addtofavourites","{{HM_ServiceAPI_MemberToken}}","playlist","316bace72939965c"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"16a2644b-3441-4d3d-bec2-281ffb3fdba9"}],"id":"bf534162-6139-40d4-97a1-7ff41e25facb","_postman_id":"bf534162-6139-40d4-97a1-7ff41e25facb","description":""},{"name":"Add to Tags","item":[{"name":"Add Track to Tag","event":[{"listen":"test","script":{"id":"ae7f98c6-c67e-46bc-a6d8-3914c5735867","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"2976f6b8-9f32-4193-92bc-809de467fa39","exec":[""],"type":"text/javascript"}}],"id":"e7764a33-23a9-42ec-8f2b-b5e230c70d64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ObjectType\": \"Track\",\n    \"ObjectIDs\": [\n        \"316bace72939965c\",\n        \"138b83c8f2fbef45\"\n    ],\n    \"AddToTagIDs\": [\n        \"31aa846ec3de5273\",\n        \"97dd0a3108fb8271\"\n    ]\n}"},"url":"{{HM_ServiceAPI_URL}}/addtomembertags/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE; will create the tag if it doens't yet exist</p>\n","urlObject":{"path":["addtomembertags","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e7764a33-23a9-42ec-8f2b-b5e230c70d64"},{"name":"Add Album to Tag","event":[{"listen":"test","script":{"id":"ae7f98c6-c67e-46bc-a6d8-3914c5735867","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"2976f6b8-9f32-4193-92bc-809de467fa39","exec":[""],"type":"text/javascript"}}],"id":"6ef730d8-3da2-4bf1-a3ea-3edca2a3d1dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ObjectType\": \"Album\",\n    \"ObjectIDs\": [\n        \"316bace72939965c\"\n    ],\n    \"AddToTagIDs\": [\n        \"31aa846ec3de5273\",\n        \"97dd0a3108fb8271\"\n    ]\n}"},"url":"{{HM_ServiceAPI_URL}}/addtomembertags/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE; will create the tag if it doens't yet exist</p>\n","urlObject":{"path":["addtomembertags","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6ef730d8-3da2-4bf1-a3ea-3edca2a3d1dc"},{"name":"Add Playlist to Tag","event":[{"listen":"test","script":{"id":"ae7f98c6-c67e-46bc-a6d8-3914c5735867","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"2976f6b8-9f32-4193-92bc-809de467fa39","exec":[""],"type":"text/javascript"}}],"id":"6dde63bf-0af5-48ad-a870-2614cb85e0a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ObjectType\": \"Playlist\",\n    \"ObjectIDs\": [\n        \"316bace72939965c\"\n    ],\n    \"AddToTagIDs\": [\n        \"31aa846ec3de5273\",\n        \"97dd0a3108fb8271\"\n    ]\n}"},"url":"{{HM_ServiceAPI_URL}}/addtomembertags/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE; will create the tag if it doens't yet exist</p>\n","urlObject":{"path":["addtomembertags","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6dde63bf-0af5-48ad-a870-2614cb85e0a5"}],"id":"3e73b28f-fdcb-4fb8-8f2c-0cb328c4d946","_postman_id":"3e73b28f-fdcb-4fb8-8f2c-0cb328c4d946","description":""},{"name":"Download","item":[{"name":"Validate Track Download","event":[{"listen":"test","script":{"id":"eccd99b3-8198-49e6-8484-a300969b2736","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"0d00b621-fe80-4956-b0e0-b953049744a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"Identifier\":\"316bace72939965c\",\r\n\t\"ContentIDs\":\"\",\r\n\t\"DownloadType\":\"track\",\r\n\t\"Format\":[\"mp3\"],\r\n\t\"TrimEndSecs\":0,\r\n\t\"TrimStartSecs\":0,\r\n\t\"IncludeVersionCheck\":false\r\n}"},"url":"{{HM_ServiceAPI_URL}}/validatemusicdownloadrequest/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["validatemusicdownloadrequest","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0d00b621-fe80-4956-b0e0-b953049744a7"},{"name":"Validate Stem Pack Download","event":[{"listen":"test","script":{"id":"eccd99b3-8198-49e6-8484-a300969b2736","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"31836d21-abb7-455f-b999-d25b6a77d9a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"Identifier\":\"b6a69cacaa8d8a65b80327b7ee0de8e7a\",\r\n\t\"ContentIDs\":\"\",\r\n\t\"DownloadType\":\"stems\",\r\n\t\"Format\":[\"wav\"],\r\n\t\"TrimEndSecs\":0,\r\n\t\"TrimStartSecs\":0,\r\n\t\"IncludeVersionCheck\":false\r\n}"},"url":"{{HM_ServiceAPI_URL}}/validatemusicdownloadrequest/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["validatemusicdownloadrequest","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"31836d21-abb7-455f-b999-d25b6a77d9a4"},{"name":"Validate Album Download","event":[{"listen":"test","script":{"id":"eccd99b3-8198-49e6-8484-a300969b2736","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"f53c9092-bffe-4bb4-b7aa-6a0f49aec731","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"Identifier\":\"316bace72939965c\",\r\n\t\"ContentIDs\":\"\",\r\n\t\"DownloadType\":\"album\",\r\n\t\"Format\":[\"mp3\"],\r\n\t\"TrimEndSecs\":0,\r\n\t\"TrimStartSecs\":0,\r\n\t\"IncludeVersionCheck\":false\r\n}"},"url":"{{HM_ServiceAPI_URL}}/validatemusicdownloadrequest/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["validatemusicdownloadrequest","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f53c9092-bffe-4bb4-b7aa-6a0f49aec731"},{"name":"Validate Playlist Download","event":[{"listen":"test","script":{"id":"eccd99b3-8198-49e6-8484-a300969b2736","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"21495274-ffa8-4e99-835e-2f9d5a3a3b25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"Identifier\":\"316bace72939965c\",\r\n\t\"ContentIDs\":\"\",\r\n\t\"DownloadType\":\"playlist\",\r\n\t\"Format\":[\"mp3\"],\r\n\t\"TrimEndSecs\":0,\r\n\t\"TrimStartSecs\":0,\r\n\t\"IncludeVersionCheck\":false\r\n}"},"url":"{{HM_ServiceAPI_URL}}/validatemusicdownloadrequest/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["validatemusicdownloadrequest","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"21495274-ffa8-4e99-835e-2f9d5a3a3b25"},{"name":"Validate Playlist Category Download","event":[{"listen":"test","script":{"id":"eccd99b3-8198-49e6-8484-a300969b2736","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"e563ba74-0814-4bb9-b5e1-56fd9172786b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"Identifier\":\"316bace72939965c\",\r\n\t\"ContentIDs\":\"\",\r\n\t\"DownloadType\":\"playlistcategory\",\r\n\t\"Format\":[\"mp3\"],\r\n\t\"TrimEndSecs\":0,\r\n\t\"TrimStartSecs\":0,\r\n\t\"IncludeVersionCheck\":false\r\n}"},"url":"{{HM_ServiceAPI_URL}}/validatemusicdownloadrequest/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["validatemusicdownloadrequest","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e563ba74-0814-4bb9-b5e1-56fd9172786b"},{"name":"Get Track Download","event":[{"listen":"test","script":{"id":"c0ce855e-ca28-46c1-8fb2-0fc2a5f88cf0","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"b8992dbf-8d40-400f-a62b-2a8b233d0f02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"Identifier\":\"316bace72939965c\",\r\n\t\"DownloadType\":\"track\",\r\n\t\"Format\":\"mp3\",\r\n\t\"TrimStartSecs\":0,\r\n\t\"TrimEndSecs\":0,\r\n\t\"Email\":\"peter@harvestthe.net\",\r\n\t\"IsShare\":false,\r\n\t\"Message\":\"\",\r\n\t\"SenderEmail\":\"\",\r\n\t\"ForceEmail\":false,\r\n\t\"IncludeVersions\":false,\r\n\t\"VersionFolderName\":\"\",\r\n\t\"DownloadFileName\":\"\",\r\n\t\"CuesheetFileName\":\"\"\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getmusicdownload/{{HM_ServiceAPI_MemberToken}}","description":"<p><b>PLAYLIST COLLABORATION</b></p>\n<p><b>Owners</b></p>\n<p>Full use</p>\n<p><b>Recipients</b></p>\n<p>Full use</p>\n","urlObject":{"path":["getmusicdownload","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b8992dbf-8d40-400f-a62b-2a8b233d0f02"},{"name":"Get Stem Pack Download","event":[{"listen":"test","script":{"id":"c0ce855e-ca28-46c1-8fb2-0fc2a5f88cf0","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"3de6ebba-e969-4f8c-be9b-f7accf14ab2a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"Identifier\":\"b6a69cacaa8d8a65b80327b7ee0de8e7a\",\r\n\t\"DownloadType\":\"stems\",\r\n\t\"Format\":\"wav\",\r\n\t\"TrimStartSecs\":0,\r\n\t\"TrimEndSecs\":0,\r\n\t\"Email\":\"peter@harvestthe.net\",\r\n\t\"IsShare\":false,\r\n\t\"Message\":\"\",\r\n\t\"SenderEmail\":\"\",\r\n\t\"ForceEmail\":false,\r\n\t\"IncludeVersions\":false,\r\n\t\"VersionFolderName\":\"\",\r\n\t\"DownloadFileName\":\"\",\r\n\t\"CuesheetFileName\":\"\"\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getmusicdownload/{{HM_ServiceAPI_MemberToken}}","description":"<p><b>PLAYLIST COLLABORATION</b></p>\n<p><b>Owners</b></p>\n<p>Full use</p>\n<p><b>Recipients</b></p>\n<p>Full use</p>\n","urlObject":{"path":["getmusicdownload","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3de6ebba-e969-4f8c-be9b-f7accf14ab2a"},{"name":"Get Album Download","event":[{"listen":"test","script":{"id":"c0ce855e-ca28-46c1-8fb2-0fc2a5f88cf0","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"4af973c6-6564-4c0c-9701-0de599deaea6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"Identifier\":\"316bace72939965c\",\r\n\t\"DownloadType\":\"album\",\r\n\t\"Format\":\"mp3\",\r\n\t\"TrimStartSecs\":0,\r\n\t\"TrimEndSecs\":0,\r\n\t\"Email\":\"peter@harvestthe.net\",\r\n\t\"IsShare\":false,\r\n\t\"Message\":\"\",\r\n\t\"SenderEmail\":\"\",\r\n\t\"ForceEmail\":false,\r\n\t\"IncludeVersions\":false,\r\n\t\"VersionFolderName\":\"\",\r\n\t\"DownloadFileName\":\"\",\r\n\t\"CuesheetFileName\":\"\"\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getmusicdownload/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["getmusicdownload","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4af973c6-6564-4c0c-9701-0de599deaea6"},{"name":"Get Playlist Download","event":[{"listen":"test","script":{"id":"c0ce855e-ca28-46c1-8fb2-0fc2a5f88cf0","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"58c14de9-a352-49f5-b425-05de85956a92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"Identifier\":\"316bace72939965c\",\r\n\t\"DownloadType\":\"playlist\",\r\n\t\"Format\":\"mp3\",\r\n\t\"TrimStartSecs\":0,\r\n\t\"TrimEndSecs\":0,\r\n\t\"Email\":\"peter@harvestthe.net\",\r\n\t\"IsShare\":false,\r\n\t\"Message\":\"\",\r\n\t\"SenderEmail\":\"\",\r\n\t\"ForceEmail\":false,\r\n\t\"IncludeVersions\":false,\r\n\t\"VersionFolderName\":\"\",\r\n\t\"DownloadFileName\":\"\",\r\n\t\"CuesheetFileName\":\"\"\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getmusicdownload/{{HM_ServiceAPI_MemberToken}}","description":"<p><b>PLAYLIST COLLABORATION</b></p>\n<p><b>Owners</b></p>\n<p>Full use</p>\n<p><b>Recipients</b></p>\n<p>Full use</p>\n","urlObject":{"path":["getmusicdownload","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"58c14de9-a352-49f5-b425-05de85956a92"},{"name":"Get Playlist Category Download","event":[{"listen":"test","script":{"id":"c0ce855e-ca28-46c1-8fb2-0fc2a5f88cf0","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"06d7f7fe-cc59-4a4d-9947-3e9f8bdd7516","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"Identifier\":\"316bace72939965c\",\r\n\t\"DownloadType\":\"playlistcategory\",\r\n\t\"Format\":\"mp3\",\r\n\t\"TrimStartSecs\":0,\r\n\t\"TrimEndSecs\":0,\r\n\t\"Email\":\"peter@harvestthe.net\",\r\n\t\"IsShare\":false,\r\n\t\"Message\":\"\",\r\n\t\"SenderEmail\":\"\",\r\n\t\"ForceEmail\":false,\r\n\t\"IncludeVersions\":false,\r\n\t\"VersionFolderName\":\"\",\r\n\t\"DownloadFileName\":\"\",\r\n\t\"CuesheetFileName\":\"\"\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getmusicdownload/{{HM_ServiceAPI_MemberToken}}","description":"<p><b>PLAYLIST COLLABORATION</b></p>\n<p><b>Owners</b></p>\n<p>Full use</p>\n<p><b>Recipients</b></p>\n<p>Full use</p>\n","urlObject":{"path":["getmusicdownload","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"06d7f7fe-cc59-4a4d-9947-3e9f8bdd7516"}],"id":"145f5f81-5aa1-4bde-83f7-de545b738e38","_postman_id":"145f5f81-5aa1-4bde-83f7-de545b738e38","description":""},{"name":"Download Cuesheet","item":[{"name":"Get Track Cuesheet","event":[{"listen":"test","script":{"id":"e554b054-27cb-4046-be9e-3815be36f4ab","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"4989007f-22f9-4f97-b7eb-b83fcdf2d4cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"Track\":[\r\n        \"d5db153b69cha0v35q\", \r\n        \"4f42ta8o90e427dqcf\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getcuesheet/{{HM_ServiceAPI_MemberToken}}?filename={Name}.csv","urlObject":{"path":["getcuesheet","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"filename","value":"{Name}.csv"}],"variable":[]}},"response":[],"_postman_id":"4989007f-22f9-4f97-b7eb-b83fcdf2d4cf"},{"name":"Get Album Cuesheet","event":[{"listen":"test","script":{"id":"e554b054-27cb-4046-be9e-3815be36f4ab","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"01dba7ce-7478-48a4-8798-29b1c16c7935","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"Album\": \"32fb86ab1baa3572vf\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getcuesheet/{{HM_ServiceAPI_MemberToken}}?filename={Name}.csv","urlObject":{"path":["getcuesheet","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"filename","value":"{Name}.csv"}],"variable":[]}},"response":[],"_postman_id":"01dba7ce-7478-48a4-8798-29b1c16c7935"},{"name":"Get Playlist Cuesheet","event":[{"listen":"test","script":{"id":"e554b054-27cb-4046-be9e-3815be36f4ab","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"366b8d4a-8d99-49d4-9c21-74bc6595be7a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"Playlist\": \"999bef621d6c7b72v6\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getcuesheet/{{HM_ServiceAPI_MemberToken}}?filename={Name}.csv","urlObject":{"path":["getcuesheet","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"filename","value":"{Name}.csv"}],"variable":[]}},"response":[],"_postman_id":"366b8d4a-8d99-49d4-9c21-74bc6595be7a"}],"id":"246a7264-93fa-4261-89ab-33288670a9fb","_postman_id":"246a7264-93fa-4261-89ab-33288670a9fb","description":""},{"name":"Share","item":[{"name":"Any","item":[{"name":"Get Any Short Url","event":[{"listen":"test","script":{"id":"c7a6c7fb-4f16-4058-83c2-b7a5f4fef2db","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"2548b5b5-a401-453e-9f0e-ac3c19d80faa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"URL\":\"https://www.google.com/\"\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getshorturl/{{HM_ServiceAPI_Token}}","urlObject":{"path":["getshorturl","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2548b5b5-a401-453e-9f0e-ac3c19d80faa"}],"id":"ecc80064-d1c0-4149-820a-fdf69fb10db6","_postman_id":"ecc80064-d1c0-4149-820a-fdf69fb10db6","description":""},{"name":"Member Folder & Playlist","item":[{"name":"Get Folder Share Url","event":[{"listen":"test","script":{"id":"21c2e318-6593-4f30-8bce-197064b4e0ea","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"a20379f3-75fe-4965-b977-bb79e7a30aec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"FromMemberToken\": \"{{HM_ServiceAPI_MemberToken}}\",\r\n    \"ObjectIdentifier\": \"{MemberPlaylistCategoryID}\",\r\n    \"ObjectType\": \"PlaylistCategory\",\r\n    \"Users\": [\r\n        {\r\n            \"Username\": \"\",\r\n            \"Type\": \"GuestMemberAccount\",\r\n            \"ShareType\": \"Sync\",\r\n            \"AllowDownload\": true,\r\n            \"AllowFollow\": true,\r\n            \"AllowSave\": true,\r\n            \"AllowShare\": true\r\n        }\r\n    ]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getsharemusicurl/{{HM_ServiceAPI_Token}}","urlObject":{"path":["getsharemusicurl","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a20379f3-75fe-4965-b977-bb79e7a30aec"},{"name":"Get Playlist Share Url","event":[{"listen":"test","script":{"id":"21c2e318-6593-4f30-8bce-197064b4e0ea","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"44f93c12-f839-4016-bfa9-67d8fdc527da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"FromMemberToken\": \"{{HM_ServiceAPI_MemberToken}}\",\r\n    \"ObjectIdentifier\": \"{MemberPlaylistID}\",\r\n    \"ObjectType\": \"Playlist\",\r\n    \"Users\": [\r\n        {\r\n            \"Username\": \"\",\r\n            \"Type\": \"GuestMemberAccount\",\r\n            \"ShareType\": \"Sync\",\r\n            \"AllowDownload\": true,\r\n            \"AllowFollow\": true,\r\n            \"AllowSave\": true,\r\n            \"AllowShare\": true\r\n        }\r\n    ]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getsharemusicurl/{{HM_ServiceAPI_Token}}","urlObject":{"path":["getsharemusicurl","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"44f93c12-f839-4016-bfa9-67d8fdc527da"}],"id":"f0861627-9265-46b4-845c-4cd416789b15","_postman_id":"f0861627-9265-46b4-845c-4cd416789b15","description":""}],"id":"7f4f93a7-060c-439b-a3c5-e162c1d8ffb6","_postman_id":"7f4f93a7-060c-439b-a3c5-e162c1d8ffb6","description":""},{"name":"Tag Based Similarity","item":[{"name":"Get Tracks Based on Tags","event":[{"listen":"test","script":{"id":"c0ce855e-ca28-46c1-8fb2-0fc2a5f88cf0","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"45ddc274-e02d-4b4f-8536-ef370dda7883","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"Track\": \"6af81bfe4aca90d11448aed6cb15cdb5e0\",\r\n    \"MainOnly\": true,\r\n    \"Skip\": 0,\r\n    \"Limit\": 20,\r\n    \"SimilarityPercentage\": 50,\r\n    \"SimilarityMethod\": \"Category\",\r\n    \"Categories\": [\r\n        {\r\n            \"ID\": \"c679bcac74f3b93120\",\r\n            \"Type\": \"Category\"\r\n        },\r\n        {\r\n            \"ID\": \"a78bef9f9833ced3f4\",\r\n            \"Type\": \"Category\"\r\n        }\r\n    ]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getsimilartracks/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["getsimilartracks","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"45ddc274-e02d-4b4f-8536-ef370dda7883"}],"id":"e3ffa1b1-acb5-4ae5-95c5-141a41f9d489","_postman_id":"e3ffa1b1-acb5-4ae5-95c5-141a41f9d489","description":""}],"id":"940defc3-0638-40a3-936b-b00d632c1a3e","_postman_id":"940defc3-0638-40a3-936b-b00d632c1a3e","description":""},{"name":"Home Page","item":[{"name":"Get Collections","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"6be16929-3174-450e-b417-92b544ad917d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"false\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"%\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Style\",\r\n            \"Sort_Predefined\": \"Alphabetic_Asc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"5\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6be16929-3174-450e-b417-92b544ad917d"},{"name":"Contact Us Email","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"6c61af3d-36c2-476f-9b52-21f558fde4af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"Name\": \"\",\r\n    \"Email\": \"{{email}}\",\r\n    \"PhoneNumber\": \"\",\r\n    \"Subject\": \"\",\r\n    \"Message\": \"{{message}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/sendcontactusemail/{{HM_ServiceAPI_Token}}","description":"<p>This endpoint delivers an enquiry for the account admin owner and also sends a copy of the message to the sender. <strong>Email (of the enquirer) and Message are mandatory.</strong></p>\n","urlObject":{"path":["sendcontactusemail","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"67b97bbd-2be0-4087-9f77-33e042e6fe8a","name":"Contact Us Email (JSON)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"Name\": \"\",\r\n    \"Email\": \"{{email}}\",\r\n    \"PhoneNumber\": \"\",\r\n    \"Subject\": \"\",\r\n    \"Message\": \"{{message}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/sendcontactusemail/{{HM_ServiceAPI_Token}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 03 Sep 2024 08:55:53 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"Code\": \"OK\"\n}"}],"_postman_id":"6c61af3d-36c2-476f-9b52-21f558fde4af"},{"name":"Custom Contact Us","id":"ba174196-455e-4a96-8e34-f7d35aeda586","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"ToEmail\": [\"{{toemail1}}\", \"{{toemail2}}\"],\r\n    \"BodyRequest\": \"{{bodyHTMLrequest}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/sendcustomcontactusemail/{{HM_ServiceAPI_MemberToken}}","description":"<p>This endpoint delivers a customized HTML message to any recipient added to \"ToEmail\" list, and a notification email to the member (sender). <strong>ToEmail (the recipient) and Body Request are mandatory</strong></p>\n","urlObject":{"path":["sendcustomcontactusemail","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"adc74044-f9ee-421f-9b2d-89f467d6ddcd","name":"Custom Contact Us","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"ToEmail\": [\"{{toemail1}}\", \"{{toemail2}}\"],\r\n    \"BodyRequest\": \"{{bodyHTMLrequest}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/sendcustomcontactusemail/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 15 Oct 2024 00:33:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"Code\": \"OK\"\n}"}],"_postman_id":"ba174196-455e-4a96-8e34-f7d35aeda586"}],"id":"f56a0886-0cee-4d7b-b30f-a0aaf4a5d884","_postman_id":"f56a0886-0cee-4d7b-b30f-a0aaf4a5d884","description":""},{"name":"Registration Page","item":[{"name":"Get Countries","event":[{"listen":"test","script":{"id":"d4073fef-dd8f-4bb8-8f25-14a07e88d493","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"1726dfa0-9fa3-43ba-9e58-bfabfcf2d1cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"url":"{{HM_ServiceAPI_URL}}/getcountries/{{HM_ServiceAPI_Token}}","urlObject":{"path":["getcountries","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1726dfa0-9fa3-43ba-9e58-bfabfcf2d1cb"},{"name":"Signup Member","event":[{"listen":"test","script":{"id":"dfd39d46-a146-4f56-a01f-72a2d1ad59ae","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"c3b12df1-da28-41a2-9367-9d23ab5e240a","exec":[""],"type":"text/javascript"}}],"id":"80624dc6-8b56-49c7-89f1-777dcb5a8632","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"MemberAccount\":{\r\n\t\t\"FirstName\":\"First\",\r\n\t\t\"LastName\":\"Last\",\r\n\t\t\"Email\":\"test@test.com\",\r\n\t\t\"Company\":\"Company\",\r\n\t\t\"Production\":\"Production\",\r\n        \"SubProduction\":\"Sub Production\",\r\n\t\t\"Position\":\"Position\",\r\n\t\t\"Address1\":\"Address Line 1\",\r\n\t\t\"Address2\":\"Address Line 2\",\r\n\t\t\"Suburb\":\"Suburb\",\r\n\t\t\"State\":\"State\",\r\n\t\t\"Postcode\":\"Postcode\",\r\n\t\t\"Country\":\"AU\",\r\n\t\t\"Phone\":\"Phone\",\r\n\t\t\"Username\":\"test@test.com\",\r\n\t\t\"Password\":\"testpassword\",\r\n\t\t\"TermsAccept\":\"true\",\r\n\t\t\"PrivacyAccept\":\"true\",\r\n\t\t\"Subscribe\":\"true\",\r\n\t\t\"FileFormat\":\"mp3\",\r\n\t\t\"SearchFormat\":\"Track\",\r\n\t\t\"SearchSort\":\"New\",\r\n        \"PositionType\":\"Manager\",\r\n        \"Freelancer\":\"false\",\r\n\t\t\"IP\":\"{Users IP}\"\r\n\t},\r\n\t\"NoMemberEmail\":false\r\n}"},"url":"{{HM_ServiceAPI_URL}}/registermember/{{HM_ServiceAPI_Token}}","urlObject":{"path":["registermember","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"80624dc6-8b56-49c7-89f1-777dcb5a8632"},{"name":"Signup Member (MG)","event":[{"listen":"test","script":{"id":"dfd39d46-a146-4f56-a01f-72a2d1ad59ae","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"c3b12df1-da28-41a2-9367-9d23ab5e240a","exec":[""],"type":"text/javascript"}}],"id":"4f290853-43e4-492a-9247-fbb73830048a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"MemberAccount\":{\r\n\t\t\"FirstName\":\"First\",\r\n\t\t\"LastName\":\"Last\",\r\n\t\t\"Email\":\"test@test.com\",\r\n\t\t\"Company\":\"Company\",\r\n\t\t\"Production\":\"Production\",\r\n        \"SubProduction\":\"Sub Production\",\r\n\t\t\"Position\":\"Position\",\r\n\t\t\"Address1\":\"Address Line 1\",\r\n\t\t\"Address2\":\"Address Line 2\",\r\n\t\t\"Suburb\":\"Suburb\",\r\n\t\t\"State\":\"State\",\r\n\t\t\"Postcode\":\"Postcode\",\r\n\t\t\"Country\":\"AU\",\r\n\t\t\"Phone\":\"Phone\",\r\n\t\t\"Username\":\"test@test.com\",\r\n\t\t\"Password\":\"testpassword\",\r\n\t\t\"TermsAccept\":\"true\",\r\n\t\t\"PrivacyAccept\":\"true\",\r\n\t\t\"Subscribe\":\"true\",\r\n\t\t\"FileFormat\":\"mp3\",\r\n\t\t\"SearchFormat\":\"Track\",\r\n\t\t\"SearchSort\":\"New\",\r\n        \"PositionType\":\"Manager\",\r\n        \"Freelancer\":\"false\",\r\n\t\t\"IP\":\"{Users IP}\"\r\n\t},\r\n\t\"NoMemberEmail\":false\r\n}"},"url":"{{HM_ServiceAPI_URL}}/registermember/{{HM_ServiceAPI_Token}}","urlObject":{"path":["registermember","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4f290853-43e4-492a-9247-fbb73830048a"}],"id":"3e12ff19-9397-4caf-a538-80301c2d7f34","_postman_id":"3e12ff19-9397-4caf-a538-80301c2d7f34","description":""},{"name":"Login Page","item":[{"name":"Signin Member","event":[{"listen":"test","script":{"id":"781134a3-39fd-4d09-9fe5-ea6f5f7e6b66","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;\r","\r","var jsonData = null;\r","var jsonDataToken = \"\";\r","var jsonDataPersistentToken = \"\";\r","\r","if (responseBody.indexOf(\"<?xml\") >= 0) {\r","    jsonData = xml2Json(responseBody);\r","    jsonDataToken = jsonData.responsemembertoken.membertoken.$.value;\r","    jsonDataPersistentToken = jsonData.responsemembertoken.persistentlogintoken.$.token;\r","} else {\r","    jsonData = JSON.parse(responseBody)\r","    jsonDataToken = jsonData.MemberToken.Value;\r","    jsonDataPersistentToken = jsonData.PersistentLoginToken.Token;\r","}\r","\r","console.log(\"HM_ServiceAPI_MemberToken set to \" + jsonDataToken);\r","console.log(\"HM_ServiceAPI_MemberPersistentToken set to \" + jsonDataPersistentToken);\r","console.log(\"HM_ServiceAPI_MemberTokenIsLoggedMember set to true\");\r","\r","postman.setEnvironmentVariable(\"HM_ServiceAPI_MemberToken\", jsonDataToken);\r","postman.setEnvironmentVariable(\"HM_IntegrationAPI_MemberToken\", jsonDataToken);\r","postman.setEnvironmentVariable(\"HM_ServiceAPI_MemberPersistentToken\", jsonDataPersistentToken);\r","postman.setEnvironmentVariable(\"HM_ServiceAPI_MemberTokenIsLoggedMember\", \"true\");\r","\r","postman.setNextRequest(\"Get Member Details\");"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"8f8dcfdb-e7c8-46a5-82e1-381b8950be0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"UserName\":\"{{HM_ServiceAPI_MemberUsername}}\",\r\n\t\"Password\":\"{{HM_ServiceAPI_MemberPassword}}\",\r\n\t\"PersistentLogin\":true,\r\n\t\"ReturnMemberDetails\":false,\r\n    \"ReturnMemberSubscriptionDetails\":true\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getmembertoken/{{HM_ServiceAPI_Token}}","description":"<h3 id=\"handling-temporary-passwords\">Handling Temporary Passwords:</h3>\n<p>A temporary password can be set up for a user via the Harvest Admin and OKTA webhook when leaving a group.</p>\n<p>When a user is in this state, the following can be observed.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"MemberToken\": {\n        \"Value\": \"9ebf1ca21c3c298d31b520fb0b5f79f2\",\n        \"Expiry\": \"2024-12-12T08:11:07.4\",\n        \"UTCOffset\": 11.0,\n        \"TemporaryPassword\": \"true\",\n        \"Type\": \"MemberToken\",\n        \"IsOfSingleUse\": false\n    },\n    \"PersistentLoginToken\": {\n        \"Token\": \"c8e2a8f6feab4bff8ea843966da59b92\",\n        \"Expiry\": \"2025-03-11T08:11:07.557\",\n        \"UTCOffset\": 11.0\n    }\n}\n\n</code></pre><p>Notice the <code>TemporaryPassword</code> property here.<br />This property will only appear if the user is using a temporary password.</p>\n<p>You can use this on login to determine whether to show the user the “set a new password for your account” modal.</p>\n<p>Please Note: the <code>TemporaryPassword</code> property will also be present if the user is using a temporary password for all other member related responses such as Get Member Details (/getmember) or Update Member Details (/updatemember)</p>\n","urlObject":{"path":["getmembertoken","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8f8dcfdb-e7c8-46a5-82e1-381b8950be0b"},{"name":"Forgot Password","event":[{"listen":"test","script":{"id":"23208e14-709a-4caa-8cfc-31b0cbc43ed3","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"0b9b4d8e-b36d-43fb-a5eb-2a51c608cc43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"Username\": \"\",\r\n\t\"Email\": \"test@test.com\",\r\n\t\"LanguageCode\":  \"EN\",\r\n\t\"ResetLink\":\"https://yourdomain.com/reset?token={token}\",\r\n\t\"TokenMergeString\": \"{token}\",\r\n\t\"UseShortUrl\": false,\r\n\t\"ResetTokenExpiryHours\": 2\r\n}"},"url":"{{HM_ServiceAPI_URL}}/sendpasswordresetlinkemail/{{HM_ServiceAPI_Token}}","urlObject":{"path":["sendpasswordresetlinkemail","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0b9b4d8e-b36d-43fb-a5eb-2a51c608cc43"},{"name":"Validate Forgot Password","event":[{"listen":"test","script":{"exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","id":"edf61546-3aa1-4401-b6fb-9d2c0455574c"}}],"id":"17b870ab-d6fd-4552-8a61-3502a14e051c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{HM_ServiceAPI_URL}}/validatepasswordresettoken/{{HM_ServiceAPI_Token}}/{ResetToken}","urlObject":{"path":["validatepasswordresettoken","{{HM_ServiceAPI_Token}}","{ResetToken}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"17b870ab-d6fd-4552-8a61-3502a14e051c"},{"name":"Update Member Password","event":[{"listen":"test","script":{"id":"cdaad827-2975-4f4b-82e1-76c919d8c7b2","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"51fe5ef3-8a06-47c7-bb86-2108dcb27ff0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"Token\":\"{ResetToken}\",\r\n    \"Password\":\"testpassword2\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updatepasswordusingtoken/{{HM_ServiceAPI_Token}}","urlObject":{"path":["updatepasswordusingtoken","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"51fe5ef3-8a06-47c7-bb86-2108dcb27ff0"}],"id":"093c8e94-fdd9-437a-907e-563a584c57e4","_postman_id":"093c8e94-fdd9-437a-907e-563a584c57e4","description":""},{"name":"Member Welcome Page","item":[{"name":"Jump Back In","item":[{"name":"Get Recent Playlists","event":[{"listen":"test","script":{"id":"e725f9e7-8129-4940-94d0-adfbb47d12a1","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"adbe040e-a11d-41d1-a540-f682c104d687","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"url":"{{HM_ServiceAPI_URL}}/getmemberplaylistsnotracks/{{HM_ServiceAPI_MemberToken}}?Skip=0&Limit=10","urlObject":{"path":["getmemberplaylistsnotracks","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"Skip","value":"0"},{"key":"Limit","value":"10"}],"variable":[]}},"response":[],"_postman_id":"adbe040e-a11d-41d1-a540-f682c104d687"},{"name":"Get Recent Plays","event":[{"listen":"test","script":{"id":"48381256-c3cf-4396-8fec-07f1d74d1bdb","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"eb3c4a76-4f7d-4941-8df8-427174580d2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"url":"{{HM_ServiceAPI_URL}}/gethistorybymembertoken/{{HM_ServiceAPI_MemberToken}}?skip=0&limit=3","urlObject":{"path":["gethistorybymembertoken","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"skip","value":"0"},{"key":"limit","value":"3"}],"variable":[]}},"response":[],"_postman_id":"eb3c4a76-4f7d-4941-8df8-427174580d2f"}],"id":"3b113ee2-ad04-4ad4-a108-b15a9edb37b3","_postman_id":"3b113ee2-ad04-4ad4-a108-b15a9edb37b3","description":""},{"name":"Surprise Me","item":[{"name":"Get Random Tracks","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"16ee5fb5-094f-45c7-9d36-648b6de83498","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"true\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"%\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"PureRandom\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"30\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>Note: we get 30, instead of 5, to try and prevent the same album from showing 5 times.</p>\n<p>We want unique labels/albums here if we can.</p>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"16ee5fb5-094f-45c7-9d36-648b6de83498"}],"id":"fd25dc90-9b8b-469b-aad8-4b39e4bd8567","_postman_id":"fd25dc90-9b8b-469b-aad8-4b39e4bd8567","description":""},{"name":"Suggested [TBC]","item":[],"id":"93f7b860-65cf-4b63-a197-fd4193c9e7ee","_postman_id":"93f7b860-65cf-4b63-a197-fd4193c9e7ee","description":""},{"name":"Member Hub","item":[{"name":"Get Productions","event":[{"listen":"test","script":{"id":"830bd936-ac4a-472f-a252-bb194a7ccab1","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"c1cb48b1-5ed2-4835-86cc-d26dd283aefe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getmembergroupproductions/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_MemberGroupID}}?sort={{HM_ServiceAPI_PlaylistSortOrder}}","description":"<p>Returns a list of productions that are associated to this Member Group.</p>\n<p>Will return errors when:</p>\n<ul>\n<li>The member does not belong to the member group</li>\n</ul>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>MemberGroupID</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>Sort</td>\n<td>String</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Sort</strong></p>\n<p>Sort is optional and defaults to Alphabetic_Asc if not provided. Possible values include; Alphabetic_Asc, Alphabetic_Desc, Created_Asc, Created_Desc, LastUpdated_Asc, LastUpdated_Desc</p>\n","urlObject":{"path":["getmembergroupproductions","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_MemberGroupID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"sort","value":"{{HM_ServiceAPI_PlaylistSortOrder}}"}],"variable":[]}},"response":[],"_postman_id":"c1cb48b1-5ed2-4835-86cc-d26dd283aefe"},{"name":"Get Production Categories","event":[{"listen":"test","script":{"id":"935465e6-2394-4951-9a69-6c54c71e700c","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"a21162c0-8c2c-4786-b157-2ca7c8efbb76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getmembergroupproductioncategories/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_MemberGroupID}}/{{HM_ServiceAPI_MemberGroupProductionID}}?returnplaylistcount={{HM_ServiceAPI_ShowCounts}}&skip={{HM_ServiceAPI_Skip}}&limit={{HM_ServiceAPI_Limit}}&sort={{HM_ServiceAPI_PlaylistSortOrder}}","description":"<p>Returns a list of categories that are associated with the production in this Member Group.</p>\n<p>Will return errors when:</p>\n<ul>\n<li>The member does not belong to the member group</li>\n</ul>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>MemberGroupID</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>MemberGroupProductionID</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>ReturnPlaylistCount</td>\n<td>Integer</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Skip</td>\n<td>Integer</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Limit</td>\n<td>Integer</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Sort</td>\n<td>String</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Skip &amp; Limit</strong></p>\n<p>The Skip and Limit parameters come together to allow for paging of results.</p>\n<p>Skip is the number of results to skip.</p>\n<p>Limit is the number of results to return.</p>\n<p>An example; if your page size is 10 and the user is on page 2 then Skip would be 10 and Limit would be 10.</p>\n<p><strong>Request Notes: Sort</strong></p>\n<p>Sort is optional and defaults to Alphabetic_Asc if not provided. Possible values include; Alphabetic_Asc, Alphabetic_Desc, Created_Asc, Created_Desc, LastUpdated_Asc, LastUpdated_Desc</p>\n","urlObject":{"path":["getmembergroupproductioncategories","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_MemberGroupID}}","{{HM_ServiceAPI_MemberGroupProductionID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"returnplaylistcount","value":"{{HM_ServiceAPI_ShowCounts}}"},{"key":"skip","value":"{{HM_ServiceAPI_Skip}}"},{"key":"limit","value":"{{HM_ServiceAPI_Limit}}"},{"key":"sort","value":"{{HM_ServiceAPI_PlaylistSortOrder}}"}],"variable":[]}},"response":[],"_postman_id":"a21162c0-8c2c-4786-b157-2ca7c8efbb76"},{"name":"Get Production Categories & Playlists","event":[{"listen":"test","script":{"id":"19b0211d-829c-4bdc-8b89-0c0412575cd8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"4ed84c1b-6c38-4f26-84d9-97f4bec7fd79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getmembergroupproductioncategoriesandplaylists/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_MemberGroupID}}/{{HM_ServiceAPI_MemberGroupProductionID}}?returnplaylistcount={{HM_ServiceAPI_ShowCounts}}&returntrackcount={{HM_ServiceAPI_ShowCounts}}&returnrootobjectsonly={{HM_ServiceAPI_ShowCounts}}&productioncategoryid={{HM_ServiceAPI_MemberGroupProductionCategoryID}}&skip={{HM_ServiceAPI_Skip}}&limit={{HM_ServiceAPI_Limit}}&sort={{HM_ServiceAPI_PlaylistSortOrder}}","description":"<p>Returns a list of categories &amp; playlists that are associated with the production in this Member Group.</p>\n<p>Will return errors when:</p>\n<ul>\n<li>The member does not belong to the member group</li>\n</ul>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>MemberGroupID</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>MemberGroupProductionID</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>ReturnPlaylistCount</td>\n<td>Integer</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ReturnTrackCount</td>\n<td>Boolean</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ReturnAutoSaveOnly</td>\n<td>Boolean</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ReturnFirstAutoSave</td>\n<td>Boolean</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PlaylistCategoryID</td>\n<td>Boolean</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Skip</td>\n<td>Integer</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Limit</td>\n<td>Integer</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Order</td>\n<td>String</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: ProductionCategoryID</strong></p>\n<p>When set to a value this will return those playlists that are within that category. This is to be used when retrieving content for a production category. It's important to note that when this attribute has a value, Skip and Limit will work to page the contents of the category as opposed to the contents on the root level.</p>\n<p><strong>Request Notes: Skip &amp; Limit</strong></p>\n<p>The Skip and Limit parameters come together to allow for paging of results.</p>\n<p>Skip is the number of results to skip.</p>\n<p>Limit is the number of results to return.</p>\n<p>An example; if your page size is 10 and the user is on page 2 then Skip would be 10 and Limit would be 10.</p>\n<p><strong>Request Notes: Sort</strong></p>\n<p>Sort is optional and defaults to Alphabetic_Asc if not provided. Possible values include; Alphabetic_Asc, Alphabetic_Desc, Created_Asc, Created_Desc, LastUpdated_Asc, LastUpdated_Desc</p>\n","urlObject":{"path":["getmembergroupproductioncategoriesandplaylists","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_MemberGroupID}}","{{HM_ServiceAPI_MemberGroupProductionID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"returnplaylistcount","value":"{{HM_ServiceAPI_ShowCounts}}"},{"key":"returntrackcount","value":"{{HM_ServiceAPI_ShowCounts}}"},{"key":"returnrootobjectsonly","value":"{{HM_ServiceAPI_ShowCounts}}"},{"key":"productioncategoryid","value":"{{HM_ServiceAPI_MemberGroupProductionCategoryID}}"},{"key":"skip","value":"{{HM_ServiceAPI_Skip}}"},{"key":"limit","value":"{{HM_ServiceAPI_Limit}}"},{"key":"sort","value":"{{HM_ServiceAPI_PlaylistSortOrder}}"}],"variable":[]}},"response":[],"_postman_id":"4ed84c1b-6c38-4f26-84d9-97f4bec7fd79"},{"name":"Get Production Playlist & Tracks","event":[{"listen":"test","script":{"id":"9dbdd5ec-3b3b-46f9-accb-5d77117fb3b6","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"d50d4510-87e0-4c48-9ab6-a1872dff4c66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getmembergroupproductionplaylistandtracks/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_MemberGroupID}}/{{HM_ServiceAPI_MemberGroupProductionID}}/{{HM_ServiceAPI_FeaturedPlaylistID}}?returntracks={{HM_ServiceAPI_ShowCounts}}&includeinactive={includeInactive}&languagecode={{HM_ServiceAPI_LanguageCode}}&skip={{HM_ServiceAPI_Skip}}&limit={{HM_ServiceAPI_Limit}}&sort={{HM_ServiceAPI_PlaylistSortOrder}}","description":"<p>Returns a playlist and it's tracks, if they are associated with the production in this Member Group.</p>\n<p>Will return errors when:</p>\n<ul>\n<li>The member does not belong to the member group</li>\n</ul>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>MemberGroupID</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>MemberGroupProductionID</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>PlaylistID</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>ReturnTracks</td>\n<td>Boolean</td>\n<td>Optional, default value is true. When true, will return tracks</td>\n</tr>\n<tr>\n<td>AllowInactive</td>\n<td>Boolean</td>\n<td>Optional, default value is false. When true, will allow for inactive tracks to be returned</td>\n</tr>\n<tr>\n<td>LanguageCode</td>\n<td>String</td>\n<td>Optional, default value is the account default language. When set, the name and description for the playlist will be set as per the language code</td>\n</tr>\n<tr>\n<td>Skip</td>\n<td>Integer</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Limit</td>\n<td>Integer</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Order</td>\n<td>String</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Skip &amp; Limit</strong></p>\n<p>The Skip and Limit parameters come together to allow for paging of results.</p>\n<p>Skip is the number of results to skip.</p>\n<p>Limit is the number of results to return.</p>\n<p>An example; if your page size is 10 and the user is on page 2 then Skip would be 10 and Limit would be 10.</p>\n<p><strong>Request Notes: Sort</strong></p>\n<p>Sort is optional and defaults to Custom_Asc if not provided. Possible values include; Alphabetic_Asc, Alphabetic_Desc, Created_Asc, Created_Desc, Custom_Asc, Custom_Desc, Released_Asc, Released_Desc</p>\n","urlObject":{"path":["getmembergroupproductionplaylistandtracks","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_MemberGroupID}}","{{HM_ServiceAPI_MemberGroupProductionID}}","{{HM_ServiceAPI_FeaturedPlaylistID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"returntracks","value":"{{HM_ServiceAPI_ShowCounts}}"},{"key":"includeinactive","value":"{includeInactive}"},{"key":"languagecode","value":"{{HM_ServiceAPI_LanguageCode}}"},{"key":"skip","value":"{{HM_ServiceAPI_Skip}}"},{"key":"limit","value":"{{HM_ServiceAPI_Limit}}"},{"key":"sort","value":"{{HM_ServiceAPI_PlaylistSortOrder}}"}],"variable":[]}},"response":[],"_postman_id":"d50d4510-87e0-4c48-9ab6-a1872dff4c66"}],"id":"a45800af-808e-4cab-a724-348169efc8f2","_postman_id":"a45800af-808e-4cab-a724-348169efc8f2","description":""}],"id":"22895395-8e1a-4f9f-913d-a1dc3c33c299","_postman_id":"22895395-8e1a-4f9f-913d-a1dc3c33c299","description":""},{"name":"Member Profile Page","item":[{"name":"Get Member Details","event":[{"listen":"test","script":{"id":"2efe7b8a-4c54-4a50-b233-8f408918664b","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"02404c5b-c139-4aa6-b366-f89ec3a5ab0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"url":"{{HM_ServiceAPI_URL}}/getmember/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["getmember","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"02404c5b-c139-4aa6-b366-f89ec3a5ab0d"},{"name":"Request Password Change","event":[{"listen":"test","script":{"id":"23208e14-709a-4caa-8cfc-31b0cbc43ed3","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"dc2782f6-147e-411e-8ba4-e5a27ee69ac3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"Username\": \"\",\r\n\t\"Email\": \"test@test.com\",\r\n\t\"LanguageCode\":  \"EN\",\r\n\t\"ResetLink\":\"https://yourdomain.com/reset?token={token}\",\r\n\t\"TokenMergeString\": \"{token}\",\r\n\t\"UseShortUrl\": false,\r\n\t\"ResetTokenExpiryHours\": 2\r\n}"},"url":"{{HM_ServiceAPI_URL}}/sendpasswordresetlinkemail/{{HM_ServiceAPI_Token}}","urlObject":{"path":["sendpasswordresetlinkemail","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dc2782f6-147e-411e-8ba4-e5a27ee69ac3"},{"name":"Update Member","event":[{"listen":"test","script":{"id":"23208e14-709a-4caa-8cfc-31b0cbc43ed3","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"packages":{},"type":"text/javascript"}}],"id":"d5f82ff6-94bc-4e42-86da-04e0a2d78f05","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"MemberAccount\":{\r\n\t\t\"ID\":\"z7fa7d1f4d30g6d1ab\",\r\n\t\t\"FirstName\":\"First\",\r\n\t\t\"LastName\":\"Last\",\r\n\t\t\"Email\":\"first.last@company.net\",\r\n\t\t\"Company\":\"Company\",\r\n\t\t\"Production\":\"Production\",\r\n        \"SubProduction\":\"Sub Production\",\r\n\t\t\"Position\":\"Position\",\r\n\t\t\"Address1\":\"Address Line 1\",\r\n\t\t\"Address2\":\"Address Line 2\",\r\n\t\t\"Suburb\":\"Suburb\",\r\n\t\t\"State\":\"State\",\r\n\t\t\"Postcode\":\"Postcode\",\r\n\t\t\"Country\":\"AU\",\r\n\t\t\"Phone\":\"Phone\",\r\n\t\t\"Username\":\"Username\",\r\n\t\t\"Password\":\"Password\",\r\n\t\t\"TermsAccept\":\"true\",\r\n\t\t\"PrivacyAccept\":\"true\",\r\n\t\t\"Subscribe\":\"true\",\r\n        \"Locked\":\"\",\r\n        \"LockedType\":\"\",\r\n\t\t\"FileFormat\":\"0cd2dbhf8c4cd66e21\",\r\n\t\t\"SearchFormat\":\"Track\",\r\n\t\t\"SearchSort\":\"New\",\r\n        \"Attributes\": [],\r\n\t\t\"Status\":\"Active\"\r\n\t}\r\n}"},"url":"{{HM_ServiceAPI_URL}}/updatemember/{{HM_ServiceAPI_Token}}","description":"<p>PLEASE NOTE: when a member is on their profile page you will be loading member details by doing <code>/getmember/</code>, if there is no field called \"<strong>SubscribeNewsletter</strong>\" it means the member has Assumed Opt-In, so you should not offer the option to update the variable \"subscribe\" in <code>/updatemember/</code></p>\n","urlObject":{"path":["updatemember","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d5f82ff6-94bc-4e42-86da-04e0a2d78f05"}],"id":"52ff88ce-40f0-4a99-8a5b-bf599dd9e5c9","_postman_id":"52ff88ce-40f0-4a99-8a5b-bf599dd9e5c9","description":""},{"name":"Member All Play History Page","item":[{"name":"Get Play History","event":[{"listen":"test","script":{"id":"48381256-c3cf-4396-8fec-07f1d74d1bdb","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"618dd0f5-bf05-4354-b667-b40d7f527c5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"url":"{{HM_ServiceAPI_URL}}/gethistorybymembertoken/{{HM_ServiceAPI_MemberToken}}?startdate=2023-01-01&enddate=2023-01-12&skip=0&limit=10","description":"<p><strong>Notes:</strong></p>\n<p>Dates must be provided to the API in UTC</p>\n","urlObject":{"path":["gethistorybymembertoken","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"startdate","value":"2023-01-01"},{"key":"enddate","value":"2023-01-12"},{"key":"skip","value":"0"},{"key":"limit","value":"10"}],"variable":[]}},"response":[],"_postman_id":"618dd0f5-bf05-4354-b667-b40d7f527c5e"},{"name":"Get Track Details","event":[{"listen":"test","script":{"id":"d523a71a-0877-4323-8702-7b9060788951","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"d581b9a5-3516-49a3-974d-12da768cedaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"ReturnAlternateVersions\":\"true\",\r\n\t\"ReturnAttributes\":\"false\",\r\n\t\"ReturnCategories\":\"true\",\r\n\t\"ReturnCategoryFacet\":\"false\",\r\n\t\"ReturnCodes\":\"false\",\r\n\t\"ReturnComposers\":\"false\",\r\n\t\"ReturnRelatedTracks\":\"false\",\r\n\t\"ReturnRightHolders\":\"true\",\r\n    \"ReturnStems\": \"false\",\r\n\t\"GetMainVersionFromAlternate\":\"true\",\r\n\t\"CuesheetOnlyCodesAndAttribute\":\"true\",\r\n\t\"ReturnInactiveTracks\":\"false\",\r\n    \"ReturnRegionOnlyTracks\":\"false\",\r\n\t\"track\":[\"b72b78ef520c1f1d65538be16b8b6d20\"]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/gettracks/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["gettracks","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d581b9a5-3516-49a3-974d-12da768cedaf"}],"id":"8967ae19-9229-4b7d-9dcd-1f9b026c45b5","_postman_id":"8967ae19-9229-4b7d-9dcd-1f9b026c45b5","description":""},{"name":"Member All Download History Page","item":[{"name":"Get Download History","event":[{"listen":"test","script":{"id":"c80bdc6b-8703-4546-b4ef-420776e84ff0","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"04bd5f2a-ab4e-4fea-8ea6-ee7cbbf03a2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"url":"{{HM_ServiceAPI_URL}}/getdownloadhistorybymembertoken/{{HM_ServiceAPI_MemberToken}}?startdate=2023-01-01&enddate=2023-01-12&skip=0&limit=10","urlObject":{"path":["getdownloadhistorybymembertoken","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"startdate","value":"2023-01-01"},{"key":"enddate","value":"2023-01-12"},{"key":"skip","value":"0"},{"key":"limit","value":"10"}],"variable":[]}},"response":[],"_postman_id":"04bd5f2a-ab4e-4fea-8ea6-ee7cbbf03a2b"},{"name":"Get Track Details","event":[{"listen":"test","script":{"id":"d523a71a-0877-4323-8702-7b9060788951","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"ef269d67-ec5d-46bb-b296-d91bf9078c53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"ReturnAlternateVersions\":\"true\",\r\n\t\"ReturnAttributes\":\"false\",\r\n\t\"ReturnCategories\":\"false\",\r\n\t\"ReturnCategoryFacet\":\"false\",\r\n\t\"ReturnCodes\":\"false\",\r\n\t\"ReturnComposers\":\"false\",\r\n\t\"ReturnRelatedTracks\":\"false\",\r\n\t\"ReturnRightHolders\":\"true\",\r\n    \"ReturnStems\": \"false\",\r\n\t\"GetMainVersionFromAlternate\":\"false\",\r\n\t\"CuesheetOnlyCodesAndAttribute\":\"false\",\r\n\t\"ReturnInactiveTracks\":\"false\",\r\n    \"ReturnRegionOnlyTracks\":\"false\",\r\n\t\"track\":[\"{{HM_ServiceAPI_TrackID}}\"]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/gettracks/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["gettracks","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ef269d67-ec5d-46bb-b296-d91bf9078c53"}],"id":"40b33142-ed6b-4239-8c43-67b451f6ba46","_postman_id":"40b33142-ed6b-4239-8c43-67b451f6ba46","description":""},{"name":"Member All Playlists Page","item":[{"name":"Left Panel","item":[{"name":"Tree","item":[{"name":"Get Left Panel Folder & Playlists - Playlists within a Folder","event":[{"listen":"test","script":{"id":"5f1b0483-37de-447d-bd54-05ae11862ae3","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"5a002484-c687-4f36-aea2-ee25566e699a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getmemberplaylistcategoriesandplaylists/{{HM_ServiceAPI_MemberToken}}?returnplaylistcount=true&returntrackcount=true&returnrootobjectsonly=true&returnautosaveonly=false&returnfirstautosave=false&returnhighlightonly=false&playlistcategoryid={CategoryID}&skip=0&limit=20&sort=LastUpdated_Desc","description":"<p>NOTE: Use the <code>playlistcategoryid</code> field to get contents of a folder</p>\n<p><b>COLLABORATION PLAYLIST</b></p>\n<p>If <code>IsCollaboration</code> = true then the playlist is a collaboration. You can use this to show the collab icon in the left panel</p>\n<p>If <code>IsOwner</code> = true then this user owns this playlist and so has full access to the playlist. If false then this is a recipient.</p>\n<p>If <code>IsOwner</code> = true then <code>IsEditable</code> will always be true</p>\n<p>If <code>IsEditable</code> = true then this member has editor rights. If false then this is a listener user</p>\n<p>Below is a sample response for a collaborator who received a playlist:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>        `\"IsEditable\": true,               \"IsCollaboration\": true,               \"HasCollaborator\": true,               \"CollaboratingDate\": \"7/1/2024 8:22:37 AM\",               \"IsOwner\": false,               \"IsPublishable\": false,               \"HasPublishMember\": false,               \"LasPublishDate\": \"\"`\n\n</code></pre><p><b>Request</b></p>\n<p><code>returnplaylists=all/mine/received/sent</code></p>\n<ul>\n<li><p>If not provided, will be set to <code>mine</code></p>\n</li>\n<li><p><code>returnplaylists=all</code> will return all owned and shared playlists</p>\n</li>\n<li><p><code>returnplaylists=mine</code> will return all owned</p>\n</li>\n<li><p><code>returnplaylists=received</code> will return received shared playlists only</p>\n</li>\n<li><p><code>returnshared=sent</code> will return playlists that have been shared somewhere</p>\n</li>\n</ul>\n<p><b>Response</b></p>\n<p>New properties in the response:</p>\n<ul>\n<li><p>IsEdittable</p>\n</li>\n<li><p>IsCollaboration</p>\n</li>\n<li><p>HasCollaborators</p>\n</li>\n<li><p>CollaboratingDate</p>\n</li>\n<li><p>IsOwner</p>\n</li>\n<li><p>IsPublishable</p>\n</li>\n<li><p>HasPublishMembers</p>\n</li>\n<li><p>LastPublishDate</p>\n</li>\n</ul>\n<p><b>Owners</b></p>\n<p>Full use</p>\n<p><b>Recipients</b></p>\n<p>Full use</p>\n","urlObject":{"path":["getmemberplaylistcategoriesandplaylists","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"returnplaylistcount","value":"true"},{"key":"returntrackcount","value":"true"},{"key":"returnrootobjectsonly","value":"true"},{"key":"returnautosaveonly","value":"false"},{"key":"returnfirstautosave","value":"false"},{"key":"returnhighlightonly","value":"false"},{"key":"playlistcategoryid","value":"{CategoryID}"},{"key":"skip","value":"0"},{"key":"limit","value":"20"},{"key":"sort","value":"LastUpdated_Desc"}],"variable":[]}},"response":[{"id":"36b55596-a2aa-4529-a2d8-b61d4176553c","name":"Flex Get Member Playlist Categories & Playlists","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":{"raw":"{{HM_ServiceAPI_URL}}/getmemberplaylistcategoriesandplaylists/{{HM_ServiceAPI_MemberToken}}?returnplaylistcount={{HM_ServiceAPI_ShowCounts}}&returntrackcount={{HM_ServiceAPI_ShowCounts}}&playlistcategoryid=b38c3585f24296a4&skip=0&limit=10","host":["{{HM_ServiceAPI_URL}}"],"path":["getmemberplaylistcategoriesandplaylists","{{HM_ServiceAPI_MemberToken}}"],"query":[{"key":"returnplaylistcount","value":"{{HM_ServiceAPI_ShowCounts}}"},{"key":"returntrackcount","value":"{{HM_ServiceAPI_ShowCounts}}"},{"key":"returnrootobjectsonly","value":"{{HM_ServiceAPI_ShowCounts}}","disabled":true},{"key":"returnautosaveonly","value":"{{HM_ServiceAPI_ShowCounts}}","disabled":true},{"key":"returnfirstautosave","value":"{{HM_ServiceAPI_ShowCounts}}","disabled":true},{"key":"returnhighlightonly","value":"{{HM_ServiceAPI_ShowCounts}}","disabled":true},{"key":"returnplaylistcollaboratingcount","value":"{{HM_ServiceAPI_ShowCounts}}","disabled":true},{"key":"playlistcategoryid","value":"b38c3585f24296a4"},{"key":"skip","value":"0"},{"key":"limit","value":"10"},{"key":"sort","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 09 Aug 2024 20:26:25 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"PlaylistObjects\": [\n        {\n            \"ID\": \"b38c3585f24296a4\",\n            \"Name\": \"Test Playlist Category\",\n            \"Description\": \"This is a test Playlist Category\",\n            \"ObjectType\": \"PlaylistCategory\",\n            \"HasImage\": false,\n            \"AutoSave\": false,\n            \"HighlightTracks\": false,\n            \"CreatedDate\": \"8/10/2024 6:15:54 AM\",\n            \"ColorHex\": \"000\",\n            \"PlaylistsCount\": \"1\",\n            \"PlaylistCollaboratingOwnerCount\": 0,\n            \"PlaylistCollaboratingCount\": 0,\n            \"Playlists\": [\n                {\n                    \"Name\": \"test playlist\",\n                    \"ID\": \"d4f89a8d045e8ee4\",\n                    \"Description\": \"\",\n                    \"CreatedDate\": \"8/6/2024 10:48:04 PM\",\n                    \"LastUpdateDate\": \"8/10/2024 6:24:54 AM\",\n                    \"TrackCount\": \"4\",\n                    \"Tracks\": [],\n                    \"RelatedPlaylists\": [],\n                    \"HasImage\": false,\n                    \"Tags\": \"\",\n                    \"LanguageItems\": [],\n                    \"AutoSave\": false,\n                    \"Type\": \"Curated\",\n                    \"ObjectType\": \"Playlist\",\n                    \"OrderBy\": \"Custom_Asc\",\n                    \"ExternalPlaylistImageUrl\": \"\",\n                    \"HighlightTracks\": false,\n                    \"MaxOrderID\": \"3\",\n                    \"IsEditable\": true,\n                    \"IsCollaboration\": true,\n                    \"HasCollaborator\": false,\n                    \"IsOwner\": true,\n                    \"IsPublishable\": false,\n                    \"HasPublishMember\": false\n                }\n            ]\n        }\n    ],\n    \"TotalPlaylistsCount\": \"1\",\n    \"TotalPlaylistCategoriesCount\": \"1\",\n    \"TotalCount\": \"1\"\n}"}],"_postman_id":"5a002484-c687-4f36-aea2-ee25566e699a"},{"name":"Search Left Panel Folder & Playlists Tree","event":[{"listen":"test","script":{"id":"4a81478a-8d14-4205-b356-5c2290341d8a","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"e994c040-f2d0-405b-a8d7-e5379ab93f8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"Keywords\": \"\",\r\n    \"ReturnPlaylistCount\": true,\r\n    \"ReturnTrackCount\": true,\r\n    \"ReturnContentsOnCategoryMatch\": false,\r\n    \"Skip\": 0,\r\n    \"Limit\": 20,\r\n    \"Sort\": \"LastUpdated_Desc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/searchmemberplaylistcategoriesandplaylists/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["searchmemberplaylistcategoriesandplaylists","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e994c040-f2d0-405b-a8d7-e5379ab93f8d"}],"id":"76045712-7e58-4318-a504-1a1d8ccef59c","_postman_id":"76045712-7e58-4318-a504-1a1d8ccef59c","description":""},{"name":"Folders","item":[{"name":"Create Playlist Folder","event":[{"listen":"test","script":{"id":"88906464-72ba-4a16-8879-022007ff3e60","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"279f9d0f-d76b-4686-866c-9ea47c0ae269","exec":[""],"type":"text/javascript"}}],"id":"361d34f6-b632-4b2c-970e-3991d3e93910","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"PlaylistCategoryName\": \"Folder A\",\r\n\t\"PlaylistCategoryDescription\": \"\",\r\n\t\"ColorHex\": \"\",\r\n\t\"AddToTop\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/addmemberplaylistcategory/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["addmemberplaylistcategory","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"361d34f6-b632-4b2c-970e-3991d3e93910"},{"name":"Update Playlist Folder","event":[{"listen":"prerequest","script":{"id":"0d2dd453-dcc0-49d9-9f88-a159f2623bca","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"f1a7f5e6-df2f-4d30-91f9-ef6c7d218013","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"c5e5f76c-7462-4b63-a0c1-6ecade5c8072","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"PlaylistCategoryName\": \"Folder B\",\r\n    \"PlaylistCategoryDescription\": \"\",\r\n\t\"ColorHex\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updatememberplaylistcategory/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_NewMemberPlaylistCategoryID}}","urlObject":{"path":["updatememberplaylistcategory","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_NewMemberPlaylistCategoryID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c5e5f76c-7462-4b63-a0c1-6ecade5c8072"},{"name":"Reorder Folder","event":[{"listen":"test","script":{"id":"6a1737c2-c80a-4958-83bf-ad9009001cd1","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"17e91056-28a7-4363-b5c1-a0870050a645","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/reordermemberplaylistcategory/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_NewMemberPlaylistCategoryID}}?OrderID={OrderID}","description":"<p>NOTE: 0-index based</p>\n","urlObject":{"path":["reordermemberplaylistcategory","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_NewMemberPlaylistCategoryID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"OrderID","value":"{OrderID}"}],"variable":[]}},"response":[],"_postman_id":"17e91056-28a7-4363-b5c1-a0870050a645"},{"name":"Delete Folder - Keep Child Playlists","event":[{"listen":"test","script":{"id":"8e69592f-aab4-48ad-a2e1-ddd31dfc45bd","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"720cf3fe-a45f-413c-a864-28b42b8a1d67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/removememberplaylistcategory/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_NewMemberPlaylistCategoryID}}?keepChildren=true","description":"<p><b>PLAYLIST COLLABORATION</b></p>\n<ul>\n<li><p><code>giveShareCopy=true</code> will provide the recipient with a non-publishable copy of the playlist.</p>\n</li>\n<li><p><code>giveShareCopy=false</code> will see the recipients immediately lose access to the playlist and not receive their own point in time version</p>\n</li>\n<li><p><code>keepChildren=true</code> will continue to put the playlist (collaboration or not to the root)</p>\n</li>\n<li><p><code>keepChildren=false</code> will remove the member from the share</p>\n</li>\n</ul>\n<p><b>Owners</b></p>\n<p>Full use of <code>giveShareCopy</code></p>\n<p>Full use of <code>keepChildren</code>  </p>\n<p><b>Recipients</b></p>\n<p>Blocked from using <code>giveShareCopy</code></p>\n<p>Full use of <code>keepChildren</code></p>\n","urlObject":{"path":["removememberplaylistcategory","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_NewMemberPlaylistCategoryID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"keepChildren","value":"true"}],"variable":[]}},"response":[],"_postman_id":"720cf3fe-a45f-413c-a864-28b42b8a1d67"}],"id":"4672c65d-b456-4c2d-b56f-562e5e86c0a0","_postman_id":"4672c65d-b456-4c2d-b56f-562e5e86c0a0","description":""},{"name":"Playlists","item":[{"name":"Create Playlist","event":[{"listen":"test","script":{"id":"3a118696-884b-4452-9dda-dac4a7b5e856","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"7e58cf4e-3574-49bb-bc99-8835eed7b0da","exec":[""],"type":"text/javascript"}}],"id":"10e301df-979b-4564-9fda-fe67fcac4fb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"RequestAddUpdatePlaylist\":{\r\n        \"PlaylistName\":\"Playlist A\",\r\n        \"PlaylistDescription\":\"\",\r\n        \"PlaylistTags\": \"\",\r\n        \"HighlightTracks\": false,\r\n        \"AutoSave\": false,\r\n        \"AutoSaveLimit\":0,\r\n        \"PlaylistCategoryID\":\"\",\r\n        \"ExternalPlaylistImageUrl\": \"\",\r\n        \"OrderBy\":\"\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/addmemberplaylist/{{HM_ServiceAPI_MemberToken}}","description":"<p><b>PLAYLIST COLLABORATION</b></p>\n<p><b>Owners</b></p>\n<p>Full use</p>\n<p><b>Recipients</b></p>\n<p>All recipients</p>\n<hr />\n<p><b>FLAGGING</b></p>\n<p>Use the property <code>\"HighlightTracks\": true</code> to flag a playlist and it's tracks.</p>\n","urlObject":{"path":["addmemberplaylist","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"10e301df-979b-4564-9fda-fe67fcac4fb5"},{"name":"Create Playlist Within a Folder","event":[{"listen":"test","script":{"id":"3a118696-884b-4452-9dda-dac4a7b5e856","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"7e58cf4e-3574-49bb-bc99-8835eed7b0da","exec":[""],"type":"text/javascript"}}],"id":"993963d4-0f57-4be5-a66b-89b413864617","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"RequestAddUpdatePlaylist\":{\r\n        \"PlaylistName\":\"Playlist A\",\r\n        \"PlaylistDescription\":\"\",\r\n        \"PlaylistTags\": \"\",\r\n        \"HighlightTracks\": false,\r\n        \"AutoSave\": false,\r\n        \"AutoSaveLimit\":0,\r\n        \"PlaylistCategoryID\":\"{CategoryID}\",\r\n        \"ExternalPlaylistImageUrl\": \"\",\r\n        \"OrderBy\":\"\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/addmemberplaylist/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the <code>playlistcategoryid</code> to assign a newly created playlist straight into a folder</p>\n","urlObject":{"path":["addmemberplaylist","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"993963d4-0f57-4be5-a66b-89b413864617"},{"name":"Update Playlist","event":[{"listen":"prerequest","script":{"id":"543461a8-d91a-4e99-82e5-56aa2c5659f2","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"df4aefd5-ae77-4659-9b9e-516617ad2545","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"03c85860-54dc-40bf-9a1c-68c1f1578eba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"playlistname\": \"Playlist B\",\n\t\"playlistdescription\": \"\",\n    \"playlisttags\": \"\",\n    \"HighlightTracks\": false,\n    \"AutoSave\": false,\n    \"AutoSaveLimit\": 0,\n    \"PlaylistCategoryID\": \"\",\n    \"ExternalPlaylistImageUrl\": \"\",\n    \"OrderBy\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updateplaylist/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_NewMemberPlaylistID}}","description":"<p><b>PLAYLIST COLLABORATION</b></p>\n<p>Response body a few new properties here</p>\n<ul>\n<li><p>CreateDate</p>\n</li>\n<li><p>LastUpdateDate</p>\n</li>\n<li><p>IsEdittable</p>\n</li>\n<li><p>IsCollaboration</p>\n</li>\n<li><p>HasCollaborators</p>\n</li>\n<li><p>CollaboratingDate</p>\n</li>\n<li><p>IsOwner</p>\n</li>\n<li><p>IsPublishable</p>\n</li>\n<li><p>HasPublishMembers</p>\n</li>\n<li><p>LastPublishDate</p>\n</li>\n</ul>\n<p><b>Owners</b></p>\n<p>Full use</p>\n<p><b>Recipients</b></p>\n<p>Only for <code>allowEdit</code> collaborators</p>\n<hr />\n<p><b>FLAGGING</b></p>\n<p>Use the property <code>\"HighlightTracks\": true</code> to flag a playlist and it's tracks.</p>\n","urlObject":{"path":["updateplaylist","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_NewMemberPlaylistID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"03c85860-54dc-40bf-9a1c-68c1f1578eba"},{"name":"Flag Playlist as AutoSave/Hot","event":[{"listen":"prerequest","script":{"id":"543461a8-d91a-4e99-82e5-56aa2c5659f2","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"df4aefd5-ae77-4659-9b9e-516617ad2545","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"81fadf0e-05ac-403f-8c8a-3a7000fa144c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\n    \"Playlists\": [\n        \"{PlaylistID}\"\n    ],\n    \"AutoSave\": true,\n    \"AutoSaveLimit\": 1,\n    \"AutoSaveApplyToHighlightTracks\": false,\n    \"AutoSaveReturnTracks\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/autosaveplaylists/{{HM_ServiceAPI_MemberToken}}","description":"<p><b>Owners</b></p>\n<p>Full use</p>\n<p><b>Recipients</b></p>\n<p>Only for <code>allowEdit</code> collaborators</p>\n<hr />\n<p><b>FLAGGING</b></p>\n<p>Use the property <code>\"AutoSaveApplyToHighlightTracks: true\"</code> to flag a playlist and it's tracks. The idea for this is that setting AutoSave on a playlist is usually the current working playlist for the user. So it makes sense they may want to track the tracks and so flag the playlist in one API call</p>\n","urlObject":{"path":["autosaveplaylists","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"81fadf0e-05ac-403f-8c8a-3a7000fa144c"},{"name":"Flag Playlist as Highlighted","event":[{"listen":"prerequest","script":{"id":"543461a8-d91a-4e99-82e5-56aa2c5659f2","exec":[""],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"test","script":{"id":"df4aefd5-ae77-4659-9b9e-516617ad2545","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"6b0844f6-ed1a-4b44-927b-1dde8e3cffd4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\n    \"Playlists\": [\n        \"c8e91f04a918be2645\"\n    ],\n    \"HighlightTracks\": true,\n    \"HighlightReturnTracks\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/highlightplaylists/{{HM_ServiceAPI_MemberToken}}","description":"<p><b>PLAYLIST COLLABORATION</b></p>\n<p><b>Owners</b></p>\n<p>Full use</p>\n<p><b>Recipients</b></p>\n<p>Full use</p>\n<hr />\n<p><b>FLAGGING</b></p>\n<p>This dedicated endpoint is unique in that it will return the list of trackIDs (only) that are now flagged. Using this will allow you to display any tracks that are currently on the DOM in the new flagged state without having to reload all of the panel of tracks anew.</p>\n<p>To obtain the trackIDs set: <code>\"HighlightReturnTracks\": true</code></p>\n","urlObject":{"path":["highlightplaylists","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6b0844f6-ed1a-4b44-927b-1dde8e3cffd4"},{"name":"Update Playlist to a Folder","event":[{"listen":"prerequest","script":{"id":"543461a8-d91a-4e99-82e5-56aa2c5659f2","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"df4aefd5-ae77-4659-9b9e-516617ad2545","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"e4e0fcf6-2621-422e-a755-8f9bf8a560a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\n\t\"playlistname\": \"Playlist B\",\n\t\"playlistdescription\": \"\",\n    \"playlisttags\": \"\",\n    \"HighlightTracks\": false,\n    \"AutoSave\": false,\n    \"AutoSaveLimit\": 0,\n    \"PlaylistCategoryID\": \"{PlaylistCategoryID}\",\n    \"ExternalPlaylistImageUrl\": \"\", \n    \"OrderBy\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updateplaylist/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_NewMemberPlaylistID}}","urlObject":{"path":["updateplaylist","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_NewMemberPlaylistID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e4e0fcf6-2621-422e-a755-8f9bf8a560a9"},{"name":"Reorder Member Playlist to Root","event":[{"listen":"test","script":{"id":"d39024ed-39bd-49dc-9312-c7f44ee0bb6e","exec":[""],"type":"text/javascript"}}],"id":"4461c895-cccb-4de2-99f2-d0581c0933cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"url":"{{HM_ServiceAPI_URL}}/reordermemberplaylist/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_NewMemberPlaylistID}}?movetoplaylistcategoryid=&orderid={OrderID}","description":"<p><b>PLAYLIST COLLABORATION</b></p>\n<p><b>Owners</b></p>\n<p>Full use</p>\n<p><b>Recipients</b></p>\n<p>Full use</p>\n","urlObject":{"path":["reordermemberplaylist","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_NewMemberPlaylistID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"movetoplaylistcategoryid","value":""},{"key":"orderid","value":"{OrderID}"}],"variable":[]}},"response":[],"_postman_id":"4461c895-cccb-4de2-99f2-d0581c0933cc"},{"name":"Reorder Member Playlist to Folder","event":[{"listen":"test","script":{"id":"d39024ed-39bd-49dc-9312-c7f44ee0bb6e","exec":[""],"type":"text/javascript"}}],"id":"3ebc5ea2-d5a4-46c7-bcf1-4406f95bc561","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"url":"{{HM_ServiceAPI_URL}}/reordermemberplaylist/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_NewMemberPlaylistID}}?movetoplaylistcategoryid={CategoryID}&orderid={OrderID}","description":"<p>NOTE: Use the <code>playlistcategoryid</code> to assign to the <code>orderid</code> position in the folder</p>\n<p><b>PLAYLIST COLLABORATION</b></p>\n<p><b>Owners</b></p>\n<p>Full use</p>\n<p><b>Recipients</b></p>\n<p>Full use</p>\n","urlObject":{"path":["reordermemberplaylist","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_NewMemberPlaylistID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"movetoplaylistcategoryid","value":"{CategoryID}"},{"key":"orderid","value":"{OrderID}"}],"variable":[]}},"response":[],"_postman_id":"3ebc5ea2-d5a4-46c7-bcf1-4406f95bc561"},{"name":"Deleted Playlist","event":[{"listen":"test","script":{"id":"18dc4635-e16a-42bb-964a-0eb372dabacf","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"b723dc6b-e5a1-4fd9-ac2e-472a452843c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"url":"{{HM_ServiceAPI_URL}}/removeplaylist/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_NewMemberPlaylistID}}","description":"<p><b>COLLABORATION PLAYLIST</b></p>\n<p>For collaborative playlists when deleting the playlist you have the option to give a copy to collaborators in the playlist:</p>\n<p><code>{{HM_ServiceAPI_URL}}/removeplaylist/{{HM_ServiceAPI_MemberToken}}/{PlaylistID}?giveShareCopy={giveShareCopy}</code></p>\n<p>If <code>giveShareCopy</code> = true then all collaborators will receive a snapshot copy of this playlist in their account.</p>\n<p><b>Owners</b></p>\n<p>Full use</p>\n<p><b>Recipients</b></p>\n<p>Blocked from use</p>\n","urlObject":{"path":["removeplaylist","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_NewMemberPlaylistID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b723dc6b-e5a1-4fd9-ac2e-472a452843c4"},{"name":"Duplicate Playlist","event":[{"listen":"test","script":{"id":"1fec085a-c0a5-443c-9595-a5fe94973b0a","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"c77476b0-3f82-43b3-a299-2375a7599de0","exec":[""],"type":"text/javascript"}}],"id":"e74a2381-437f-49da-a723-ef2a65709189","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SourcePlaylistID\": \"{PlaylistID}\",\r\n    \"DuplicatePlaylistName\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/duplicatememberplaylist/{{HM_ServiceAPI_MemberToken}}","description":"<p><b>PLAYLIST COLLABORATION</b></p>\n<p><b>Owners</b></p>\n<p>Full use</p>\n<p><b>Recipients</b></p>\n<p>All recipients</p>\n","urlObject":{"path":["duplicatememberplaylist","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e74a2381-437f-49da-a723-ef2a65709189"},{"name":"Compare Playlist","event":[{"listen":"test","script":{"id":"1fec085a-c0a5-443c-9595-a5fe94973b0a","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"c77476b0-3f82-43b3-a299-2375a7599de0","exec":[""],"type":"text/javascript"}}],"id":"b2ae8755-df58-41ff-af84-157e6ed4b2fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"Playlists\": [\r\n        \"{PlaylistID}\"\r\n    ],\r\n    \"FilterBy\": \"Except\",\r\n    \"FilterAction\": \"FilterOnly\",\r\n    \"Skip\": 0,\r\n    \"Limit\": 10,\r\n    \"OrderBy\": \"Custom_Asc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/filtermemberplaylisttracks/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_NewMemberPlaylistID}}","urlObject":{"path":["filtermemberplaylisttracks","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_NewMemberPlaylistID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b2ae8755-df58-41ff-af84-157e6ed4b2fc"}],"id":"1687e463-cc16-4020-a4ed-7e0aba420dac","_postman_id":"1687e463-cc16-4020-a4ed-7e0aba420dac","description":""},{"name":"Share Modal","item":[{"name":"Get Playlist Share URL","event":[{"listen":"test","script":{"exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","// var jsonData = null;","// var jsonDataToken = \"\";","","// if (responseBody.indexOf(\"<?xml\") >= 0) {","//     jsonData = xml2Json(responseBody);","    ","//     console.log(jsonData.responseengageshare.url.split(\"/\")[jsonData.responseengageshare.url].split(\"/\").length -1);","    ","//     jsonDataToken = jsonData.responseengageshare.url.split(\"/\")[jsonData.responseengageshare.url].split(\"/\").length -1;","// } else {","//     jsonData = JSON.parse(responseBody)","//     jsonDataToken = jsonData.Url.split(\"/\")[jsonData.Url.split(\"/\").length -1];","// }","","// console.log(\"HM_ServiceAPI_EnageAccessToken set to \" + jsonDataToken);","","// postman.setEnvironmentVariable(\"HM_ServiceAPI_EnageAccessToken\", jsonDataToken);","","// postman.setNextRequest(\"Get Shared Playlist By Engage\");"],"type":"text/javascript","id":"351cd360-8dda-411e-b4f5-c22a49ee2ca3"}}],"id":"b2f1166d-dad0-4c30-ae03-8ba2e137e07b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"FromMemberToken\": \"{{HM_ServiceAPI_MemberToken}}\",\r\n    // \"ToMemberToken\": \"{{HM_ServiceAPI_EngageToMemberToken}}\",\r\n    \"ObjectIdentifier\": \"2b1a4d9911916190\",\r\n    \"ObjectType\": \"Playlist\",\r\n    // \"ShareType\": \"Sync\",\r\n    // \"AllowDownload\": true,\r\n    // \"AllowFollow\": true,\r\n    // \"AllowSave\": true,\r\n    // \"AllowShare\": true\r\n    \"Users\": [\r\n        {\r\n            \"Username\": \"\",\r\n            \"Type\": \"GuestMemberAccount\",\r\n            \"ShareType\": \"Sync\",\r\n            \"AllowDownload\": false,\r\n            \"AllowFollow\": false,\r\n            \"AllowSave\": false,\r\n            \"AllowShare\": false,\r\n            \"AllowCollaboration\": false,\r\n            \"AllowEdit\": false\r\n        }\r\n    ]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getsharemusicurl/{{HM_ServiceAPI_Token}}","description":"<p>Gets a playlist share URL that can be shared to guests and other members alike.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ServiceToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<p>For this call you will require a MemberToken of the sender and the playlist ID.<br />The rest of the request body values will need to be changed depening on preference.</p>\n<p>You get an array of Users, each user can be either a member or a guest and have their own set of parameters, given there is already another method to deliver a playlist to members (Deliver Share Music) we will only explain how to send a shareURL to a guest.</p>\n<p>For a guest you will pass the following:<br />\"Username\": \"\",<br />\"Type\": \"GuestMemberAccount\",</p>\n<p>Once a share URL is obtained please convert it to a short URL using {{HM_ServiceAPI_URL}}/getshorturl/{{HM_ServiceAPI_Token}}</p>\n<p>it is possible to send the URL to an email address using Send Share Music Email (</p>\n<p><a href=\"https://developer.harvestmedia.net/#bd2a436a-808f-4e8c-984d-0189e8cd2af2\">Send Share Music Email)</a></p>\n<p><b>PLAYLIST COLLABORATION</b></p>\n<p>Some combinations of ShareType, AllowEdit and AllowCollaboration will not work.</p>\n<p><b>Sync Notes:</b></p>\n<ul>\n<li><p><code>ShareType</code> = Sync for collaboration</p>\n</li>\n<li><p><code>AllowCollaboration = true</code> + <code>AllowEdit = false</code> = Read-Only collaborator</p>\n</li>\n<li><p><code>AllowCollaboration = true</code> + <code>AllowEdit = true</code> = Editable collaborator</p>\n</li>\n</ul>\n<p><b>Copy Notes:</b></p>\n<ul>\n<li><p><code>ShareType</code> = Copy for publishable</p>\n</li>\n<li><p><code>AllowPublish</code> is enabled in the background automatically. This is not a configurable property</p>\n</li>\n</ul>\n<p><b>Owners</b></p>\n<p>Full use</p>\n<p><b>Recipients</b></p>\n<p>Blocked entirely</p>\n<p>Other request body elements:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FromMemberToken</td>\n<td>Required. This is the member token of the sender</td>\n</tr>\n<tr>\n<td>ObjectIdentifier</td>\n<td>Required. This is the PlaylistID that is to be shared</td>\n</tr>\n<tr>\n<td>ObjectType</td>\n<td>Required. This has a single value - \"Playlist\"</td>\n</tr>\n<tr>\n<td>Username</td>\n<td>Required. If it's for a guest account leave this empty with \"\"</td>\n</tr>\n<tr>\n<td>Type</td>\n<td>Required. As explained above for guests it needs to be GuestMemberAccount.</td>\n</tr>\n<tr>\n<td>ShareType</td>\n<td>Required, default is \"Sync\". Possible values are Sync and Copy. When Sync, the shared version of the playlist will maintain state with the original members playlist. When Copy, the shared version is an independent state from the original members playlist - so any edits to the original will not reflect on the shared version</td>\n</tr>\n<tr>\n<td>AllowCollaboration</td>\n<td>If you set ShareType as Sync you also need to set this to true</td>\n</tr>\n<tr>\n<td>AllowEdit</td>\n<td>Required, this can be either true or false, if it's set as true it means the collaborators can edit the playlist, otherwise they can only be listeners.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["getsharemusicurl","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"2da7646b-5e2f-42e7-b10d-04f39741518a","name":"Playlist URL to share with guests as Copy","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"FromMemberToken\": \"{{HM_ServiceAPI_MemberToken}}\",\r\n    \"ObjectIdentifier\": \"d4f89a8d045e8ee4\",\r\n    \"ObjectType\": \"Playlist\",\r\n    \"Users\": [\r\n        {\r\n            \"Username\": \"\",\r\n            \"Type\": \"GuestMemberAccount\",\r\n            \"ShareType\": \"Copy\",\r\n            \"AllowDownload\": false,\r\n            \"AllowFollow\": false,\r\n            \"AllowSave\": false,\r\n            \"AllowShare\": false,\r\n            \"AllowCollaboration\": false,\r\n            \"AllowEdit\": false\r\n        }\r\n    ]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getsharemusicurl/{{HM_ServiceAPI_Token}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Aug 2024 12:51:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"ShareMusic\": [\n        {\n            \"Username\": \"guest\",\n            \"Status\": \"Success\",\n            \"Url\": \"http://search.kongamusic.com/engage-playlist/d6b5714e9dc0774f1d2781b1e946e6b3\"\n        }\n    ]\n}"},{"id":"25ef2c76-d1ee-4eb2-b306-86c7ab3a45c4","name":"Playlist URL to share with guests as Sync but as Listeners only","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"FromMemberToken\": \"{{HM_ServiceAPI_MemberToken}}\",\r\n    \"ObjectIdentifier\": \"d4f89a8d045e8ee4\",\r\n    \"ObjectType\": \"Playlist\",\r\n\r\n    \"Users\": [\r\n        {\r\n            \"Username\": \"\",\r\n            \"Type\": \"GuestMemberAccount\",\r\n            \"ShareType\": \"Sync\",\r\n            \"AllowDownload\": false,\r\n            \"AllowFollow\": false,\r\n            \"AllowSave\": false,\r\n            \"AllowShare\": false,\r\n            \"AllowCollaboration\": true,\r\n            \"AllowEdit\": false\r\n        }\r\n    ]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getsharemusicurl/{{HM_ServiceAPI_Token}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Aug 2024 14:48:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"ShareMusic\": [\n        {\n            \"Username\": \"guest\",\n            \"Status\": \"Success\",\n            \"Url\": \"http://search.kongamusic.com/engage-playlist/c02dd4c6e2a13761142a94cf3eb41d77\"\n        }\n    ]\n}"},{"id":"13bf41e5-08b5-4bb3-be69-ebfbd720a32a","name":"Playlist URL to share with guests as Sync and as collaborators'","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"FromMemberToken\": \"{{HM_ServiceAPI_MemberToken}}\",\r\n    \"ObjectIdentifier\": \"d4f89a8d045e8ee4\",\r\n    \"ObjectType\": \"Playlist\",\r\n\r\n    \"Users\": [\r\n        {\r\n            \"Username\": \"\",\r\n            \"Type\": \"GuestMemberAccount\",\r\n            \"ShareType\": \"Sync\",\r\n            \"AllowDownload\": false,\r\n            \"AllowFollow\": false,\r\n            \"AllowSave\": false,\r\n            \"AllowShare\": false,\r\n            \"AllowCollaboration\": true,\r\n            \"AllowEdit\": true\r\n        }\r\n    ]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getsharemusicurl/{{HM_ServiceAPI_Token}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Aug 2024 14:50:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"ShareMusic\": [\n        {\n            \"Username\": \"guest\",\n            \"Status\": \"Success\",\n            \"Url\": \"http://search.kongamusic.com/engage-playlist/c02dd4c6e2a13761471302c8be3a0efb\"\n        }\n    ]\n}"},{"id":"c54af909-3f49-4b1f-a69b-a96b05bddeeb","name":"Error code when member does not exist and you have to use GuestMemberAccount","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"FromMemberToken\": \"{{HM_ServiceAPI_MemberToken}}\",\r\n    \"ObjectIdentifier\": \"d4f89a8d045e8ee4\",\r\n    \"ObjectType\": \"Playlist\",\r\n\r\n    \"Users\": [\r\n        {\r\n            \"Username\": \"francesco+kongaliveeee@harvestmedia.net\",\r\n            \"Type\": \"MemberAccount\",\r\n            \"ShareType\": \"Copy\",\r\n            \"AllowDownload\": false,\r\n            \"AllowFollow\": false,\r\n            \"AllowSave\": false,\r\n            \"AllowShare\": false,\r\n            \"AllowCollaboration\": false,\r\n            \"AllowEdit\": false\r\n        }\r\n    ]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getsharemusicurl/{{HM_ServiceAPI_Token}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Aug 2024 14:18:46 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"ShareMusic\": [\n        {\n            \"Username\": \"francesco+kongaliveeee@harvestmedia.net\",\n            \"Status\": \"Failed\",\n            \"Url\": \"\",\n            \"Error\": {\n                \"Code\": \"11\",\n                \"Description\": \"No member exists with this username\"\n            }\n        }\n    ]\n}"}],"_postman_id":"b2f1166d-dad0-4c30-ae03-8ba2e137e07b"},{"name":"Get Playlist Category Share URL","id":"19691e28-4426-401e-bd89-2d47ea8d7c5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getsharemusicurl/{{HM_ServiceAPI_Token}}","description":"<p>Gets a Playlist Category share URL that can be shared to guests and other members alike.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ServiceToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<p>It's important to note that in order to utilise this feature you will need to obtain member tokens for both the sender and recipient.</p>\n<ol>\n<li><p>Get a Member Token for the Sender (see</p>\n<p> <a href=\"https://developer.harvestmedia.net/?version=latest#5ac80560-f410-4916-993c-1f974b7a0b38\">Get Member Details</a></p>\n<p> )</p>\n</li>\n<li><p>Get a Member Token for the Recipient (see</p>\n<p> <a href=\"https://developer.harvestmedia.net/#cfc7f0f8-2598-4bd0-82a4-7696e542f9a9\">Authenticate Temporary Member</a></p>\n<p> )</p>\n</li>\n</ol>\n<p>Once a share URL is obtained it is possible to send the URL to an email address;</p>\n<ol>\n<li><p>Send a Share Email (see</p>\n<p> <a href=\"https://developer.harvestmedia.net/#bd2a436a-808f-4e8c-984d-0189e8cd2af2\">Send Share Music Email</a></p>\n<p> )</p>\n</li>\n</ol>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FromMemberToken</td>\n<td>Required. This is the member token of the sender</td>\n</tr>\n<tr>\n<td>ToMemberToken</td>\n<td>Required. This is the member token of the recipient</td>\n</tr>\n<tr>\n<td>ObjectIdentifier</td>\n<td>Required. This is the PlaylistCategoryID that is to be shared</td>\n</tr>\n<tr>\n<td>ObjectType</td>\n<td>Required. This has a single value - \"PlaylistCatgory\"</td>\n</tr>\n<tr>\n<td>ShareType</td>\n<td>Optional, default is \"Sync\". Possible values are Sync and Copy. When Sync, the shared version of the playlist will maintain state with the original members playlist. When Copy, the shared version is an independent state from the original members playlist - so any edits to the original will not reflect on the shared version</td>\n</tr>\n<tr>\n<td>AllowDownload</td>\n<td>Optional, default is \"false\". Setting this to true will indicate that the playlists within the category are allowed to be downloaded by guests. That is, users who view this playlist category will not need to be in a logged in state in order to download the playlists or tracks</td>\n</tr>\n<tr>\n<td>AllowFollow</td>\n<td>Optional, default is \"false\". Setting this to true will indicate that the playlist category is allowed to be followed</td>\n</tr>\n<tr>\n<td>AllowSave</td>\n<td>Optional, default is \"false\". Setting this to true will indicate that the playlist category is allowed to be saved</td>\n</tr>\n<tr>\n<td>AllowShare</td>\n<td>Optional, default is \"false\". Setting this to true will indicate that the playlist category is allowed to be shared</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["getsharemusicurl","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"4ec31c24-e17e-4aa2-89f5-cd808e1ecb09","name":"Get Playlist Category Share URL (JSON)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"FromMemberToken\":\"09c6d805eac68a0e8d9chd5a724ubca91f\",\r\n    \"ToMemberToken\":\"029c6d80eac680e83da173e2318ba06du2\",\r\n    \"ObjectIdentifier\":\"dbb457b7c3f5178a2h\",\r\n    \"ObjectType\":\"PlaylistCategory\",\r\n    \"ShareType\":\"Sync\",\r\n    \"AllowDownload\":true,\r\n    \"AllowFollow\":true,\r\n    \"AllowSave\":true,\r\n    \"AllowShare\":true\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getsharemusicurl/{{HM_ServiceAPI_Token}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 11 Nov 2020 05:27:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"Status\": \"success\",\n    \"Url\": \"http://{domain}/{website-share-path}/09c6fd80eac680e8dcad7152cf0d88a0a0\"\n}"}],"_postman_id":"19691e28-4426-401e-bd89-2d47ea8d7c5e"},{"name":"Send Share Music Email","event":[{"listen":"test","script":{"exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","// var jsonData = null;","// var jsonDataToken = \"\";","","// if (responseBody.indexOf(\"<?xml\") >= 0) {","//     jsonData = xml2Json(responseBody);","    ","//     console.log(jsonData.responseengageshare.url.split(\"/\")[jsonData.responseengageshare.url].split(\"/\").length -1);","    ","//     jsonDataToken = jsonData.responseengageshare.url.split(\"/\")[jsonData.responseengageshare.url].split(\"/\").length -1;","// } else {","//     jsonData = JSON.parse(responseBody)","//     jsonDataToken = jsonData.Url.split(\"/\")[jsonData.Url.split(\"/\").length -1];","// }","","// console.log(\"HM_ServiceAPI_EnageAccessToken set to \" + jsonDataToken);","","// postman.setEnvironmentVariable(\"HM_ServiceAPI_EnageAccessToken\", jsonDataToken);","","// postman.setNextRequest(\"Get Shared Playlist By Engage\");"],"type":"text/javascript","id":"b4aeafbe-e39c-49d6-8de1-fe0630d9b9d7"}}],"id":"ae4beb43-cda7-445c-acc6-f7b26b5ad1dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"FromEmail\":\"\",\r\n\t\"ToEmail\":\"peter@harvestthe.net\",\r\n\t\"Message\":\"Test\",\r\n\t\"Link\":\"\",\r\n\t\"ContentType\":\"\",\r\n\t\"ContentTitle\":\"\",\r\n\t\"SelectEmailTemplateByMemberRegion\":false\r\n}"},"url":"{{HM_ServiceAPI_URL}}/sendsharemusiclinkemail/{{HM_ServiceAPI_MemberToken}}","description":"<p>Allows the sending of share music links.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FromEmail</td>\n<td>Required. This is the senders email</td>\n</tr>\n<tr>\n<td>ToEmail</td>\n<td>Required. This is the recipients email</td>\n</tr>\n<tr>\n<td>Link</td>\n<td>Required. This is the link that will be shared</td>\n</tr>\n<tr>\n<td>ContentType</td>\n<td>Required. This is the type of link that is being shared. Possible values include; PlaylistCategory and Playlist</td>\n</tr>\n<tr>\n<td>ContentTitle</td>\n<td>Required. This is the name of the PlaylistCategory or Playlist being shared</td>\n</tr>\n<tr>\n<td>Message</td>\n<td>Optional. Provide this if you would like to include a custom message on the email</td>\n</tr>\n<tr>\n<td>SelectEmailTemplateByMemberRegion</td>\n<td>Optional, default is \"false\". Setting this will send this using a regional email template if one exists</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["sendsharemusiclinkemail","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"5e650c60-5539-4d86-882e-58fa68b92368","name":"Send Share Music Email (JSON)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"FromEmail\":\"first.last@company.net\",\r\n\t\"ToEmail\":\"second.last@company.net\",\r\n\t\"Message\":\"A message\",\r\n\t\"Link\":\"https://{domain}/{website-share-path}/{share-token}\",\r\n\t\"ContentType\":\"PlaylistCategory\",\r\n\t\"ContentTitle\":\"My Folder Name\",\r\n\t\"SelectEmailTemplateByMemberRegion\":false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/sendsharemusiclinkemail/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 11 Nov 2020 06:55:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"Code\": \"OK\"\n}"},{"id":"fc1d0250-5719-434a-aa84-a18e91ced754","name":"Send Share Music Email (XML)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/xml"},{"key":"Accept","value":"application/xml"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"<requestsharemusicLinkemail>\r\n<fromemail>first.last@company.net</fromemail>\r\n<toemail>second.last@company.net</toemail>\r\n<message>A message</message>\r\n<link>https://{domain}/{website-share-path}/{share-token}</link>\r\n<contenttype>PlaylistCategory</contenttype>\r\n<contenttitle>My Folder Name</contenttitle>\r\n<selectemailtemplatebymemberregion>false</selectemailtemplatebymemberregion>\r\n</requestsharemusicLinkemail>","options":{"raw":{"language":"xml"}}},"url":"{{HM_ServiceAPI_URL}}/sendsharemusiclinkemail/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Wed, 11 Nov 2020 07:00:24 GMT"},{"key":"Content-Type","value":"application/xml"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<responsecode xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <code>OK</code>\n</responsecode>"},{"id":"079c32c7-f7b0-4813-84d8-68008b2e1d51","name":"Send Share Music Email to a member","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"FromEmail\":\"francesco@harvestmedia.net\",\r\n\t\"ToEmail\":\"francesco+kongalive@harvestmedia.net\",\r\n\t\"Message\":\"This is a test share url\",\r\n\t\"Link\":\"http://search.kongamusic.com/engage-playlist/c02dd4c6e2a13761a17892490aee66a0\",\r\n\t\"ContentType\":\"email\",\r\n\t\"ContentTitle\":\"Test\",\r\n\t\"SelectEmailTemplateByMemberRegion\":false\r\n}"},"url":"{{HM_ServiceAPI_URL}}/sendsharemusiclinkemail/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Aug 2024 14:16:19 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"Code\": \"OK\"\n}"}],"_postman_id":"ae4beb43-cda7-445c-acc6-f7b26b5ad1dd"}],"id":"1d002e5d-f3e4-4bea-b0b0-456297a04820","description":"<h3 id=\"share-modal---load-a-snapshot-share-url\"><b>Share modal - Load a snapshot share URL</b></h3>\n<p><strong>Step 1:</strong> Get a Share URL</p>\n<p><code>{{HM_ServiceAPI_URL}}/getsharemusicurl/{{HM_ServiceAPI_Token}}</code></p>\n<p><code>{   \"FromMemberToken\": \"{{HM_ServiceAPI_MemberToken}}\",   \"ObjectIdentifier\": \"2b1a4d9911916190\",   \"ObjectType\": \"Playlist\",   \"Users\": [   {   \"Username\": \"\",   \"Type\": \"GuestMemberAccount\",   \"ShareType\": \"Sync\",   \"AllowDownload\": true,   \"AllowFollow\": true,   \"AllowSave\": true,   \"AllowShare\": true,   \"AllowCollaboration\": false,   \"AllowEdit\": false   }   ]   }</code></p>\n<p><strong>Step 2:</strong> Convert long to short URL</p>\n<p><code>{{HM_ServiceAPI_URL}}/getshorturl/{{HM_ServiceAPI_Token}}</code></p>\n<p><code>{   \"URL\":\"{share url}\"   }</code></p>\n","_postman_id":"1d002e5d-f3e4-4bea-b0b0-456297a04820"},{"name":"Collaborate Modal","item":[{"name":"Validate Username","event":[{"listen":"test","script":{"id":"d4bcbaf6-0da3-4515-8510-ad40d209de41","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"87a282fa-de01-4790-89f0-f87d74f413d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"Username\":\"user@username.com\",\r\n    \"VerifyEmail\": false,\r\n    \"ReturnAuthenticationType\": false\r\n}"},"url":"{{HM_ServiceAPI_URL}}/validateusername/{{HM_ServiceAPI_Token}}","urlObject":{"path":["validateusername","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"87a282fa-de01-4790-89f0-f87d74f413d7"},{"name":"Deliver Share Music","event":[{"listen":"test","script":{"id":"8dfceb63-7990-4393-a880-b733e978ccc4","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"70bda03a-2c2b-4e2b-a80d-9c48dacaa35a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"ObjectIdentifier\": \"{{HM_ServiceAPI_NewMemberPlaylistID}}\",\r\n    \"ObjectType\": \"Playlist\",\r\n    \"Users\": [\r\n        {\r\n            \"Username\": \"{{HM_ServiceAPI_NewMemberEmail}}\",\r\n            \"ShareType\": \"Sync\",\r\n            \"AllowEdit\": false,\r\n            \"AllowCollaboration\": true,\r\n            \"NotifyUser\": false,\r\n            \"Message\": \"\"\r\n        }\r\n    ]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/deliversharemusic/{{HM_ServiceAPI_MemberToken}}","description":"<p><b>PLAYLIST COLLABORATION</b></p>\n<p>Some combinations of ShareType, AllowEdit and AllowCollaboration will not work.</p>\n<ul>\n<li><p><code>ShareType</code> = Sync for collaboration</p>\n</li>\n<li><p><code>AllowCollaboration = true</code> + <code>AllowEdit = false</code> = Read-Only collaborator</p>\n</li>\n<li><p><code>AllowCollaboration = true</code> + <code>AllowEdit = true</code> = Editable collaborator</p>\n</li>\n</ul>\n<p><b>Owners</b></p>\n<p>Full use</p>\n<p><b>Recipients</b></p>\n<p>Blocked entirely</p>\n","urlObject":{"path":["deliversharemusic","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"70bda03a-2c2b-4e2b-a80d-9c48dacaa35a"}],"id":"2ba491f1-4c17-491f-a905-301b2f38640b","description":"<h3 id=\"step-1-validate-that-the-email-address-is-in-use-or-not\"><strong>Step 1:</strong> Validate that the email address is in use or not</h3>\n<p><code>{{HM_ServiceAPI_URL}}/validateusername/{{HM_ServiceAPI_Token}}</code></p>\n<p><code>{ \"Username\":\"peter@harvestthe.net\", \"VerifyEmail\": false }</code></p>\n<p>This response indicates that there is no user with this email address:</p>\n<p><code>{ \"Code\": \"OK\" }</code></p>\n<p>This response indicates that there is a user with this email address:</p>\n<p><code>{ \"Error\": { \"Code\": \"17\", \"Description\": \"Username already exists (Account is active)\" } }</code></p>\n<p>It is possible to receive other responses where the username exists. Like this:</p>\n<p><code>{ \"Error\": { \"Code\": \"17\", \"Description\": \"Username already exists (Account is denied)\" } }</code></p>\n<p>The Code value here is the same in both cases. You can search for the existence of “active” in the Description to determine if it’s valid. If “active” cannot be found then the user should be treated as if the user does not exist.</p>\n<h3 id=\"step-2a-deliver-music-directly-into-accounts\"><b>Step 2a:</b> Deliver Music directly into accounts</h3>\n<p>This should only be performed on emails that received this response during step 1:</p>\n<p><code>{ \"Error\": { \"Code\": \"17\", \"Description\": \"Username already exists (Account is active)\" } }</code></p>\n<p><code>{{HM_ServiceAPI_URL}}/deliversharemusic/{{HM_ServiceAPI_MemberToken}}</code></p>\n<p><code>{ \"ObjectIdentifier\": \"2b1a4d9911916190\", \"ObjectType\": \"Playlist\", \"Users\": [ { \"Username\": \"{username entered}\", \"ShareType\": \"Sync\", \"AllowEdit\": {true = user selected editor role, false = user selected listener role}, \"AllowCollaboration\": true, \"NotifyUser\": true, \"Message\": \"{custom message to add to the users email if one is needed}\" } ] }</code></p>\n<p>For these members, the process now ends.</p>\n<h3 id=\"step-2b-get-a-share-collaboration-url\"><b>Step 2B:</b> Get a Share Collaboration URL</h3>\n<p>This should be performed on emails that the received the following response in step 1:</p>\n<p><code>{ \"Code\": \"OK\" }</code></p>\n<p>or</p>\n<p><code>{ \"Error\": { \"Code\": \"17\", \"Description\": \"{where the description does not contain the word \"active\"\" } }</code></p>\n<p>Get a Share Collab Url. We only generate this once as the resultant URL will be used for all email addresses that landed in this flow:</p>\n<p><code>{{HM_ServiceAPI_URL}}/getsharemusicurl/{{HM_ServiceAPI_Token}}</code></p>\n<p><code>{ \"FromMemberToken\": \"{{HM_ServiceAPI_MemberToken}}\", \"ObjectIdentifier\": \"2b1a4d9911916190\", \"ObjectType\": \"Playlist\", \"Users\": [ { \"Username\": \"\", \"Type\": \"GuestMemberAccount\", \"ShareType\": \"Sync\", \"AllowDownload\": true, \"AllowFollow\": true, \"AllowSave\": true, \"AllowShare\": true, \"AllowCollaboration\": true, \"AllowEdit\": {true = user selected editor role, false = user selected listener role} } ] }</code></p>\n<p>Convert long to short URL. Again, only doing this once</p>\n<p><code>{{HM_ServiceAPI_URL}}/getshorturl/{{HM_ServiceAPI_Token}}</code></p>\n<p><code>{ \"URL\":\"{share url}\" }</code></p>\n<p>Now we have our URL, for each email address we need to send this URL to them:</p>\n<p><code>{{HM_ServiceAPI_URL}}/sendsharemusiclinkemail/{{HM_ServiceAPI_MemberToken}}</code></p>\n<p><code>{ \"FromEmail\":\"{logged in users email address}\", \"ToEmail\":\"{users entered email address}\", \"Message\":\"{custom message to add to the users email if one is needed}\", \"Link\":\"{share url}\", \"ContentType\":\"Playlist\", \"ContentTitle\":\"{name of the playlist}\", \"SelectEmailTemplateByMemberRegion\":false }</code></p>\n","_postman_id":"2ba491f1-4c17-491f-a905-301b2f38640b"}],"id":"e75197be-433d-47ba-ae09-c9f249390eed","description":"<h3 id=\"showing-which-playlists-are-collaborations-in-the-left-panel\"><b>Showing which playlists are collaborations in the left panel</b></h3>\n<p><strong>Step 1:</strong> Loading the left panel</p>\n<p>When loading the left panel of the playlists and folders there are some new properties to understand.</p>\n<p><code>{{HM_ServiceAPI_URL}}/getmemberplaylistcategoriesandplaylists/{{HM_ServiceAPI_MemberToken}}?returnplaylistcount=true&amp;returntrackcount=true&amp;returnrootobjectsonly=true&amp;returnautosaveonly=false&amp;returnfirstautosave=false&amp;returnhighlightonly=false&amp;returnplaylistcollaboratingcount=true&amp;playlistcategoryid=&amp;skip=0&amp;limit=10&amp;sort=Custom_Asc</code></p>\n<p>In the response you will see</p>\n<p>            <code>\"IsEditable\": true,               \"IsCollaboration\": true,               \"HasCollaborator\": true,               \"CollaboratingDate\": \"7/1/2024 8:22:37 AM\",               \"IsOwner\": false,               \"IsPublishable\": false,               \"HasPublishMember\": false,               \"LasPublishDate\": \"\"</code></p>\n<p>If <code>IsCollaboration</code> = true then the playlist is a collaboration. You can use this to show the collab icon in the left panel</p>\n<p>If <code>IsOwner</code> = true then this user owns this playlist and so has full access to the playlist. If false then this is a recipient.</p>\n<p>If <code>IsOwner</code> = true then <code>IsEditable</code> will always be true</p>\n<p>If <code>IsEditable</code> = true then this member has editor rights. If false then this is a listener user</p>\n","_postman_id":"e75197be-433d-47ba-ae09-c9f249390eed"},{"name":"Right Panel","item":[{"name":"Collaboration Access Modal","item":[{"name":"Get Playlist Shares","event":[{"listen":"test","script":{"id":"1f46bf1c-b5cc-4385-a11c-9f5c898c4bf5","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"0bdc6009-e41b-4556-975b-a998dd142138","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getmemberplaylistshares/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_NewMemberPlaylistID}}?skip={{HM_ServiceAPI_Skip}}&limit={{HM_ServiceAPI_Limit}}&sort={{HM_ServiceAPI_PlaylistSortOrder}}","description":"<p><b>PLAYLIST COLLABORATION</b></p>\n<ul>\n<li><p>Allows for paging using <code>skip</code> and <code>limit</code> query parameters</p>\n</li>\n<li><p>Allows for sorting using <code>sort</code> query parameter;</p>\n<ul>\n<li><p>Created_Asc</p>\n</li>\n<li><p>Created_Desc</p>\n</li>\n<li><p>LastUpdated_Asc</p>\n</li>\n<li><p>LastUpdated_Desc</p>\n</li>\n<li><p>Username_Asc</p>\n</li>\n<li><p>Username_Desc</p>\n</li>\n</ul>\n</li>\n</ul>\n<p><b>Owners</b></p>\n<p>Can be used to retrieve all shares for a specific playlist. This will allow owners to see all the times they shared as copy or sync, delivery or share etc. It is also how they can see collaborators regardless of ACTIVE or PENDING status</p>\n<p><b>Recipients</b></p>\n<p>Can be used to retrieve all collaboration ACTIVE shares for a specific playlist. This is how a user can see the list of recipients who have accepted collaboration</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>PlaylistID</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>ObjectType</td>\n<td>String</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>DeliveryType</td>\n<td>String</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ShareType</td>\n<td>String</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>SharedTo</td>\n<td>String</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>ShareStatus</td>\n<td>String</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>IsCollaboration</td>\n<td>String</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>IsCollaborating</td>\n<td>String</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>IsEditor</td>\n<td>String</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Skip</td>\n<td>Integer</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Limit</td>\n<td>Integer</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Order</td>\n<td>String</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: ObjectType</strong></p>\n<p>Two possible values; <code>Playlist</code> and <code>PlaylistCategory.</code></p>\n<p>If not provided, will default to <code>Playlist</code>.</p>\n<p><strong>Request Notes: DeliveryType</strong></p>\n<p>Two possible values; <code>Share</code> and <code>Deliver.</code></p>\n<p>If not provided, will default to returning all shares irrespective of delivery type.</p>\n<p>Shares of type <code>Share</code> occur from the <a href=\"https://developer.harvestmedia.net/#16a83e3c-93f9-407b-8129-9d82b79069fc\">Get Playlist Share Url</a> endpoint.</p>\n<p>Shares of type <code>Deliver</code> occur from the <a href=\"https://developer.harvestmedia.net/#3bcbd679-0e5e-4b1e-829e-e318683ea074\">Delivery Share Music</a> endpoint.</p>\n<p><strong>Request Notes: ShareType</strong></p>\n<p>Two possible values; <code>Sync</code> and <code>Copy</code>.</p>\n<p>If not provided, will default to returning all shares irrespective of share type.</p>\n<p><strong>Request Notes: SharedTo</strong></p>\n<p>Two possible values; <code>GuestMemberAccount</code> and <code>MemberAccount</code>.</p>\n<p>If not provided, will default to returning all shares irrespective of the shared to value.</p>\n<p><strong>Request Notes: ShareStatus</strong></p>\n<p>Four possible values; <code>Active</code>, <code>Withdrawn</code>, <code>Deleted</code> and <code>Ended</code>.</p>\n<p>If not provided, will default to returning all shares irrespective of the share status.</p>\n<p>Shares can fall into each status in the following way;</p>\n<ol>\n<li><p>Active: Occurs when the share has been created and is open for use</p>\n</li>\n<li><p>Withdrawn: Occurs when the owner of the share has removed the share</p>\n</li>\n<li><p>Ended: Occurs when the recipient of the share has left the share</p>\n</li>\n<li><p>Deleted: Occurs when the recipient of the share has left and the owner has since removed the share. This is a combination of the Withdrawn and Ended states.</p>\n</li>\n</ol>\n<p><strong>Request Notes: IsCollaboration</strong></p>\n<p>Two possible values; <code>true</code>, or <code>false</code>.</p>\n<p>If not provided, will default to returning all shares irrespective of being a collaboration or not.</p>\n<p>If set to <code>true</code>, then only collaborative shares will be returned.</p>\n<p><strong>Request Notes: IsCollaborating</strong></p>\n<p>Two possible values; <code>true</code>, or <code>false</code>.</p>\n<p>If not provided, will default to returning all shares irrespective of being an active collaboration or not.</p>\n<p>If set to <code>true</code>, then only collaborative shares that have been accepted and are actively being collaborated against will be returned.</p>\n<p><strong>Request Notes: IsEditor</strong></p>\n<p>Two possible values; <code>true</code>, or <code>false</code>.</p>\n<p>If not provided, will default to returning all shares irrespective of being an active editor in a collaboration or not.</p>\n<p>If set to <code>true</code>, then only collaborative shares that have been accepted and are actively being collaborated against, where the recipient is an editor, will be returned.</p>\n","urlObject":{"path":["getmemberplaylistshares","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_NewMemberPlaylistID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"skip","value":"{{HM_ServiceAPI_Skip}}"},{"key":"limit","value":"{{HM_ServiceAPI_Limit}}"},{"key":"sort","value":"{{HM_ServiceAPI_PlaylistSortOrder}}"}],"variable":[]}},"response":[],"_postman_id":"0bdc6009-e41b-4556-975b-a998dd142138"},{"name":"Update Playlist Share","event":[{"listen":"prerequest","script":{"id":"5d0b7f1d-8dae-4b0d-a6db-d0f513d92ae5","exec":["var newName = postman.getEnvironmentVariable(\"HM_ServiceAPI_NewMemberPlaylistName\") + \" - updated\";","","postman.setEnvironmentVariable(\"HM_ServiceAPI_NewMemberPlaylistName\", newName);"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"test","script":{"id":"2c18f818-c2c5-4937-b919-cd3726f7cff9","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"970f9475-804b-458e-b4b9-779217ac8122","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\n    \"AllowEdit\": false\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updatememberplaylistshare/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_MemberPlaylistShareID}}","description":"<p><b>PLAYLIST COLLABORATION</b></p>\n<p><b>Owners</b></p>\n<p>Use <code>AllowEdit</code> true/false to move a member between Read-Only and Editable permissions.</p>\n<p><code>AllowPublish</code> not enabled here, but could be in the future.</p>\n<p>All other <code>AllowXYZ</code> properties here should just be set to true for now. They are purely informational and do not actually do anything significant yet.</p>\n<p><b>Recipients</b></p>\n<p>Blocked from use</p>\n","urlObject":{"path":["updatememberplaylistshare","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_MemberPlaylistShareID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"970f9475-804b-458e-b4b9-779217ac8122"},{"name":"Remove Member Playlist Share","event":[{"listen":"test","script":{"exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","id":"d45bf378-7533-454a-8ec7-50d09bc11739"}}],"id":"b160825c-6df8-484e-9da6-f4d17c010b78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/removememberplaylistshare/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_MemberPlaylistShareID}}?giveShareCopy={giveShareCopy}","description":"<p><b>PLAYLIST COLLABORATION</b></p>\n<p>The recipient can remove themselves from the share if they like. But cannot remove anyone else.</p>\n<p>Owner can remove anyone.</p>\n<p>During removal - giveShareCopy determines if the user being removed/leaving receives a standalone copy or not</p>\n<p><b>Owners</b></p>\n<p>Full use</p>\n<p><b>Recipients</b></p>\n<p>Blocked from use</p>\n","urlObject":{"path":["removememberplaylistshare","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_MemberPlaylistShareID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"giveShareCopy","value":"{giveShareCopy}"}],"variable":[]}},"response":[],"_postman_id":"b160825c-6df8-484e-9da6-f4d17c010b78"}],"id":"f70c091c-116a-4c3a-a5ce-87991a5dbbe6","description":"<h3 id=\"change-collaborator-settings-modal\"><b>Change collaborator settings modal</b></h3>\n<p><strong>Step 1:</strong> Get collaborators</p>\n<p><code>{{HM_ServiceAPI_URL}}/getmemberplaylistshares/{{HM_ServiceAPI_MemberToken}}/2b1a4d9911916190?skip=0&amp;limit=20&amp;sort=Alphabetic_Asc</code></p>\n<p>Filter the response by <code>AllowCollaboration</code> = true to find collaborators. This is needed as the response will also include snapshot shares, which can be ignored here.</p>\n<p>In the response <code>AllowEdit</code> ; when true it means the user is a editor role, when false it means the user is a listener role.</p>\n<p>In the response <code>SharedToCollaborating</code>; when true means this user accepted. If false, the it means its pending. However, it is best to not show anything pending.</p>\n<p><strong>Step 2:</strong> Changing a collaborators permissions</p>\n<p>This is for shares that are <code>SharedToCollaborating</code> = true.</p>\n<p><code>{{HM_ServiceAPI_URL}}/updatememberplaylistshare/{{HM_ServiceAPI_MemberToken}}/{PlaylistShareID}</code></p>\n<p><code>{ \"AllowDownload\": true, \"AllowSave\": true, \"AllowFollow\": true, \"AllowShare\": true, \"AllowEdit\": {true = user selected editor role, false = user selected listener role} }</code></p>\n<p><strong>Step 3</strong>: Remove a collaborator</p>\n<p>This is for shares that are <code>SharedToCollaborating</code> = true.</p>\n<p><code>{{HM_ServiceAPI_URL}}/removememberplaylistshare/{{HM_ServiceAPI_MemberToken}}/{PlaylistShareID}?giveShareCopy={giveShareCopy}</code></p>\n<p>If <code>giveShareCopy</code> = true then the collaborator will receive a snapshot copy of this playlist in their account.</p>\n<hr />\n<h3 id=\"delete-collaboration-playlist\"><b>Delete collaboration playlist</b></h3>\n<p>PLEASE NOTE: this call is in the Left Panel of Member All Playlists Page, under Playlist folder, you just need to add the below flag of <code>giveShareCopy</code></p>\n<p><strong>Step 1:</strong> Delete the playlist</p>\n<p><code>{{HM_ServiceAPI_URL}}/removeplaylist/{{HM_ServiceAPI_MemberToken}}/{PlaylistID}?giveShareCopy={giveShareCopy}</code></p>\n<p>If <code>giveShareCopy</code> = true then all collaborators will receive a snapshot copy of this playlist in their account.</p>\n<hr />\n<h3 id=\"delete-folder-that-contains-collaboration-playlist\"><b>Delete folder that contains collaboration playlist</b></h3>\n<p><strong>Step 1:</strong> Delete a folder that contains collaboration playlists</p>\n<p>The call to <code>getmemberplaylistcategoriesandplaylists</code> is used to load the list of folders and playlists.</p>\n<p>In the request URL you will see a property for <code>&amp;returnplaylistcollaboratingcount={true/false}</code>.</p>\n<p>When true, this will return whether there are any collaboration playlists inside the folder (<code>PlaylistCollaborationCount</code>). You can use this to know whether to show the confirmation notice to the user or not.</p>\n<p>Then when deleting the folder you do it like so:</p>\n<p><code>{{HM_ServiceAPI_URL}}/removememberplaylistcategory/{{HM_ServiceAPI_MemberToken}}/{PlaylistCategoryID}?keepChildren={keepChildren}&amp;giveShareCopy={giveShareCopy}</code></p>\n<p>You like to provide the user with a few options here. So a modal that has options for;</p>\n<ul>\n<li><p>Delete folder, keep playlists</p>\n</li>\n<li><p>Delete folder, delete playlists</p>\n</li>\n<li><p>Delete folder, delete playlists and give collaborators a copy</p>\n</li>\n</ul>\n<p>If <code>{keepChildren}</code> is true then <code>{giveShareCopy}</code> is ignored</p>\n<p>If <code>{keepChildren}</code> is false then <code>{giveShareCopy}</code> comes into play.</p>\n<p>If <code>giveShareCopy</code> = true then all collaborators will receive a snapshot copy of this playlist in their account.</p>\n<hr />\n<h3 id=\"leaving-a-collaboration-playlist\"><b>Leaving a collaboration playlist</b></h3>\n<p><strong>Step 1:</strong> Load the share</p>\n<p><code>{{HM_ServiceAPI_URL}}/getmemberplaylistshares/{{HM_ServiceAPI_MemberToken}}/{PlaylistID}?skip=0&amp;limit=1&amp;sort=</code></p>\n<p>For recipients this will return only a single record.</p>\n<p><strong>Step 2:</strong> Leave the share</p>\n<p><code>{{HM_ServiceAPI_URL}}/removememberplaylistshare/{{HM_ServiceAPI_MemberToken}}/{PlaylistShareID}?giveShareCopy={giveShareCopy}</code></p>\n<p>If <code>giveShareCopy</code> = true then this member will receive a snapshot copy of this playlist in their account.</p>\n","_postman_id":"f70c091c-116a-4c3a-a5ce-87991a5dbbe6"},{"name":"Get Playlist","event":[{"listen":"test","script":{"id":"56fc5728-8995-4368-b36c-273e3016e280","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"6ca6c609-5d53-4ecb-81fa-40a1d2d86332","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"url":"{{HM_ServiceAPI_URL}}/getmemberplaylist/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_NewMemberPlaylistID}}?ReturnTracks=false","description":"<p><b>PLAYLIST COLLABORATION</b></p>\n<p>New properties in the response:</p>\n<ul>\n<li><p>IsEdittable</p>\n</li>\n<li><p>IsCollaboration</p>\n</li>\n<li><p>HasCollaborators</p>\n</li>\n<li><p>CollaboratingDate</p>\n</li>\n<li><p>IsOwner</p>\n</li>\n<li><p>IsPublishable</p>\n</li>\n<li><p>HasPublishMembers</p>\n</li>\n<li><p>LastPublishDate</p>\n</li>\n</ul>\n<p><b>Owners</b></p>\n<p>Full use</p>\n<p><b>Recipients</b></p>\n<p>Full use</p>\n","urlObject":{"path":["getmemberplaylist","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_NewMemberPlaylistID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"ReturnTracks","value":"false"}],"variable":[]}},"response":[],"_postman_id":"6ca6c609-5d53-4ecb-81fa-40a1d2d86332"},{"name":"Get Playlist Tracks","event":[{"listen":"test","script":{"id":"1f83557b-547c-4da9-b2f9-438748a31739","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"66ac74ec-10d5-4ff5-ac63-507aa562e1c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"Keyword\": \"%\",\r\n    \"ReturnTrackCount\": true,\r\n    \"Skip\": 0,\r\n    \"Limit\": 10,\r\n    \"OrderBy\": \"Custom_Asc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/searchmemberplaylisttracks/{{HM_ServiceAPI_MemberToken}}/{PlaylistID}","urlObject":{"path":["searchmemberplaylisttracks","{{HM_ServiceAPI_MemberToken}}","{PlaylistID}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"66ac74ec-10d5-4ff5-ac63-507aa562e1c1"},{"name":"Search Playlist Tracks","event":[{"listen":"test","script":{"id":"1f83557b-547c-4da9-b2f9-438748a31739","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"cb009b7d-cdbe-45bb-af8d-5babc3eb3a80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"Keyword\": \"pop\",\r\n    \"ReturnTrackCount\": true,\r\n    \"Skip\": 0,\r\n    \"Limit\": 10,\r\n    \"OrderBy\": \"Custom_Asc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/searchmemberplaylisttracks/{{HM_ServiceAPI_MemberToken}}/{PlaylistID}","description":"<p><b>PLAYLIST COLLABORATION</b></p>\n<p><b>Owners</b></p>\n<p>Full use</p>\n<p><b>Recipients</b></p>\n<p>Full use</p>\n","urlObject":{"path":["searchmemberplaylisttracks","{{HM_ServiceAPI_MemberToken}}","{PlaylistID}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cb009b7d-cdbe-45bb-af8d-5babc3eb3a80"},{"name":"Get Track Details","event":[{"listen":"test","script":{"id":"d523a71a-0877-4323-8702-7b9060788951","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"d42b6b01-79fb-4f8b-b258-d0fa3f700986","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"ReturnAlternateVersions\":\"true\",\r\n\t\"ReturnAttributes\":\"false\",\r\n\t\"ReturnCategories\":\"false\",\r\n\t\"ReturnCategoryFacet\":\"false\",\r\n\t\"ReturnCodes\":\"false\",\r\n\t\"ReturnComposers\":\"false\",\r\n\t\"ReturnRelatedTracks\":\"false\",\r\n\t\"ReturnRightHolders\":\"true\",\r\n    \"ReturnStems\": \"false\",\r\n\t\"GetMainVersionFromAlternate\":\"false\",\r\n\t\"CuesheetOnlyCodesAndAttribute\":\"false\",\r\n\t\"ReturnInactiveTracks\":\"false\",\r\n    \"ReturnRegionOnlyTracks\":\"false\",\r\n\t\"track\":[\"{{HM_ServiceAPI_TrackID}}\"]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/gettracks/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["gettracks","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d42b6b01-79fb-4f8b-b258-d0fa3f700986"},{"name":"Reorder Tracks - Same Playlist","event":[{"listen":"test","script":{"id":"df687bd8-5e6e-42a4-b5dd-f9d706ce78bc","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"de355eb7-b4f0-4eb5-8923-7439acaeee4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"FromPlaylistID\": \"{PlaylistID-A}\",\r\n    \"ToPlaylistID\": \"{PlaylistID-A}\",\r\n    \"TrackIDs\": \"{TrackID}\",\r\n    \"PrecedingTrackID\": null,\r\n    \"SucceedingTrackID\": null,\r\n    \"OrderID\": 0,\r\n    \"Copy\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/reordermemberplaylisttracks/{{HM_ServiceAPI_MemberToken}}","description":"<p><b>PLAYLIST COLLABORATION</b></p>\n<p><b>Owners</b></p>\n<p>Full use</p>\n<p><b>Recipients</b></p>\n<p>Only for <code>allowEdit</code> collaborators</p>\n","urlObject":{"path":["reordermemberplaylisttracks","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"de355eb7-b4f0-4eb5-8923-7439acaeee4a"},{"name":"Reorder Tracks - Different Playlist","event":[{"listen":"test","script":{"id":"df687bd8-5e6e-42a4-b5dd-f9d706ce78bc","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"7c41839b-cd7e-41f2-a4ac-abb07dcf56bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"FromPlaylistID\": \"{PlaylistID-A}\",\r\n    \"ToPlaylistID\": \"{PlaylistID-B}\",\r\n    \"TrackIDs\": \"{TrackID}\",\r\n    \"PrecedingTrackID\": null,\r\n    \"SucceedingTrackID\": null,\r\n    \"OrderID\": 0,\r\n    \"Copy\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/reordermemberplaylisttracks/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["reordermemberplaylisttracks","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7c41839b-cd7e-41f2-a4ac-abb07dcf56bd"},{"name":"Delete Tracks","event":[{"listen":"test","script":{"id":"7c4fe263-d46a-487a-83f4-70046b9a3683","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Remove Member Playlist\");"],"type":"text/javascript"}}],"id":"2094f64f-9590-4acf-8f4f-509b4240157d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"track\":[{\r\n\t\t\"id\":\"{TrackID-A}\"\r\n\t}, {\r\n\t\t\"id\":\"{TrackID-b}\"\r\n\t}]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/removeplaylisttracks/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_NewMemberPlaylistID}}","description":"<p><b>PLAYLIST COLLABORATION</b></p>\n<p><b>Owners</b></p>\n<p>Full use</p>\n<p><b>Recipients</b></p>\n<p>Only for <code>allowEdit</code> collaborators</p>\n","urlObject":{"path":["removeplaylisttracks","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_NewMemberPlaylistID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2094f64f-9590-4acf-8f4f-509b4240157d"},{"name":"Recommend Playlist Tracks","id":"e2f3cfae-82cb-47a3-99cd-27f93e5b2c14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"Skip\": \"0\",\r\n    \"Limit\": \"3\",\r\n    \"MainOnly\": true,\r\n    \"SeedDetermination\": \"Random\",\r\n    \"SeedLimit\": \"1\",\r\n    \"SeedMin\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/suggestmemberplaylisttracks/{{HM_ServiceAPI_MemberToken}}/{{MemberPlaylistID}}","description":"<p>This endpoint provides a means of obtaining recommended tracks from a Playlists existing tracks. It provides an array of suggested tracks similar to the Member's Playlist.</p>\n<p>Tracks that in the current Member Playlist will never be shown as a suggestion, even if the track was not provided as a seed for suggestions.</p>\n<p><b>Request Notes:</b></p>\n<ul>\n<li><p><code>SeedLimit</code> - defines the number of seed tracks to be used for obtaining similar tracks. The maximum value here varies depending on AI Provider:</p>\n<ul>\n<li><p>AIMS: 10</p>\n</li>\n<li><p>Cyanite: 100</p>\n</li>\n<li><p>Harmix: 100</p>\n</li>\n</ul>\n</li>\n<li><p><code>SeedMin</code> - defines the minimum number of seeds that must exist on the Member Playlist to be allowed to obtain suggestions</p>\n</li>\n<li><p><code>SeedDetermination</code> - defines how seeds are chosen from the current list of tracks on the Member Playlist. They can be chosen by; <code>Random</code> or <code>Created_Asc</code> or <code>Created_Desc</code>.</p>\n<ul>\n<li>Created_Asc/Desc is based on the time the track was added to playlist.</li>\n</ul>\n</li>\n<li><p><code>Skip/Limit</code> - defines the paged array to return.</p>\n<ul>\n<li>Max value for <code>Limit</code> is 90</li>\n</ul>\n</li>\n</ul>\n<p><b>Request Example:</b></p>\n<p>For example, a SeedDetermination based on \"last 5 tracks\" added to the playlist</p>\n<ul>\n<li><p>SeedLimit = 5</p>\n</li>\n<li><p>SeedMin = 1</p>\n</li>\n<li><p>SeedDetermination = Created_Desc</p>\n</li>\n</ul>\n<p><b>Usage suggestions</b></p>\n<p>We would recommend integrating this in the following way:</p>\n<p>Aim to show &lt; 30 suggestions, 5-10 is a good measured number. However, we would suggest fetching more than is needed for a single page. For example, you might want to only show 5 similar suggestions - but we would suggest fetching 30, not 5 from the API. This will allow you to flip a track for a new suggestion without having to return to the API.</p>\n<p>Actions that benefit from this approach (assuming showing 5 suggestions):</p>\n<ol>\n<li><p>User adds one of the suggestions to their Member Playlist.</p>\n<ol>\n<li>You would replace that track with a pre-fetched track. So the 6th track would be added to the suggested tracks and the other 4 remaining tracks would shift up. You now have 29/30 tracks remaining to draw upon</li>\n</ol>\n</li>\n<li><p>User clicks refresh button on the suggestions</p>\n<ol>\n<li>You would replace all 5 current suggestions with the second page of pre-fetched tracks. You now have 24/30 tracks remaining to draw upon</li>\n</ol>\n</li>\n<li><p>User clicks ignore suggestion</p>\n<ol>\n<li>Similar function to adding to the Member Playlist, you would flip that one track out with a pre-fetched track. You now have 23/30 tracks remaining to draw upon</li>\n</ol>\n</li>\n</ol>\n<p>So you can see here how pre-fetching more than you need allows faster replacement of tracks. This is useful as obtaining suggestions by the API can be slow.</p>\n<p>There are however cases where you may like to refresh the list of suggestions entirely. This might need to be done when the seeds of the member playlist could change:</p>\n<ol>\n<li><p>Users adds a new track(s) to the member playlist</p>\n</li>\n<li><p>User removes a track(s) from the member playlist</p>\n</li>\n</ol>\n","urlObject":{"path":["suggestmemberplaylisttracks","{{HM_ServiceAPI_MemberToken}}","{{MemberPlaylistID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e2f3cfae-82cb-47a3-99cd-27f93e5b2c14"}],"id":"0ce75c8f-c55d-4508-83c4-e2d424360cad","_postman_id":"0ce75c8f-c55d-4508-83c4-e2d424360cad","description":""}],"id":"a26c6be1-978d-4346-ac18-70cb97b4347e","_postman_id":"a26c6be1-978d-4346-ac18-70cb97b4347e","description":""},{"name":"Member All Searches Page","item":[{"name":"Search Saved Searches","id":"58e26c23-88d8-47b7-a88e-dacbe7c73046","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"Keywords\": \"\",\r\n    \"Skip\": 0,\r\n    \"Limit\": 10,\r\n    \"Sort\": \"Created_Desc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/searchmembersavesearches/{{HM_ServiceAPI_MemberToken}}","description":"<p>Allows retrieval of saved searches for a member.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Keywords</td>\n<td>Optional, if left empty then all saved searches will be returned. If not empty, then the keywords will be searched against the name and description of saved searches.  <br />  <br />It is important to note that the keywords do not search on the terms within the search itself.</td>\n</tr>\n<tr>\n<td>Skip</td>\n<td>Optional, default is 0. This is the number of results to skip</td>\n</tr>\n<tr>\n<td>Limit</td>\n<td>Optional, default is all. This is the number of results to return</td>\n</tr>\n<tr>\n<td>Sort</td>\n<td>Optional, default is Alphabetic_Asc</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Skip &amp; Limit</strong></p>\n<p>The Skip and Limit parameters come together to allow for paging of results.</p>\n<p>Skip is the number of results to skip.</p>\n<p>Limit is the number of results to return.</p>\n<p>An example; if your page size is 10 and the user is on page 2 then Skip would be 10 and Limit would be 10.</p>\n<p><strong>Request Notes: Sort</strong></p>\n<p>Sort is optional and defaults to Alphabetic_Asc if not provided. Possible values include; Alphabetic_Asc, Alphabetic_Desc, Created_Asc, Created_Desc, LastUpdated_Asc, LastUpdated_Desc</p>\n","urlObject":{"path":["searchmembersavesearches","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"58e26c23-88d8-47b7-a88e-dacbe7c73046"},{"name":"Update Saved Search","event":[{"listen":"test","script":{"id":"6ea4a0b7-545c-40ab-9c4d-2ff9dac9f36c","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","// var jsonData = null;","// var jsonDataPlaylistID = \"\";","","// if (responseBody.indexOf(\"<?xml\") >= 0) {","//     jsonData = xml2Json(responseBody);","//     jsonDataPlaylistID = jsonData.responseplaylists.playlists.playlist.$.id;","// } else {","//     jsonData = JSON.parse(responseBody)","//     if (jsonData.Playlists.length > 0) {","//         jsonDataPlaylistID = jsonData.Playlists[0].ID;","//     }","// }","","// console.log(\"HM_ServiceAPI_NewMemberPlaylistID set to \" + jsonDataPlaylistID);","","// postman.setEnvironmentVariable(\"HM_ServiceAPI_NewMemberPlaylistID\", jsonDataPlaylistID);","","// postman.setNextRequest(\"Update Member Playlist (MT)\");"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"58bd671b-ea61-4298-b207-55b09d4893f6","exec":[""],"type":"text/javascript","packages":{}}}],"id":"9a7439cd-36c1-4942-a22c-1024c26f61cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"Name\": \"My Search - Updated\",\r\n    \"Description\": \"My Description - Updated\",\r\n    \"SearchHistoryID\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updatemembersavesearch/{{HM_ServiceAPI_MemberToken}}/{SearchHistoryID}","description":"<p>Allows updating of the details for a saved search.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ID</td>\n<td>Mandatory, the ID of the saved search</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>Mandatory, name of the saved search</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>Optional, description of the saved search</td>\n</tr>\n<tr>\n<td>SearchHistoryID</td>\n<td>Optional, the ID of the new search history that you wish to bind this saved search to. This should be left empty if only the name or description is being updated.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<p>If a new SearchHistoryID was provided in the request body, then the ID in the response will reflect the new SearchHistoryID. This ID should be used to reference this saved search going forward.</p>\n","urlObject":{"path":["updatemembersavesearch","{{HM_ServiceAPI_MemberToken}}","{SearchHistoryID}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9a7439cd-36c1-4942-a22c-1024c26f61cb"},{"name":"Remove Saved Search Term","event":[{"listen":"test","script":{"id":"473037d1-f735-4000-a05b-c921adacf754","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Create Member Playlist\");"],"type":"text/javascript","packages":{}}}],"id":"8becc900-b2a8-4014-b02a-c5393101e223","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/removemembersavedsearchterm/{{HM_ServiceAPI_MemberToken}}/{SearchHistoryID}/{SearchTermID}","description":"<p>Removes a single filter from a member saved search.</p>\n<p><strong>Request elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>SearchHistoryID</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>SearchTermID</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: SearchHistoryID and SearchTermID</strong></p>\n<p>It is important to note that the SearchHistoryID here is not the ID of the saved search.</p>\n<p>In a typical <a href=\"https://developer.harvestmedia.net/#6ad96a5d-eee3-448d-8c15-4287300759ce\">Search </a> response the following will be returned:</p>\n<ol>\n<li>ParentSearchHistoryID</li>\n<li>PreviousSearchTermBundle</li>\n</ol>\n<p>The PreviousSearchTermBundle contains an array of SearchTermBundles that were used to create the search. Each SearchTermBundle in this array has it's own SearchHistoryID and SearchTermID.</p>\n<p>Therefore, the SearchHistoryID and SearchTermID that are required here are those that are found within the PreviousSearchTermBundle. You should not use the ID of the member saved search as that will not be correct.</p>\n<p>When using the Search Saved History endpoint, the PreviousSearchTermBundle in each saved search object contains the two properties that are needed:</p>\n<ul>\n<li><p>SearchHistoryIDEnc</p>\n</li>\n<li><p>SearchTermIDEnc</p>\n</li>\n</ul>\n","urlObject":{"path":["removemembersavedsearchterm","{{HM_ServiceAPI_MemberToken}}","{SearchHistoryID}","{SearchTermID}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8becc900-b2a8-4014-b02a-c5393101e223"},{"name":"Remove Saved Search","event":[{"listen":"test","script":{"id":"252b6a0d-c2d5-45d6-930c-97cd038d3b9d","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Create Member Playlist\");"],"type":"text/javascript","packages":{}}}],"id":"dc0ff972-3c12-4f2a-a483-432dd66b5217","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/removemembersavedsearch/{{HM_ServiceAPI_MemberToken}}/{SearchHistoryID}","description":"<p>Removes a single member saved search.</p>\n<p><strong>Request elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>SearchHistoryID</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes:</strong></p>\n<p><code>SearchHistoryID</code> is the ID of the saved search to be removed.</p>\n","urlObject":{"path":["removemembersavedsearch","{{HM_ServiceAPI_MemberToken}}","{SearchHistoryID}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dc0ff972-3c12-4f2a-a483-432dd66b5217"},{"name":"Remove All Saved Searches","event":[{"listen":"test","script":{"exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Create Member Playlist\");"],"type":"text/javascript","packages":{},"id":"948f8b0c-81ca-4094-b78b-ce1cef3980e9"}}],"id":"0d5cce9e-a01d-4c76-b63b-72519e671b73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/removeallmembersavedsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>Removes all saved member searches.</p>\n<p><strong>Request elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["removeallmembersavedsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0d5cce9e-a01d-4c76-b63b-72519e671b73"}],"id":"28b13a98-3072-4f67-bf81-aadd8435b257","_postman_id":"28b13a98-3072-4f67-bf81-aadd8435b257","description":""},{"name":"Member All Tags Page","item":[{"name":"Left Panel","item":[{"name":"Create Tag","event":[{"listen":"test","script":{"id":"3a118696-884b-4452-9dda-dac4a7b5e856","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"7e58cf4e-3574-49bb-bc99-8835eed7b0da","exec":[""],"type":"text/javascript"}}],"id":"ab4130f5-50cf-4286-8355-5326789bacc4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"TagName\": \"{{HM_ServiceAPI_TagName}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/addmembertag/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["addmembertag","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ab4130f5-50cf-4286-8355-5326789bacc4"},{"name":"Update Tag","event":[{"listen":"test","script":{"id":"3a118696-884b-4452-9dda-dac4a7b5e856","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"7e58cf4e-3574-49bb-bc99-8835eed7b0da","exec":[""],"type":"text/javascript"}}],"id":"bbef6a0a-8c5f-4fa4-89be-8b70b5243ac7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"TagName\": \"{{HM_ServiceAPI_TagName}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updatemembertag/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["updatemembertag","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bbef6a0a-8c5f-4fa4-89be-8b70b5243ac7"},{"name":"Get Tags","event":[{"listen":"test","script":{"id":"158ef00d-845e-4750-acd3-447a671aa0e8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"f9cb6382-4f34-4b8e-97af-b99b0c062842","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"url":"{{HM_ServiceAPI_URL}}/getmembertags/{{HM_ServiceAPI_MemberToken}}?Skip=0&Limit=10&Sort=Alphabetic_Asc","urlObject":{"path":["getmembertags","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"Skip","value":"0"},{"key":"Limit","value":"10"},{"key":"Sort","value":"Alphabetic_Asc"}],"variable":[]}},"response":[],"_postman_id":"f9cb6382-4f34-4b8e-97af-b99b0c062842"},{"name":"Delete Tag","event":[{"listen":"test","script":{"id":"a8392543-c7bc-4183-8500-7b7e5b9ec908","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"2c9e7592-0954-4b49-a8b1-6c0a59255468","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{HM_ServiceAPI_URL}}/removemembertag/{{HM_ServiceAPI_MemberToken}}/{TagID}","urlObject":{"path":["removemembertag","{{HM_ServiceAPI_MemberToken}}","{TagID}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2c9e7592-0954-4b49-a8b1-6c0a59255468"},{"name":"Delete All Tags","event":[{"listen":"test","script":{"exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Add Track/Album to Member Favourites\");"],"type":"text/javascript","id":"e2b80e8a-54a5-459e-a69a-611f5a51b292"}}],"id":"89cf1fd9-f03c-42b9-ad65-ea0174d51332","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{HM_ServiceAPI_URL}}/removemembertags/{{HM_ServiceAPI_MemberToken}}","description":"<p>Allows the removal of all tags from all tracks for a specified member.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["removemembertags","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"89cf1fd9-f03c-42b9-ad65-ea0174d51332"}],"id":"5a10901d-077d-4320-9d81-8697c03f3882","_postman_id":"5a10901d-077d-4320-9d81-8697c03f3882","description":""},{"name":"Right Panel","item":[{"name":"Get Tracks By Tag","event":[{"listen":"test","script":{"id":"2a65cd6e-2fab-483f-9339-391bbfc8baa3","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"f66aabcf-ebe7-48c5-831f-3a74432a48c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"url":"{{HM_ServiceAPI_URL}}/getmembertagtracks/{{HM_ServiceAPI_MemberToken}}/{TagID}?Skip=0&Limit=10&Sort=Created_Asc","urlObject":{"path":["getmembertagtracks","{{HM_ServiceAPI_MemberToken}}","{TagID}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"Skip","value":"0"},{"key":"Limit","value":"10"},{"key":"Sort","value":"Created_Asc"}],"variable":[]}},"response":[],"_postman_id":"f66aabcf-ebe7-48c5-831f-3a74432a48c2"},{"name":"Get Track Details","event":[{"listen":"test","script":{"id":"d523a71a-0877-4323-8702-7b9060788951","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"700707be-8074-4b00-830a-efc80dc0b517","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"ReturnAlternateVersions\":\"true\",\r\n\t\"ReturnAttributes\":\"false\",\r\n\t\"ReturnCategories\":\"false\",\r\n\t\"ReturnCategoryFacet\":\"false\",\r\n\t\"ReturnCodes\":\"false\",\r\n\t\"ReturnComposers\":\"false\",\r\n\t\"ReturnRelatedTracks\":\"false\",\r\n\t\"ReturnRightHolders\":\"true\",\r\n    \"ReturnStems\": \"false\",\r\n\t\"GetMainVersionFromAlternate\":\"false\",\r\n\t\"CuesheetOnlyCodesAndAttribute\":\"false\",\r\n\t\"ReturnInactiveTracks\":\"false\",\r\n    \"ReturnRegionOnlyTracks\":\"false\",\r\n\t\"track\":[\"{{HM_ServiceAPI_TrackID}}\"]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/gettracks/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["gettracks","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"700707be-8074-4b00-830a-efc80dc0b517"},{"name":"Delete Track From Tag","event":[{"listen":"test","script":{"id":"7d171710-3f2e-4b84-ae19-b4c001c8304d","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"bf0b041d-8c06-4ab4-91cf-d1ede475f3d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{HM_ServiceAPI_URL}}/removetrackmembertag/{{HM_ServiceAPI_MemberToken}}/{TagID}/{TrackID}","urlObject":{"path":["removetrackmembertag","{{HM_ServiceAPI_MemberToken}}","{TagID}","{TrackID}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bf0b041d-8c06-4ab4-91cf-d1ede475f3d9"}],"id":"f0d5dee9-7335-4851-a8ab-e0fc469a580d","_postman_id":"f0d5dee9-7335-4851-a8ab-e0fc469a580d","description":""}],"id":"b269ee5c-395f-4cce-a7cf-1b0eede4d4c1","_postman_id":"b269ee5c-395f-4cce-a7cf-1b0eede4d4c1","description":""},{"name":"Member All Likes Page","item":[{"name":"Get Likes","event":[{"listen":"test","script":{"id":"af9857ff-71a8-4af4-bc85-13602b2a90d8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"95b46e38-4d18-4925-b60b-066e62a7c834","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getfavourites/{{HM_ServiceAPI_MemberToken}}?Skip=0&Limit=10&Sort=Created_Desc","urlObject":{"path":["getfavourites","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"Skip","value":"0"},{"key":"Limit","value":"10"},{"key":"Sort","value":"Created_Desc"}],"variable":[]}},"response":[],"_postman_id":"95b46e38-4d18-4925-b60b-066e62a7c834"},{"name":"Get Track Details","event":[{"listen":"test","script":{"id":"d523a71a-0877-4323-8702-7b9060788951","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"a2f9d81e-71bd-4097-a924-2d126b8db3b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"ReturnAlternateVersions\":\"true\",\r\n\t\"ReturnAttributes\":\"false\",\r\n\t\"ReturnCategories\":\"false\",\r\n\t\"ReturnCategoryFacet\":\"false\",\r\n\t\"ReturnCodes\":\"false\",\r\n\t\"ReturnComposers\":\"false\",\r\n\t\"ReturnRelatedTracks\":\"false\",\r\n\t\"ReturnRightHolders\":\"true\",\r\n    \"ReturnStems\": \"false\",\r\n\t\"GetMainVersionFromAlternate\":\"false\",\r\n\t\"CuesheetOnlyCodesAndAttribute\":\"false\",\r\n\t\"ReturnInactiveTracks\":\"false\",\r\n    \"ReturnRegionOnlyTracks\":\"false\",\r\n\t\"track\":[\"{{HM_ServiceAPI_TrackID}}\"]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/gettracks/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["gettracks","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a2f9d81e-71bd-4097-a924-2d126b8db3b2"},{"name":"Remove Track from Likes","event":[{"listen":"test","script":{"exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Remove All Tracks from Member Favourites\");"],"type":"text/javascript","id":"0556a025-e627-4a25-827a-e57a1c5bfcec"}}],"id":"e792e13e-73f9-4a2b-b370-1f959a8c4c76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/removefavouritestrack/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_TrackID}}","description":"<p>Allows the removal of a track from a member favourites.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>TrackID</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["removefavouritestrack","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_TrackID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e792e13e-73f9-4a2b-b370-1f959a8c4c76"},{"name":"Remove All Tracks from LIkes","event":[{"listen":"test","script":{"exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Create & Assign Member Comment to Track\");"],"type":"text/javascript","id":"f62eb71c-c18f-46ae-bd15-478965fb69b2"}}],"id":"a2d35779-6ec8-4b66-aa1d-48a6709a8c2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/removeallfavouritestracks/{{HM_ServiceAPI_MemberToken}}","description":"<p>Allows the removal of all tracks from a member favourites.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["removeallfavouritestracks","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a2d35779-6ec8-4b66-aa1d-48a6709a8c2f"}],"id":"7dfeda2b-0ccb-4238-8aa4-a4aa9d502e4c","_postman_id":"7dfeda2b-0ccb-4238-8aa4-a4aa9d502e4c","description":""},{"name":"Search Page","item":[{"name":"Core Search","item":[{"name":"Get Search Default","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"82d2cf4a-ef91-4919-94c5-60145ee33535","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"ReturnCSUrl\": \"true\",\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"HasLyrics\": \"false\",\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"ST_StyleGroup\": {\r\n                \"StyleGroups\": \"a1d25ce03a3225c8,0d694892092ca56b,be0c2de9cc016d87\",\r\n                \"Negative\": \"false\",\r\n                \"OrOperation\": \"true\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Style\",\r\n            \"Sort_Predefined\": \"\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"100\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"05671fc6-0773-4d02-86fb-9e2f945a01fb","name":"Get Search Default (Tracks)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"ReturnCSUrl\": \"true\",\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"ST_Track\": {\r\n                \"Tracks\": \"47dedde30079643d,23c53c490f3fec88,8fed97c866213c96,2d02cb31abb82d20,42c03d4905eac891,6ba3b10cbc4173c2\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Jan 2024 04:21:00 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalTracks\": 6,\n    \"TotalAlbums\": 1,\n    \"TotalLibraries\": 1,\n    \"TotalStyles\": 0,\n    \"TotalPlaylists\": 0,\n    \"SearchParameters\": {\n        \"searchtype\": \"Normal\",\n        \"memberaccount\": \"92662dfe696a497f\",\n        \"region\": \"88f8791e732f07e1\",\n        \"includeinactive\": false,\n        \"mainonly\": true,\n        \"alternativeonly\": false,\n        \"resultview\": {\n            \"view\": \"Track\",\n            \"rankexpression\": \"\",\n            \"skip\": 0,\n            \"limit\": 10,\n            \"saved\": false,\n            \"mincount\": 0,\n            \"returntrackcategoryid\": false,\n            \"facet_album\": false,\n            \"facet_albumskip\": 0,\n            \"facet_albumlimit\": 0,\n            \"facet_library\": true,\n            \"facet_libraryskip\": 0,\n            \"facet_librarylimit\": 0,\n            \"facet_librarysort\": \"Count_Desc\",\n            \"facet_style\": false,\n            \"facet_styleskip\": 0,\n            \"facet_stylelimit\": 0,\n            \"facet_category\": true,\n            \"facet_categoryskip\": 0,\n            \"facet_categorylimit\": 0,\n            \"facet_categorysort\": \"Count_Desc\",\n            \"facet_composer\": false,\n            \"facet_composerskip\": 0,\n            \"facet_composerlimit\": 0,\n            \"bpm_range\": false,\n            \"duration_range\": false,\n            \"include_alternates\": false,\n            \"include_rightholders\": false,\n            \"include_lyrics\": false,\n            \"include_keywords\": false,\n            \"tracks_per_album\": 0,\n            \"facet_bpm\": true,\n            \"facet_duration\": true,\n            \"facet_releaseyear\": false,\n            \"view_style_album_count\": false,\n            \"view_style_playlist_count\": false,\n            \"view_track_categories\": false,\n            \"evoke_prioritizebpm\": false,\n            \"evoke_suppressvocals\": false,\n            \"view_album_assigned_to_style\": false,\n            \"view_playlist_assigned_to_style\": false,\n            \"returnrates\": false\n        },\n        \"nearestduration\": false,\n        \"nearestbpm\": false,\n        \"nearestalternate\": false,\n        \"PreviousSearchTermBundles\": [\n            {\n                \"SearchHistoryID\": 0,\n                \"st_track\": {\n                    \"searchtermid\": 33554432,\n                    \"Tracks\": \"47dedde30079643d,23c53c490f3fec88,8fed97c866213c96,2d02cb31abb82d20,42c03d4905eac891,6ba3b10cbc4173c2\",\n                    \"negative\": false\n                }\n            }\n        ]\n    },\n    \"Tracks\": [\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"TrackNumber\": \"001\",\n            \"LengthSeconds\": \"142\",\n            \"Comment\": \"A gently resonating solo piano is joined by a high sustained string creating a haunting, atmospheric feel, until joined by further restrained, reflective strings and from halfway through, an occasional celeste can be heard\",\n            \"Composer\": \"Jackson / Jones\",\n            \"Publisher\": \"CHALK\",\n            \"Artist\": \"\",\n            \"Name\": \"Beyond The Glass\",\n            \"AlbumID\": \"8d4ce1b004d41882\",\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"ID\": \"47dedde30079643d\",\n            \"Keywords\": \"Delicate, Minimal, Atmospheric, Strings, Piano, Poignant, Light tension, Slow\",\n            \"Lyrics\": \"\",\n            \"DisplayTitle\": \"Beyond The Glass\",\n            \"alternatetitle\": \"A Sparrow's Whisper\",\n            \"Genre\": \"Orchestral/Score\",\n            \"Tempo\": \"\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"\",\n            \"Mixout\": \"\",\n            \"Frequency\": \"48000\",\n            \"Bitrate\": \"24\",\n            \"DateIngested\": \"2018-08-29 21:20:03\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"CHALK001\",\n            \"AlbumName\": \"Quartet - Intimate Classical Score\",\n            \"LibraryName\": \"Chalk\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"5\",\n            \"RightHolderIDs\": [],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"Beyond The Glass\",\n            \"AlbumTitle\": \"Quartet - Intimate Classical Score (FKA CHALK086)\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"Fee\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"TrackNumber\": \"002\",\n            \"LengthSeconds\": \"116\",\n            \"Comment\": \"Pretty and lilting piano melody joined by wind instruments, ambient pads and then strings from about 00:31 on; woodwind melodies, mallets and additional percussion including cymbals lend an almost playful, curious air\",\n            \"Composer\": \"Jackson / Jones\",\n            \"Publisher\": \"CHALK\",\n            \"Artist\": \"\",\n            \"Name\": \"Taking Wing\",\n            \"AlbumID\": \"8d4ce1b004d41882\",\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"ID\": \"23c53c490f3fec88\",\n            \"Keywords\": \"Soft, Delicate, Strings, Piano, Slow, Heartwarming, Moving, Touching, Emotive\",\n            \"Lyrics\": \"\",\n            \"DisplayTitle\": \"Taking Wing\",\n            \"alternatetitle\": \"Baby Kisses Goodnight\",\n            \"Genre\": \"Orchestral/Score\",\n            \"Tempo\": \"\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"\",\n            \"Mixout\": \"\",\n            \"Frequency\": \"48000\",\n            \"Bitrate\": \"24\",\n            \"DateIngested\": \"2018-08-29 21:20:05\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"CHALK001\",\n            \"AlbumName\": \"Quartet - Intimate Classical Score\",\n            \"LibraryName\": \"Chalk\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"5\",\n            \"RightHolderIDs\": [],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"Taking Wing\",\n            \"AlbumTitle\": \"Quartet - Intimate Classical Score (FKA CHALK086)\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"Fee\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"TrackNumber\": \"003\",\n            \"LengthSeconds\": \"126\",\n            \"Comment\": \"Dramatically stirring strings including violin, viola and cello vie for attention; reminscent of spring\",\n            \"Composer\": \"Jackson / Jones\",\n            \"Publisher\": \"CHALK\",\n            \"Artist\": \"\",\n            \"Name\": \"Into Light\",\n            \"AlbumID\": \"8d4ce1b004d41882\",\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"ID\": \"8fed97c866213c96\",\n            \"Keywords\": \"Strings, Light tension, Violin, Viola, Melancholic, Beautiful, Score, Rising, Building, Poignant, Heartbreaking\",\n            \"Lyrics\": \"\",\n            \"DisplayTitle\": \"Into Light\",\n            \"alternatetitle\": \"Withdrawn\",\n            \"Genre\": \"Orchestral/Score\",\n            \"Tempo\": \"\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"\",\n            \"Mixout\": \"\",\n            \"Frequency\": \"48000\",\n            \"Bitrate\": \"24\",\n            \"DateIngested\": \"2018-08-29 21:20:06\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"CHALK001\",\n            \"AlbumName\": \"Quartet - Intimate Classical Score\",\n            \"LibraryName\": \"Chalk\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"4\",\n            \"RightHolderIDs\": [],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"Into Light\",\n            \"AlbumTitle\": \"Quartet - Intimate Classical Score (FKA CHALK086)\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"Fee\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"TrackNumber\": \"004\",\n            \"LengthSeconds\": \"123\",\n            \"Comment\": \"Rippling solo piano begins the piece and gentle strings appear early on adding to the intensity, with additional swelling strings appearing at 00:35; finishes with just the piano melody and a dramatic sustained high string note\",\n            \"Composer\": \"Jackson / Jones\",\n            \"Publisher\": \"CHALK\",\n            \"Artist\": \"\",\n            \"Name\": \"Lost Time\",\n            \"AlbumID\": \"8d4ce1b004d41882\",\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"ID\": \"2d02cb31abb82d20\",\n            \"Keywords\": \"Solo piano, Moving, Score, Beautiful, Sad, Poignant, Hopeful, Intimate, Mid tempo, Adventure, Atmospheric\",\n            \"Lyrics\": \"\",\n            \"DisplayTitle\": \"Lost Time\",\n            \"alternatetitle\": \"Broken Logic\",\n            \"Genre\": \"Orchestral/Score\",\n            \"Tempo\": \"\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"\",\n            \"Mixout\": \"\",\n            \"Frequency\": \"48000\",\n            \"Bitrate\": \"24\",\n            \"DateIngested\": \"2018-08-29 21:20:07\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"CHALK001\",\n            \"AlbumName\": \"Quartet - Intimate Classical Score\",\n            \"LibraryName\": \"Chalk\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"5\",\n            \"RightHolderIDs\": [],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"Lost Time\",\n            \"AlbumTitle\": \"Quartet - Intimate Classical Score (FKA CHALK086)\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"Fee\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"TrackNumber\": \"005\",\n            \"LengthSeconds\": \"125\",\n            \"Comment\": \"Rippling piano ostinato is joined by bittersweet emotive strings with cymbals adding drama, along with wind instruments and additional percussion including triangle\",\n            \"Composer\": \"Jackson / Jones\",\n            \"Publisher\": \"CHALK\",\n            \"Artist\": \"\",\n            \"Name\": \"Strangers Now\",\n            \"AlbumID\": \"8d4ce1b004d41882\",\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"ID\": \"42c03d4905eac891\",\n            \"Keywords\": \"Slow, Strings, Piano, Cymbals, Sad, Moving, Evolving, Rising, Build up, Score\",\n            \"Lyrics\": \"\",\n            \"DisplayTitle\": \"Strangers Now\",\n            \"alternatetitle\": \"Spheres\",\n            \"Genre\": \"Orchestral/Score\",\n            \"Tempo\": \"\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"\",\n            \"Mixout\": \"\",\n            \"Frequency\": \"48000\",\n            \"Bitrate\": \"24\",\n            \"DateIngested\": \"2018-08-29 21:20:08\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"CHALK001\",\n            \"AlbumName\": \"Quartet - Intimate Classical Score\",\n            \"LibraryName\": \"Chalk\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"5\",\n            \"RightHolderIDs\": [],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"Strangers Now\",\n            \"AlbumTitle\": \"Quartet - Intimate Classical Score (FKA CHALK086)\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"Fee\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"TrackNumber\": \"006\",\n            \"LengthSeconds\": \"113\",\n            \"Comment\": \"A delicate, wistful piano bed with atmospheric effects and additional percussion\",\n            \"Composer\": \"Jackson / Jones\",\n            \"Publisher\": \"CHALK\",\n            \"Artist\": \"\",\n            \"Name\": \"At Peace\",\n            \"AlbumID\": \"8d4ce1b004d41882\",\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"ID\": \"6ba3b10cbc4173c2\",\n            \"Keywords\": \"Moving, Touching, Reflective, Piano, Delicate, Gentle, Soft, Fragile, Minimal\",\n            \"Lyrics\": \"\",\n            \"DisplayTitle\": \"At Peace\",\n            \"alternatetitle\": \"Feather Light\",\n            \"Genre\": \"Orchestral/Score\",\n            \"Tempo\": \"\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"\",\n            \"Mixout\": \"\",\n            \"Frequency\": \"48000\",\n            \"Bitrate\": \"24\",\n            \"DateIngested\": \"2018-08-29 21:20:34\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"CHALK001\",\n            \"AlbumName\": \"Quartet - Intimate Classical Score\",\n            \"LibraryName\": \"Chalk\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"6\",\n            \"RightHolderIDs\": [],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"At Peace\",\n            \"AlbumTitle\": \"Quartet - Intimate Classical Score (FKA CHALK086)\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"Fee\": 0\n            }\n        }\n    ],\n    \"Facets\": {\n        \"Libraries\": {\n            \"Items\": [\n                {\n                    \"ID\": \"4d220d57f9cce7c3\",\n                    \"Name\": \"Chalk\",\n                    \"Count\": 1\n                }\n            ]\n        },\n        \"BPM\": {\n            \"Min\": 0,\n            \"Max\": 0\n        },\n        \"Duration\": {\n            \"Min\": 113,\n            \"Max\": 142\n        }\n    },\n    \"UseDatabase\": true,\n    \"CloudSearchUrl\": \"https://search-hmp-search-24zwocirxbv4dnevoubyazqubi.us-east-1.cloudsearch.amazonaws.com/2011-02-01/search?bq=(and env:'S' acctid:371 type:1 stu:1 (not isalt:1..) rgn:'345' (or tid:4156708 tid:4156709 tid:4156710 tid:4156711 tid:4156712 tid:4156713) bug:'bug')&size=32767&return-fields=tid&facet=aid_f&facet-aid_f-top-n=32767&facet=lid_f&facet-lid_f-top-n=32767&facet=stl&facet-stl-top-n=32767&facet=pll_f&facet-pll_f-top-n=32767&facet=cat_f&facet-cat_f-top-n=32767&facet=bpm&facet-bpm-top-n=32767&facet=dur&facet-dur-top-n=32767\"\n}"},{"id":"f88a68d0-9385-4bcf-ba55-a03e0b0d4ec0","name":"Get Search Default (RH)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"ReturnCSUrl\": \"true\",\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_RightHolder\": {\r\n                \"RightHolders\": \"65ce628a80774f6e,f1e6792036b71623\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 17 Jan 2024 05:42:33 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalTracks\": 445,\n    \"TotalAlbums\": 57,\n    \"TotalLibraries\": 3,\n    \"TotalStyles\": 1,\n    \"TotalPlaylists\": 8,\n    \"SearchParameters\": {\n        \"searchtype\": \"Normal\",\n        \"memberaccount\": \"ad5725d472ad6d6d\",\n        \"region\": \"88f8791e732f07e1\",\n        \"includeinactive\": false,\n        \"mainonly\": true,\n        \"alternativeonly\": false,\n        \"resultview\": {\n            \"view\": \"Track\",\n            \"rankexpression\": \"\",\n            \"skip\": 0,\n            \"limit\": 10,\n            \"saved\": false,\n            \"mincount\": 0,\n            \"returntrackcategoryid\": false,\n            \"facet_album\": false,\n            \"facet_albumskip\": 0,\n            \"facet_albumlimit\": 0,\n            \"facet_library\": true,\n            \"facet_libraryskip\": 0,\n            \"facet_librarylimit\": 0,\n            \"facet_librarysort\": \"Count_Desc\",\n            \"facet_style\": false,\n            \"facet_styleskip\": 0,\n            \"facet_stylelimit\": 0,\n            \"facet_category\": true,\n            \"facet_categoryskip\": 0,\n            \"facet_categorylimit\": 0,\n            \"facet_categorysort\": \"Count_Desc\",\n            \"facet_composer\": false,\n            \"facet_composerskip\": 0,\n            \"facet_composerlimit\": 0,\n            \"bpm_range\": false,\n            \"duration_range\": false,\n            \"include_alternates\": false,\n            \"include_rightholders\": false,\n            \"include_lyrics\": false,\n            \"include_keywords\": false,\n            \"tracks_per_album\": 0,\n            \"facet_bpm\": true,\n            \"facet_duration\": true,\n            \"facet_releaseyear\": false,\n            \"view_style_album_count\": false,\n            \"view_style_playlist_count\": false,\n            \"view_track_categories\": false,\n            \"evoke_prioritizebpm\": false,\n            \"evoke_suppressvocals\": false,\n            \"view_album_assigned_to_style\": false,\n            \"view_playlist_assigned_to_style\": false,\n            \"returnrates\": false\n        },\n        \"nearestduration\": false,\n        \"nearestbpm\": false,\n        \"nearestalternate\": false,\n        \"PreviousSearchTermBundles\": [\n            {\n                \"SearchHistoryID\": 0,\n                \"st_rightholder\": {\n                    \"searchtermid\": 134217728,\n                    \"RightHolders\": \"65ce628a80774f6e,f1e6792036b71623\",\n                    \"oroperation\": false,\n                    \"negative\": false\n                }\n            }\n        ]\n    },\n    \"Facets\": {},\n    \"UseDatabase\": true,\n    \"Error\": {\n        \"Code\": \"4\",\n        \"Description\": \"Invalid object name 'hmp_rightholderrelation'.\"\n    },\n    \"CloudSearchUrl\": \"https://search-hmp-search-24zwocirxbv4dnevoubyazqubi.us-east-1.cloudsearch.amazonaws.com/2011-02-01/search?bq=(and env:'D' acctid:371 type:1 stu:1 (not isalt:1..) rgn:'345' (and rhid:'323200' rhid:'345318') bug:'bug')&size=32767&return-fields=tid&facet=aid_f&facet-aid_f-top-n=32767&facet=lid_f&facet-lid_f-top-n=32767&facet=stl&facet-stl-top-n=32767&facet=pll_f&facet-pll_f-top-n=32767&facet=cat_f&facet-cat_f-top-n=32767&facet=bpm&facet-bpm-top-n=32767&facet=dur&facet-dur-top-n=32767\"\n}"},{"id":"8ed8d3bc-b4e3-4c2d-a012-9f2e406a40c8","name":"Get Search Default (Albums)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"ReturnCSUrl\": \"true\",\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"ST_Album\": {\r\n                \"Albums\": \"a2c31cf075f94733,09af5e30c44e89ce,b580300004445d1b,2d42f735db56ea82\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Album\",\r\n            \"Sort_Predefined\": \"\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Jan 2024 04:37:20 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalTracks\": 44,\n    \"TotalAlbums\": 4,\n    \"TotalLibraries\": 2,\n    \"TotalStyles\": 0,\n    \"TotalPlaylists\": 1,\n    \"SearchParameters\": {\n        \"searchtype\": \"Normal\",\n        \"memberaccount\": \"92662dfe696a497f\",\n        \"region\": \"88f8791e732f07e1\",\n        \"includeinactive\": false,\n        \"mainonly\": true,\n        \"alternativeonly\": false,\n        \"resultview\": {\n            \"view\": \"Album\",\n            \"rankexpression\": \"\",\n            \"skip\": 0,\n            \"limit\": 4,\n            \"saved\": false,\n            \"mincount\": 0,\n            \"returntrackcategoryid\": false,\n            \"facet_album\": false,\n            \"facet_albumskip\": 0,\n            \"facet_albumlimit\": 0,\n            \"facet_library\": true,\n            \"facet_libraryskip\": 0,\n            \"facet_librarylimit\": 0,\n            \"facet_librarysort\": \"Count_Desc\",\n            \"facet_style\": false,\n            \"facet_styleskip\": 0,\n            \"facet_stylelimit\": 0,\n            \"facet_category\": true,\n            \"facet_categoryskip\": 0,\n            \"facet_categorylimit\": 0,\n            \"facet_categorysort\": \"Count_Desc\",\n            \"facet_composer\": false,\n            \"facet_composerskip\": 0,\n            \"facet_composerlimit\": 0,\n            \"bpm_range\": false,\n            \"duration_range\": false,\n            \"include_alternates\": false,\n            \"include_rightholders\": false,\n            \"include_lyrics\": false,\n            \"include_keywords\": false,\n            \"tracks_per_album\": 0,\n            \"facet_bpm\": true,\n            \"facet_duration\": true,\n            \"facet_releaseyear\": false,\n            \"view_style_album_count\": false,\n            \"view_style_playlist_count\": false,\n            \"view_track_categories\": false,\n            \"evoke_prioritizebpm\": false,\n            \"evoke_suppressvocals\": false,\n            \"view_album_assigned_to_style\": false,\n            \"view_playlist_assigned_to_style\": false,\n            \"returnrates\": false\n        },\n        \"nearestduration\": false,\n        \"nearestbpm\": false,\n        \"nearestalternate\": false,\n        \"PreviousSearchTermBundles\": [\n            {\n                \"SearchHistoryID\": 0,\n                \"st_album\": {\n                    \"searchtermid\": 4096,\n                    \"Albums\": \"a2c31cf075f94733,09af5e30c44e89ce,b580300004445d1b,2d42f735db56ea82\",\n                    \"negative\": false\n                }\n            }\n        ]\n    },\n    \"Albums\": [\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"LibraryName\": \"Chalk\",\n            \"ReleaseDate\": \"2018-05-24 00:00:00\",\n            \"Code\": \"CHALK009\",\n            \"Detail\": \"Soaring, emotive, inspiring indie and evolving indie-tinged score, featuring piano and strings\",\n            \"Name\": \"Slow Burn - Building Cinematic Indie (FKA CHALK061/CHALK-CMP904)\",\n            \"DisplayTitle\": \"Slow Burn - Building Cinematic Indie\",\n            \"Keywords\": \"Slow burning, Indie, Strings, Emotive, Building, Uplifting, Emotional\",\n            \"ID\": \"a2c31cf075f94733\",\n            \"TrackCount\": \"15\",\n            \"AlbumRate\": {\n                \"Fee\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"LibraryName\": \"Chalk\",\n            \"ReleaseDate\": \"2018-07-06 00:00:00\",\n            \"Code\": \"CHALK012\",\n            \"Detail\": \"Downtempo mellow folk-inflected tracks full of warmth, for a relaxed pace of life\",\n            \"Name\": \"Warmhearted - Easygoing Acoustic Folk (FKA CHALK066/CHALK-CMP903)\",\n            \"DisplayTitle\": \"Warmhearted - Easygoing Acoustic Folk\",\n            \"Keywords\": \"Downtempo, mellow, warm, folk, acoustic, acoustic guitar, slow, relaxed, pastoral, nature, content, warm heart, warmheart, warmhearted\",\n            \"ID\": \"09af5e30c44e89ce\",\n            \"TrackCount\": \"14\",\n            \"AlbumRate\": {\n                \"Fee\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"LibraryName\": \"Chalk\",\n            \"ReleaseDate\": \"2018-04-20 00:00:00\",\n            \"Code\": \"CHALK008\",\n            \"Detail\": \"Beautifully crafted and intimate neo-classical pop, packed full with emotion, raw live strings and stunning vocal performances\",\n            \"Name\": \"Raw Beauty - Emotive Neo-Classical Pop\",\n            \"DisplayTitle\": \"Raw Beauty - Emotive Neo-Classical Pop\",\n            \"Keywords\": \"Sad,emotive,reflective,emotional\",\n            \"ID\": \"b580300004445d1b\",\n            \"TrackCount\": \"13\",\n            \"AlbumRate\": {\n                \"Fee\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"c15dbefad30a4f8f\",\n            \"LibraryName\": \"Cloud Search\",\n            \"ReleaseDate\": \"2017-08-11 00:00:00\",\n            \"Code\": \"TEST000\",\n            \"Detail\": \"Version 3.0 LIVE\",\n            \"Name\": \"Contol Ingestion Test\",\n            \"DisplayTitle\": \"TEST000 Contol Ingestion Test\",\n            \"Keywords\": \"Album Keyword test 01\",\n            \"ID\": \"2d42f735db56ea82\",\n            \"TrackCount\": \"2\",\n            \"AlbumRate\": {\n                \"Fee\": 0\n            }\n        }\n    ],\n    \"Facets\": {\n        \"Libraries\": {\n            \"Items\": [\n                {\n                    \"ID\": \"4d220d57f9cce7c3\",\n                    \"Name\": \"Chalk\",\n                    \"Count\": 3\n                },\n                {\n                    \"ID\": \"c15dbefad30a4f8f\",\n                    \"Name\": \"Cloud Search\",\n                    \"Count\": 1\n                }\n            ]\n        },\n        \"BPM\": {\n            \"Min\": 0,\n            \"Max\": 200\n        },\n        \"Duration\": {\n            \"Min\": 4,\n            \"Max\": 310\n        }\n    },\n    \"UseDatabase\": true,\n    \"CloudSearchUrl\": \"https://search-hmp-search-24zwocirxbv4dnevoubyazqubi.us-east-1.cloudsearch.amazonaws.com/2011-02-01/search?bq=(and env:'S' acctid:371 type:1 stu:1 (not isalt:1..) rgn:'345' (or aid:98981 aid:103189 aid:124465 aid:176158) bug:'bug')&size=0&facet-aid_f-sort=-max(generic)&facet=aid_f&facet-aid_f-top-n=32767&facet=lid_f&facet-lid_f-top-n=32767&facet=stl&facet-stl-top-n=32767&facet=pll_f&facet-pll_f-top-n=32767&facet=cat_f&facet-cat_f-top-n=32767&facet=bpm&facet-bpm-top-n=32767&facet=dur&facet-dur-top-n=32767\"\n}"},{"id":"99976a35-9d28-496f-af36-9bd9b7882e71","name":"Get Search Default (Libraries)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"ReturnCSUrl\": \"true\",\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"ST_Library\": {\r\n                \"Libraries\": \"4d220d57f9cce7c3,c15dbefad30a4f8f\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Library\",\r\n            \"Sort_Predefined\": \"\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"100\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Jan 2024 04:47:33 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalTracks\": 202,\n    \"TotalAlbums\": 15,\n    \"TotalLibraries\": 2,\n    \"TotalStyles\": 0,\n    \"TotalPlaylists\": 1,\n    \"SearchParameters\": {\n        \"searchtype\": \"Normal\",\n        \"memberaccount\": \"92662dfe696a497f\",\n        \"region\": \"88f8791e732f07e1\",\n        \"includeinactive\": false,\n        \"mainonly\": true,\n        \"alternativeonly\": false,\n        \"resultview\": {\n            \"view\": \"Library\",\n            \"rankexpression\": \"\",\n            \"skip\": 0,\n            \"limit\": 2,\n            \"saved\": false,\n            \"mincount\": 0,\n            \"returntrackcategoryid\": false,\n            \"facet_album\": false,\n            \"facet_albumskip\": 0,\n            \"facet_albumlimit\": 0,\n            \"facet_library\": true,\n            \"facet_libraryskip\": 0,\n            \"facet_librarylimit\": 0,\n            \"facet_librarysort\": \"Count_Desc\",\n            \"facet_style\": false,\n            \"facet_styleskip\": 0,\n            \"facet_stylelimit\": 0,\n            \"facet_category\": true,\n            \"facet_categoryskip\": 0,\n            \"facet_categorylimit\": 0,\n            \"facet_categorysort\": \"Count_Desc\",\n            \"facet_composer\": false,\n            \"facet_composerskip\": 0,\n            \"facet_composerlimit\": 0,\n            \"bpm_range\": false,\n            \"duration_range\": false,\n            \"include_alternates\": false,\n            \"include_rightholders\": false,\n            \"include_lyrics\": false,\n            \"include_keywords\": false,\n            \"tracks_per_album\": 0,\n            \"facet_bpm\": true,\n            \"facet_duration\": true,\n            \"facet_releaseyear\": false,\n            \"view_style_album_count\": false,\n            \"view_style_playlist_count\": false,\n            \"view_track_categories\": false,\n            \"evoke_prioritizebpm\": false,\n            \"evoke_suppressvocals\": false,\n            \"view_album_assigned_to_style\": false,\n            \"view_playlist_assigned_to_style\": false,\n            \"returnrates\": false\n        },\n        \"nearestduration\": false,\n        \"nearestbpm\": false,\n        \"nearestalternate\": false,\n        \"PreviousSearchTermBundles\": [\n            {\n                \"SearchHistoryID\": 0,\n                \"st_library\": {\n                    \"searchtermid\": 131072,\n                    \"Libraries\": \"4d220d57f9cce7c3,c15dbefad30a4f8f\",\n                    \"negative\": false\n                }\n            }\n        ]\n    },\n    \"Libraries\": [\n        {\n            \"AlbumCount\": 14,\n            \"TrackCount\": 0,\n            \"Featured\": false,\n            \"Detail\": \"\",\n            \"Name\": \"Chalk\",\n            \"ID\": \"4d220d57f9cce7c3\"\n        },\n        {\n            \"AlbumCount\": 1,\n            \"TrackCount\": 0,\n            \"Featured\": false,\n            \"Detail\": \"Testing ingestion and lalo other post ingestion functions for cloud search \",\n            \"Name\": \"Cloud Search\",\n            \"ID\": \"c15dbefad30a4f8f\"\n        }\n    ],\n    \"Facets\": {\n        \"Libraries\": {\n            \"Items\": [\n                {\n                    \"ID\": \"4d220d57f9cce7c3\",\n                    \"Name\": \"Chalk\",\n                    \"Count\": 14\n                },\n                {\n                    \"ID\": \"c15dbefad30a4f8f\",\n                    \"Name\": \"Cloud Search\",\n                    \"Count\": 1\n                }\n            ]\n        },\n        \"BPM\": {\n            \"Min\": 0,\n            \"Max\": 200\n        },\n        \"Duration\": {\n            \"Min\": 4,\n            \"Max\": 322\n        }\n    },\n    \"UseDatabase\": true,\n    \"CloudSearchUrl\": \"https://search-hmp-search-24zwocirxbv4dnevoubyazqubi.us-east-1.cloudsearch.amazonaws.com/2011-02-01/search?bq=(and env:'S' acctid:371 type:1 stu:1 (not isalt:1..) rgn:'345' (or lid:1379 lid:2422) bug:'bug')&size=0&facet-lid_f-sort=-max(generic)&facet=aid_f&facet-aid_f-top-n=32767&facet=lid_f&facet-lid_f-top-n=32767&facet=stl&facet-stl-top-n=32767&facet=pll_f&facet-pll_f-top-n=32767&facet=cat_f&facet-cat_f-top-n=32767&facet=bpm&facet-bpm-top-n=32767&facet=dur&facet-dur-top-n=32767\"\n}"}],"_postman_id":"82d2cf4a-ef91-4919-94c5-60145ee33535"},{"name":"Get Search Custom","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"36c9eae9-b5f1-4d60-a43b-fb439aad2aa3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"true\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword\": {\r\n                \"Fields\": \"TrackDisplayTitle, TrackKeywords, AlbumTitle, AlbumKeywords\",\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"true\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"pop\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"83d59344-03a5-407b-a216-d81d0458321b","name":"Get Search Custom","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"true\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"0ea86ad669d190fad6d113d51795594f\",\r\n            \"PreviousSearchTermBundles\": [\r\n                {\r\n                    \"SearchHistoryID\": 90164934,\r\n                    \"St_Keyword\": {\r\n                        \"SearchTermID\": 2,\r\n                        \"Fields\": \"TrackDisplayTitle\",\r\n                        \"Keywords\": \"i'm the boss of me\",\r\n                        \"Negative\": false,\r\n                        \"ExactPhrase\": false,\r\n                        \"OrOperation\": false,\r\n                        \"Wildcard\": false,\r\n                        \"DisableKeywordGroup\": false\r\n                    }\r\n                }\r\n            ],\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 14 Mar 2025 05:40:45 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalTracks\": 1,\n    \"TotalAlbums\": 1,\n    \"TotalLibraries\": 1,\n    \"TotalStyles\": 0,\n    \"TotalPlaylists\": 2,\n    \"SearchParameters\": {\n        \"searchtype\": \"Normal\",\n        \"memberaccount\": \"37555a2865fc92d3\",\n        \"region\": \"ec814d40535b3d2c\",\n        \"includeinactive\": false,\n        \"mainonly\": true,\n        \"alternateonly\": false,\n        \"parentsearchhistoryid\": \"0ea86ad669d190fad6d113d51795594f\",\n        \"resultview\": {\n            \"view\": \"Track\",\n            \"sort_predefined\": \"ReleaseDate_Desc\",\n            \"rankexpression\": \"\",\n            \"skip\": 0,\n            \"limit\": 10,\n            \"saved\": false,\n            \"mincount\": 0,\n            \"returntrackcategoryid\": false,\n            \"facet_album\": false,\n            \"facet_albumskip\": 0,\n            \"facet_albumlimit\": 0,\n            \"facet_library\": true,\n            \"facet_libraryskip\": 0,\n            \"facet_librarylimit\": 0,\n            \"facet_librarysort\": \"Count_Desc\",\n            \"facet_style\": false,\n            \"facet_styleskip\": 0,\n            \"facet_stylelimit\": 0,\n            \"facet_category\": true,\n            \"facet_categoryskip\": 0,\n            \"facet_categorylimit\": 0,\n            \"facet_categorysort\": \"Count_Desc\",\n            \"facet_composer\": false,\n            \"facet_composerskip\": 0,\n            \"facet_composerlimit\": 0,\n            \"bpm_range\": false,\n            \"duration_range\": false,\n            \"include_alternates\": false,\n            \"include_rightholders\": false,\n            \"include_lyrics\": false,\n            \"include_keywords\": false,\n            \"tracks_per_album\": 0,\n            \"facet_bpm\": true,\n            \"facet_duration\": true,\n            \"facet_releaseyear\": false,\n            \"view_style_album_count\": false,\n            \"view_style_playlist_count\": false,\n            \"view_track_categories\": false,\n            \"evoke_prioritizebpm\": false,\n            \"evoke_suppressvocals\": false,\n            \"view_album_assigned_to_style\": false,\n            \"view_playlist_assigned_to_style\": false,\n            \"returnrates\": false\n        },\n        \"nearestduration\": false,\n        \"nearestbpm\": false,\n        \"nearestalternate\": false,\n        \"LibraryType\": \"\",\n        \"PreviousSearchTermBundles\": [\n            {\n                \"SearchHistoryID\": 90164934,\n                \"st_keyword\": {\n                    \"searchtermid\": 2,\n                    \"fields\": \"TrackDisplayTitle\",\n                    \"Keywords\": \"i'm the boss of me\",\n                    \"exactphrase\": false,\n                    \"oroperation\": false,\n                    \"wildcard\": false,\n                    \"disablekeywordgroup\": false,\n                    \"negative\": false\n                }\n            }\n        ]\n    },\n    \"Tracks\": [\n        {\n            \"TrackNumber\": \"001\",\n            \"LengthSeconds\": \"109\",\n            \"Comment\": \"Empowerment anthem? Pure Pop Perfection? One woman who can't stop singing the word 'OH', like, a thousand times? #ALLTHEABOVE. Plucky piano and voices start us down the road of spunky self-determination, while the hand claps and 'heys' of your squad (along with the synthesizers of your nerds) provide additional motivation. Happy, fun and proudly-80s-influenced. Knowingly cheesy guitars kick off the second half, which begs to have some kind of montage behind it in which someone is wearing sweatbands and doing sit-ups repeatedly for no clear reason. Inspirational, catchy and uplifting with a bouncy beat- what else do you want? ASIDE FROM THE SINGER TO STOP SINGING THE WORD 'OH'.\",\n            \"Composer\": \"Bojan Dugic (ASCAP)\",\n            \"Publisher\": \"VideoHelper\",\n            \"Artist\": \"Bojan Dugic\",\n            \"Name\": \"I'm The Boss Of Me (MAIN)\",\n            \"AlbumID\": \"412b66d06a9c3b1b\",\n            \"LibraryID\": \"3a6016b420fa5e7f\",\n            \"ID\": \"a759b664bc555877\",\n            \"Keywords\": \"\",\n            \"DisplayTitle\": \"I'm The Boss Of Me (MAIN)\",\n            \"alternatetitle\": \"\",\n            \"Genre\": \"Pop, Adult Contemporary, Indie Pop\",\n            \"Instrumentation\": \"Tom Toms, Female Vocals, Synthesizer, Electric Guitar, Drum Kit, Hand Claps\",\n            \"Bpm\": \"116\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"VH058\",\n            \"AlbumName\": \"PopShop\",\n            \"LibraryName\": \"VideoHelper\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"2\",\n            \"RightHolderIDs\": [\n                {\n                    \"ID\": \"cbd85fbf26e2f044\"\n                },\n                {\n                    \"ID\": \"7c4df29de8aa7022\"\n                },\n                {\n                    \"ID\": \"57f0f149029cc5da\"\n                }\n            ],\n            \"RightHolders\": [\n                {\n                    \"ID\": \"\",\n                    \"Name\": \"Bojan Dugic\",\n                    \"Capacity\": \"Artist\"\n                }\n            ],\n            \"Mood\": \"Determined, Feelgood, Happy, Positive, Proud, Uplifting, Blissful, Light\",\n            \"MusicFor\": \"Corporate, Inspiration, Futuristic, Innovation, Children, Family, Medical, tender Moments, Empowerment, News, Sports, Hopes, Achievement, Sports Highlights\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"I'm The Boss Of Me (MAIN)\",\n            \"AlbumTitle\": \"PopShop\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"ReleaseDate\": \"2016-09-07 00:00:00\",\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"LibraryType\": \"Music\",\n            \"TrackRate\": {\n                \"Fee\": 0,\n                \"FeeWithTax\": 0\n            },\n            \"IsNearestBestMatch\": false\n        }\n    ],\n    \"Facets\": {\n        \"Libraries\": {\n            \"Items\": [\n                {\n                    \"ID\": \"3a6016b420fa5e7f\",\n                    \"Name\": \"VideoHelper\",\n                    \"Count\": 1\n                }\n            ]\n        },\n        \"Categories\": {\n            \"Items\": [\n                {\n                    \"ID\": \"a47a9908546399a3\",\n                    \"ParentID\": \"c3d44de2321d04f6\",\n                    \"Name\": \"Adult Contemporary\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"be0fc2b761c5edd1\",\n                    \"ParentID\": \"7673585f736574aa\",\n                    \"Name\": \"Blissful\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"96d0f6e9c8c3065b\",\n                    \"ParentID\": \"d0aed6133aab30e7\",\n                    \"Name\": \"Breakthroughs\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"c7fc0fc2873904b7\",\n                    \"ParentID\": \"d0aed6133aab30e7\",\n                    \"Name\": \"Bright/Optimistic\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"444e7abd8ea1222d\",\n                    \"ParentID\": \"d0aed6133aab30e7\",\n                    \"Name\": \"Children/Family\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"8ccf51dc6456d7e0\",\n                    \"ParentID\": \"d0aed6133aab30e7\",\n                    \"Name\": \"Corporate\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"204374928c5ee46e\",\n                    \"ParentID\": \"d0aed6133aab30e7\",\n                    \"Name\": \"Cure for Cancer\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"112b6364f60b946d\",\n                    \"ParentID\": \"c3d44de2321d04f6\",\n                    \"Name\": \"Dance Pop\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"35bbf3a7cd427fe2\",\n                    \"ParentID\": \"7673585f736574aa\",\n                    \"Name\": \"Determined\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"181f06f1b08d684e\",\n                    \"ParentID\": \"2a77634cad81869f\",\n                    \"Name\": \"Electric Guitar\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"62988a8218c575b3\",\n                    \"ParentID\": \"c3d44de2321d04f6\",\n                    \"Name\": \"Electro Pop / Synth Pop\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"2e5f399d4e859d84\",\n                    \"ParentID\": \"c3d44de2321d04f6\",\n                    \"Name\": \"Electronic / Dance\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"aff1bf52992f3994\",\n                    \"ParentID\": \"9d5d0059dd33f6b7\",\n                    \"Name\": \"F\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"8308f475fd598870\",\n                    \"ParentID\": \"7673585f736574aa\",\n                    \"Name\": \"Feelgood\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"5496b9014e9ccf3d\",\n                    \"ParentID\": \"2a77634cad81869f\",\n                    \"Name\": \"Female Vocals\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"1606475d3f5e0f37\",\n                    \"ParentID\": \"d0aed6133aab30e7\",\n                    \"Name\": \"Film/TV\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"128d9fbc05a13d76\",\n                    \"ParentID\": \"d0aed6133aab30e7\",\n                    \"Name\": \"Got the Gold\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"15590d2dd1aac74f\",\n                    \"ParentID\": \"2a77634cad81869f\",\n                    \"Name\": \"Guitar\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"a3acef4b3264fd94\",\n                    \"ParentID\": \"2a77634cad81869f\",\n                    \"Name\": \"Hand Claps\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"ff6e2fc4bb64f64a\",\n                    \"ParentID\": \"7673585f736574aa\",\n                    \"Name\": \"Happy\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"773f855bbf023452\",\n                    \"ParentID\": \"d0aed6133aab30e7\",\n                    \"Name\": \"Health/Medical\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"f2d253d6b18eff87\",\n                    \"ParentID\": \"c3d44de2321d04f6\",\n                    \"Name\": \"Indie Pop\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"f1bd966862a5afcc\",\n                    \"ParentID\": \"d0aed6133aab30e7\",\n                    \"Name\": \"Inspired Stories\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"38f21277f8caf471\",\n                    \"ParentID\": \"2a77634cad81869f\",\n                    \"Name\": \"Keyboards\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"c07836493be5f837\",\n                    \"ParentID\": \"7673585f736574aa\",\n                    \"Name\": \"Light\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"a0ac8410df7f7c6b\",\n                    \"ParentID\": \"fa24bebee2409643\",\n                    \"Name\": \"Medium\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"c0244fb284fa8a0f\",\n                    \"ParentID\": \"d0aed6133aab30e7\",\n                    \"Name\": \"Morning/Light News\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"a3e335a1b7aff1ee\",\n                    \"ParentID\": \"d0aed6133aab30e7\",\n                    \"Name\": \"News\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"8e1024aa2a6eadd7\",\n                    \"ParentID\": \"d0aed6133aab30e7\",\n                    \"Name\": \"Olympics\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"f812966bfad1e4b4\",\n                    \"ParentID\": \"2a77634cad81869f\",\n                    \"Name\": \"Percussion\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"ab3f4efdef4393c8\",\n                    \"ParentID\": \"2a77634cad81869f\",\n                    \"Name\": \"Percussion - Drums\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"9323dc8bf2e42584\",\n                    \"ParentID\": \"c3d44de2321d04f6\",\n                    \"Name\": \"Pop\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"a8f9f906e6e423cc\",\n                    \"ParentID\": \"c3d44de2321d04f6\",\n                    \"Name\": \"Pop Rock\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"221723c8cee2e4fc\",\n                    \"ParentID\": \"7673585f736574aa\",\n                    \"Name\": \"Positive\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"694813ad6a066f40\",\n                    \"ParentID\": \"7673585f736574aa\",\n                    \"Name\": \"Proud\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"5f9080f6da989ee6\",\n                    \"ParentID\": \"d0aed6133aab30e7\",\n                    \"Name\": \"Recap Montage\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"43a931dad852ae50\",\n                    \"ParentID\": \"d0aed6133aab30e7\",\n                    \"Name\": \"Road to Recovery\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"1b9c2c1daa642998\",\n                    \"ParentID\": \"d0aed6133aab30e7\",\n                    \"Name\": \"Sports\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"87075689aafdf7d5\",\n                    \"ParentID\": \"2a77634cad81869f\",\n                    \"Name\": \"Synthesizer\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"629290e1c84d8ca6\",\n                    \"ParentID\": \"2a77634cad81869f\",\n                    \"Name\": \"Tom Toms\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"464c45dfe6ae2209\",\n                    \"ParentID\": \"7673585f736574aa\",\n                    \"Name\": \"Uplifting\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"45b0d18782ff4c9c\",\n                    \"ParentID\": \"2a77634cad81869f\",\n                    \"Name\": \"Vocals\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"1a2d3fb4aeaa6bdf\",\n                    \"ParentID\": \"d0aed6133aab30e7\",\n                    \"Name\": \"Wake Up Happy\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"9d61c206de96ac6e\",\n                    \"ParentID\": \"d0aed6133aab30e7\",\n                    \"Name\": \"We Are the Future\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"1e81117eb8510c9a\",\n                    \"ParentID\": \"d0aed6133aab30e7\",\n                    \"Name\": \"World Coming Together\",\n                    \"Count\": 1\n                }\n            ]\n        },\n        \"BPM\": {\n            \"Min\": 116,\n            \"Max\": 116\n        },\n        \"Duration\": {\n            \"Min\": 109,\n            \"Max\": 109\n        }\n    },\n    \"UseDatabase\": true,\n    \"CloudSearchUrls\": []\n}"}],"_postman_id":"36c9eae9-b5f1-4d60-a43b-fb439aad2aa3"},{"name":"Get Search Filtered By Keyword","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"4369eec0-539e-4b35-bae6-2a577b062cf6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"true\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"true\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"pop\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4369eec0-539e-4b35-bae6-2a577b062cf6"},{"name":"Get Search Filtered By Label","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"6878b4ca-f902-4f97-b58b-7fdbd315be41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"true\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Library\": {\r\n            \t\"Libraries\": \"a22b13jd6456cf03a1\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6878b4ca-f902-4f97-b58b-7fdbd315be41"},{"name":"Get Search Filtered By Duration","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"25d53139-2e9f-476d-b8c7-4b9c116d3f7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"true\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Duration\": {\r\n                \"Start\": \"30\",\r\n                \"End\": \"120\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"25d53139-2e9f-476d-b8c7-4b9c116d3f7c"},{"name":"Get Search Filtered By Category","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"5cecb58a-ab02-4270-a579-2a3a71538857","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"true\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Category\": {\r\n                \"IDs\": \"ATT_0d122ffdef92b624yh\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5cecb58a-ab02-4270-a579-2a3a71538857"},{"name":"Get Search Filtered By Category with Tracks only","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"a3aa1a2b-8a88-4578-aa59-476f793f4166","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"ReturnCSUrl\": true,\r\n    \"SaveSearchHistory\": \"true\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Category\": {\r\n                \"IDs\": \"ATT_0d122ffdef92b624yh\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"RankExpression\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>When \"Facet_Category\" is set to true, it will return ONLY those categories that are still applicable to the users search.</p>\n<p>We only return those categories that have count &gt; 0 of tracks in the result set. So if a parent has a child category that is count &gt; 0 it will be included BUT if the parent itself is not count &gt; 0 then it will not be included in the response. In other words, we do not provide the full tree - only those that are applicable to the search result.</p>\n<p>To implement this in the UI, Flex will need to loop over the categories panel and hide anything that is not included in the Facet response array.</p>\n<p>The response does not present categories in a nested fashion, it will give you a flat array, so this may require some additional logic on the flex side.</p>\n<p><strong>Note</strong> - calling this only when required is important, as it does have some additional load time when included. So please do not include this in every call - like on the collection pages etc. Only include this on a cloudsearch request that will show the categories panel on screen.  </p>\n<p><strong>Note II</strong> - This response does return the count of results as well which is something you may want to implement.</p>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"2f2bd90f-c35c-4719-96cb-bca779419549","name":"Get Search Filtered By Category with Tracks only","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"ReturnCSUrl\": true,\r\n    \"SaveSearchHistory\": \"true\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Category\": {\r\n                \"IDs\": \"ATT_0d122ffdef92b624yh\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"RankExpression\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 23 Oct 2024 22:06:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"Facets\": {\n        \"Categories\": {\n            \"Items\": [\n                {\n                    \"ID\": \"2ad766c014cc92ac\",\n                    \"ParentID\": \"5044ae38e8d1828c\",\n                    \"Name\": \"Animation\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"76a6f23ba2988333\",\n                    \"ParentID\": \"576f346b35a49883\",\n                    \"Name\": \"Bold\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"c708cb1177f17d3c\",\n                    \"ParentID\": \"c5aa3c4494e1ea09\",\n                    \"Name\": \"Brass\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"55787588714783cc\",\n                    \"ParentID\": \"c5aa3c4494e1ea09\",\n                    \"Name\": \"Electric Guitar\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"68eebb32935e5bf4\",\n                    \"ParentID\": \"576f346b35a49883\",\n                    \"Name\": \"Emotional\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"3d18bd1d2e82325d\",\n                    \"ParentID\": \"576f346b35a49883\",\n                    \"Name\": \"Energetic\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"cf5eaa99cc761c2d\",\n                    \"ParentID\": \"576f346b35a49883\",\n                    \"Name\": \"Exciting\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"fa066fe67a228e76\",\n                    \"ParentID\": \"c5aa3c4494e1ea09\",\n                    \"Name\": \"Guitar\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"fe855b0a64a32fac\",\n                    \"ParentID\": \"3b432c935e53283e\",\n                    \"Name\": \"Hard Rock - Metal\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"02ee71c9fe6957b1\",\n                    \"ParentID\": \"576f346b35a49883\",\n                    \"Name\": \"Hopeful\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"b7be98352741b52e\",\n                    \"ParentID\": \"c5aa3c4494e1ea09\",\n                    \"Name\": \"Orchestra\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"bf473a9ae80d406f\",\n                    \"ParentID\": \"3b432c935e53283e\",\n                    \"Name\": \"Rock\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"64761b0db57e6bf6\",\n                    \"ParentID\": \"c5aa3c4494e1ea09\",\n                    \"Name\": \"Strings\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"53e68f10fa608106\",\n                    \"ParentID\": \"c5aa3c4494e1ea09\",\n                    \"Name\": \"Vocals\",\n                    \"Count\": 1\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"a3aa1a2b-8a88-4578-aa59-476f793f4166"},{"name":"Get Search Filtered By BPM","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"22dcd3d8-c3e8-429b-b092-7b2b8f52b516","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"true\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_BPM\": {\r\n                \"Start\": \"30\",\r\n                \"End\": \"120\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"22dcd3d8-c3e8-429b-b092-7b2b8f52b516"},{"name":"Get Search Filtered By Release Year/Date","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"a2b69069-a0b0-44ea-bcb3-362e2fe83fd8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"true\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_ReleaseDate\": {\r\n                \"Start\": \"2024-07-01\",\r\n                \"End\": \"2024-08-01\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a2b69069-a0b0-44ea-bcb3-362e2fe83fd8"},{"name":"Get Search Filtered By Playlist ID","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"3994c6aa-da98-42b2-8ce2-72ec91ee7676","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"ReturnCSUrl\": \"true\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Playlist\": {\r\n                \"Playlists\": \"a552860907153d59\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Playlist\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"100\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"1abb1b94-1a2e-453f-8053-f50df0af2da8","name":"Get Search View By Playlist","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"ReturnCSUrl\": \"true\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"TranslateKeyword\": \"PT\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"false\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"amor\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Playlist\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"100\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Nov 2024 03:49:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalTracks\": 51,\n    \"TotalAlbums\": 7,\n    \"TotalLibraries\": 2,\n    \"TotalStyles\": 0,\n    \"TotalPlaylists\": 0,\n    \"SearchParameters\": {\n        \"searchtype\": \"Normal\",\n        \"memberaccount\": \"f4de818b96013092\",\n        \"region\": \"4dd1c83cbf4d9e83\",\n        \"includeinactive\": false,\n        \"mainonly\": true,\n        \"alternateonly\": false,\n        \"resultview\": {\n            \"view\": \"Playlist\",\n            \"sort_predefined\": \"ReleaseDate_Desc\",\n            \"rankexpression\": \"\",\n            \"skip\": 0,\n            \"limit\": 0,\n            \"saved\": false,\n            \"mincount\": 0,\n            \"returntrackcategoryid\": false,\n            \"facet_album\": false,\n            \"facet_albumskip\": 0,\n            \"facet_albumlimit\": 0,\n            \"facet_library\": true,\n            \"facet_libraryskip\": 0,\n            \"facet_librarylimit\": 0,\n            \"facet_librarysort\": \"Count_Desc\",\n            \"facet_style\": false,\n            \"facet_styleskip\": 0,\n            \"facet_stylelimit\": 0,\n            \"facet_category\": true,\n            \"facet_categoryskip\": 0,\n            \"facet_categorylimit\": 0,\n            \"facet_categorysort\": \"Count_Desc\",\n            \"facet_composer\": false,\n            \"facet_composerskip\": 0,\n            \"facet_composerlimit\": 0,\n            \"bpm_range\": false,\n            \"duration_range\": false,\n            \"include_alternates\": false,\n            \"include_rightholders\": false,\n            \"include_lyrics\": false,\n            \"include_keywords\": false,\n            \"tracks_per_album\": 0,\n            \"facet_bpm\": true,\n            \"facet_duration\": true,\n            \"facet_releaseyear\": false,\n            \"view_style_album_count\": false,\n            \"view_style_playlist_count\": false,\n            \"view_track_categories\": false,\n            \"evoke_prioritizebpm\": false,\n            \"evoke_suppressvocals\": false,\n            \"view_album_assigned_to_style\": false,\n            \"view_playlist_assigned_to_style\": false,\n            \"returnrates\": false\n        },\n        \"nearestduration\": false,\n        \"nearestbpm\": false,\n        \"nearestalternate\": false,\n        \"LibraryType\": \"\",\n        \"translatekeyword\": \"PT\",\n        \"PreviousSearchTermBundles\": [\n            {\n                \"SearchHistoryID\": 0,\n                \"st_keyword_aggregated\": {\n                    \"searchtermid\": 1,\n                    \"searchtermidenc\": \"272f1d66c82967de\",\n                    \"Keywords\": \"amor\",\n                    \"exactphrase\": false,\n                    \"oroperation\": false,\n                    \"wildcard\": false,\n                    \"disablekeywordgroup\": false,\n                    \"negative\": false\n                }\n            }\n        ]\n    },\n    \"Facets\": {\n        \"Libraries\": {\n            \"Items\": [\n                {\n                    \"ID\": \"4a501b8e695ddf01\",\n                    \"Name\": \"AXS Music\",\n                    \"Count\": 6\n                },\n                {\n                    \"ID\": \"731602075b080ab6\",\n                    \"Name\": \"AXS World\",\n                    \"Count\": 1\n                }\n            ]\n        },\n        \"Categories\": {\n            \"Items\": [\n                {\n                    \"ID\": \"7fb1e2a08377405d\",\n                    \"ParentID\": \"942b6482835a507f\",\n                    \"Name\": \"128\",\n                    \"Count\": 50\n                }\n            ]\n        },\n        \"BPM\": {\n            \"Min\": 0,\n            \"Max\": 0\n        },\n        \"Duration\": {\n            \"Min\": 10,\n            \"Max\": 278\n        }\n    },\n    \"UseDatabase\": true,\n    \"CloudSearchUrl\": \"https://search-hmp-search-24zwocirxbv4dnevoubyazqubi.us-east-1.cloudsearch.amazonaws.com/2011-02-01/search?bq=(and env:'D' acctid:420 type:1 stu:1 (not isalt:1..) rgn:'462' (or (and (or (or dtitle:'sweetheart|amor' alttitle:'sweetheart|amor' comm:'sweetheart|amor' gen:'sweetheart|amor' com:'sweetheart|amor' pub:'sweetheart|amor' kwd:'sweetheart|amor' lyr:'sweetheart|amor' ver:'sweetheart|amor' art:'sweetheart|amor' cdc:'sweetheart|amor' atitle:'sweetheart|amor' akwd:'sweetheart|amor' adesc:'sweetheart|amor' lname:'sweetheart|amor' stl_t:'sweetheart|amor' cat_t:'sweetheart|amor' cbt0:'sweetheart|amor' cbt1:'sweetheart|amor' cbt2:'sweetheart|amor' cbt3:'sweetheart|amor' cbt4:'sweetheart|amor' cbt5:'sweetheart|amor' inst:'sweetheart|amor' mood:'sweetheart|amor' musfor:'sweetheart|amor' pll_t:'sweetheart|amor' simto_f:'sweetheart|amor') (or (or simto_f:'sweetheart'))) (or (or dtitle_e:'sweetheart' title_e:'sweetheart' atitle_e:'sweetheart' aname_e:'sweetheart' pete:'pete')))) bug:'bug')&size=0&facet-pll_f-sort=-max(sort_rdt_atitle)&facet=aid_f&facet-aid_f-top-n=32767&facet=lid_f&facet-lid_f-top-n=32767&facet=stl&facet-stl-top-n=32767&facet=pll_f&facet-pll_f-top-n=32767&facet=cat_f&facet-cat_f-top-n=32767&facet=bpm&facet-bpm-top-n=32767&facet=dur&facet-dur-top-n=32767\",\n    \"CloudSearchUrls\": [\n        {\n            \"Url\": \"https://search-hmp-search-24zwocirxbv4dnevoubyazqubi.us-east-1.cloudsearch.amazonaws.com/2011-02-01/search?bq=(and env:'D' acctid:420 type:1 stu:1 (not isalt:1..) rgn:'462' (or (and (or (or dtitle:'sweetheart|amor' alttitle:'sweetheart|amor' comm:'sweetheart|amor' gen:'sweetheart|amor' com:'sweetheart|amor' pub:'sweetheart|amor' kwd:'sweetheart|amor' lyr:'sweetheart|amor' ver:'sweetheart|amor' art:'sweetheart|amor' cdc:'sweetheart|amor' atitle:'sweetheart|amor' akwd:'sweetheart|amor' adesc:'sweetheart|amor' lname:'sweetheart|amor' stl_t:'sweetheart|amor' cat_t:'sweetheart|amor' cbt0:'sweetheart|amor' cbt1:'sweetheart|amor' cbt2:'sweetheart|amor' cbt3:'sweetheart|amor' cbt4:'sweetheart|amor' cbt5:'sweetheart|amor' inst:'sweetheart|amor' mood:'sweetheart|amor' musfor:'sweetheart|amor' pll_t:'sweetheart|amor' simto_f:'sweetheart|amor') (or (or simto_f:'sweetheart'))) (or (or dtitle_e:'sweetheart' title_e:'sweetheart' atitle_e:'sweetheart' aname_e:'sweetheart' pete:'pete')))) bug:'bug')&size=0&facet-pll_f-sort=-max(sort_rdt_atitle)&facet=aid_f&facet-aid_f-top-n=32767&facet=lid_f&facet-lid_f-top-n=32767&facet=stl&facet-stl-top-n=32767&facet=pll_f&facet-pll_f-top-n=32767&facet=cat_f&facet-cat_f-top-n=32767&facet=bpm&facet-bpm-top-n=32767&facet=dur&facet-dur-top-n=32767\",\n            \"SecondaryCall\": false\n        }\n    ]\n}"}],"_postman_id":"3994c6aa-da98-42b2-8ce2-72ec91ee7676"},{"name":"Get Search View By Album","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"162a1bde-d49e-4925-a68e-2e31bc61e96e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"true\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"pop\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Album\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"162a1bde-d49e-4925-a68e-2e31bc61e96e"},{"name":"Get Search View By Album - Album Expanded","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"84e4bfec-7ae5-4c8c-8b0d-c9deadcfc448","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"PreviousSearchTermBundles\": [\r\n            {\r\n                \"SearchHistoryID\": 11676466,\r\n                \"St_Keyword_Aggregated\": {\r\n                    \"ExactPhrase\": \"false\",\r\n                    \"Wildcard\": \"true\",\r\n                    \"DisableKeywordGroup\": \"false\",\r\n                    \"OrOperation\": \"false\",\r\n                    \"Keywords\": \"pop\",\r\n                    \"Negative\": \"false\"\r\n                }\r\n            }\r\n        ],\r\n        \"SearchTermBundle\": {\r\n            \"St_Album\": {\r\n                \"Albums\": \"g56ed5590ha8c7c34d\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"84e4bfec-7ae5-4c8c-8b0d-c9deadcfc448"},{"name":"Get Search View By Album, By StyleGroupID","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"52b2fb8a-09cc-4edb-8148-df2e89249548","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"true\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_StyleGroup\": {\r\n                \"Stylegroups\": \"46809e2c4981a428\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Album\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"52b2fb8a-09cc-4edb-8148-df2e89249548"},{"name":"Get Search View By Playlist","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"3f1211d2-b149-4f22-aef5-55d7d45f09ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"ReturnCSUrl\": \"true\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"false\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"%\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Playlist\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"100\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"cf372000-73e0-4383-8f96-24e53f9924fa","name":"Get Search View By Playlist","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"ReturnCSUrl\": \"true\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"TranslateKeyword\": \"PT\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"false\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"amor\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Playlist\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"100\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Nov 2024 03:49:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalTracks\": 51,\n    \"TotalAlbums\": 7,\n    \"TotalLibraries\": 2,\n    \"TotalStyles\": 0,\n    \"TotalPlaylists\": 0,\n    \"SearchParameters\": {\n        \"searchtype\": \"Normal\",\n        \"memberaccount\": \"f4de818b96013092\",\n        \"region\": \"4dd1c83cbf4d9e83\",\n        \"includeinactive\": false,\n        \"mainonly\": true,\n        \"alternateonly\": false,\n        \"resultview\": {\n            \"view\": \"Playlist\",\n            \"sort_predefined\": \"ReleaseDate_Desc\",\n            \"rankexpression\": \"\",\n            \"skip\": 0,\n            \"limit\": 0,\n            \"saved\": false,\n            \"mincount\": 0,\n            \"returntrackcategoryid\": false,\n            \"facet_album\": false,\n            \"facet_albumskip\": 0,\n            \"facet_albumlimit\": 0,\n            \"facet_library\": true,\n            \"facet_libraryskip\": 0,\n            \"facet_librarylimit\": 0,\n            \"facet_librarysort\": \"Count_Desc\",\n            \"facet_style\": false,\n            \"facet_styleskip\": 0,\n            \"facet_stylelimit\": 0,\n            \"facet_category\": true,\n            \"facet_categoryskip\": 0,\n            \"facet_categorylimit\": 0,\n            \"facet_categorysort\": \"Count_Desc\",\n            \"facet_composer\": false,\n            \"facet_composerskip\": 0,\n            \"facet_composerlimit\": 0,\n            \"bpm_range\": false,\n            \"duration_range\": false,\n            \"include_alternates\": false,\n            \"include_rightholders\": false,\n            \"include_lyrics\": false,\n            \"include_keywords\": false,\n            \"tracks_per_album\": 0,\n            \"facet_bpm\": true,\n            \"facet_duration\": true,\n            \"facet_releaseyear\": false,\n            \"view_style_album_count\": false,\n            \"view_style_playlist_count\": false,\n            \"view_track_categories\": false,\n            \"evoke_prioritizebpm\": false,\n            \"evoke_suppressvocals\": false,\n            \"view_album_assigned_to_style\": false,\n            \"view_playlist_assigned_to_style\": false,\n            \"returnrates\": false\n        },\n        \"nearestduration\": false,\n        \"nearestbpm\": false,\n        \"nearestalternate\": false,\n        \"LibraryType\": \"\",\n        \"translatekeyword\": \"PT\",\n        \"PreviousSearchTermBundles\": [\n            {\n                \"SearchHistoryID\": 0,\n                \"st_keyword_aggregated\": {\n                    \"searchtermid\": 1,\n                    \"searchtermidenc\": \"272f1d66c82967de\",\n                    \"Keywords\": \"amor\",\n                    \"exactphrase\": false,\n                    \"oroperation\": false,\n                    \"wildcard\": false,\n                    \"disablekeywordgroup\": false,\n                    \"negative\": false\n                }\n            }\n        ]\n    },\n    \"Facets\": {\n        \"Libraries\": {\n            \"Items\": [\n                {\n                    \"ID\": \"4a501b8e695ddf01\",\n                    \"Name\": \"AXS Music\",\n                    \"Count\": 6\n                },\n                {\n                    \"ID\": \"731602075b080ab6\",\n                    \"Name\": \"AXS World\",\n                    \"Count\": 1\n                }\n            ]\n        },\n        \"Categories\": {\n            \"Items\": [\n                {\n                    \"ID\": \"7fb1e2a08377405d\",\n                    \"ParentID\": \"942b6482835a507f\",\n                    \"Name\": \"128\",\n                    \"Count\": 50\n                }\n            ]\n        },\n        \"BPM\": {\n            \"Min\": 0,\n            \"Max\": 0\n        },\n        \"Duration\": {\n            \"Min\": 10,\n            \"Max\": 278\n        }\n    },\n    \"UseDatabase\": true,\n    \"CloudSearchUrl\": \"https://search-hmp-search-24zwocirxbv4dnevoubyazqubi.us-east-1.cloudsearch.amazonaws.com/2011-02-01/search?bq=(and env:'D' acctid:420 type:1 stu:1 (not isalt:1..) rgn:'462' (or (and (or (or dtitle:'sweetheart|amor' alttitle:'sweetheart|amor' comm:'sweetheart|amor' gen:'sweetheart|amor' com:'sweetheart|amor' pub:'sweetheart|amor' kwd:'sweetheart|amor' lyr:'sweetheart|amor' ver:'sweetheart|amor' art:'sweetheart|amor' cdc:'sweetheart|amor' atitle:'sweetheart|amor' akwd:'sweetheart|amor' adesc:'sweetheart|amor' lname:'sweetheart|amor' stl_t:'sweetheart|amor' cat_t:'sweetheart|amor' cbt0:'sweetheart|amor' cbt1:'sweetheart|amor' cbt2:'sweetheart|amor' cbt3:'sweetheart|amor' cbt4:'sweetheart|amor' cbt5:'sweetheart|amor' inst:'sweetheart|amor' mood:'sweetheart|amor' musfor:'sweetheart|amor' pll_t:'sweetheart|amor' simto_f:'sweetheart|amor') (or (or simto_f:'sweetheart'))) (or (or dtitle_e:'sweetheart' title_e:'sweetheart' atitle_e:'sweetheart' aname_e:'sweetheart' pete:'pete')))) bug:'bug')&size=0&facet-pll_f-sort=-max(sort_rdt_atitle)&facet=aid_f&facet-aid_f-top-n=32767&facet=lid_f&facet-lid_f-top-n=32767&facet=stl&facet-stl-top-n=32767&facet=pll_f&facet-pll_f-top-n=32767&facet=cat_f&facet-cat_f-top-n=32767&facet=bpm&facet-bpm-top-n=32767&facet=dur&facet-dur-top-n=32767\",\n    \"CloudSearchUrls\": [\n        {\n            \"Url\": \"https://search-hmp-search-24zwocirxbv4dnevoubyazqubi.us-east-1.cloudsearch.amazonaws.com/2011-02-01/search?bq=(and env:'D' acctid:420 type:1 stu:1 (not isalt:1..) rgn:'462' (or (and (or (or dtitle:'sweetheart|amor' alttitle:'sweetheart|amor' comm:'sweetheart|amor' gen:'sweetheart|amor' com:'sweetheart|amor' pub:'sweetheart|amor' kwd:'sweetheart|amor' lyr:'sweetheart|amor' ver:'sweetheart|amor' art:'sweetheart|amor' cdc:'sweetheart|amor' atitle:'sweetheart|amor' akwd:'sweetheart|amor' adesc:'sweetheart|amor' lname:'sweetheart|amor' stl_t:'sweetheart|amor' cat_t:'sweetheart|amor' cbt0:'sweetheart|amor' cbt1:'sweetheart|amor' cbt2:'sweetheart|amor' cbt3:'sweetheart|amor' cbt4:'sweetheart|amor' cbt5:'sweetheart|amor' inst:'sweetheart|amor' mood:'sweetheart|amor' musfor:'sweetheart|amor' pll_t:'sweetheart|amor' simto_f:'sweetheart|amor') (or (or simto_f:'sweetheart'))) (or (or dtitle_e:'sweetheart' title_e:'sweetheart' atitle_e:'sweetheart' aname_e:'sweetheart' pete:'pete')))) bug:'bug')&size=0&facet-pll_f-sort=-max(sort_rdt_atitle)&facet=aid_f&facet-aid_f-top-n=32767&facet=lid_f&facet-lid_f-top-n=32767&facet=stl&facet-stl-top-n=32767&facet=pll_f&facet-pll_f-top-n=32767&facet=cat_f&facet-cat_f-top-n=32767&facet=bpm&facet-bpm-top-n=32767&facet=dur&facet-dur-top-n=32767\",\n            \"SecondaryCall\": false\n        }\n    ]\n}"}],"_postman_id":"3f1211d2-b149-4f22-aef5-55d7d45f09ca"},{"name":"Get Search View By Playlist Multi-lingual","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"1c8e2be4-2788-48b8-9fcf-48f63fb20614","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"ReturnCSUrl\": \"true\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"TranslateKeyword\": \"ES\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"false\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"%\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Playlist\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"100\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>Add \"KeywordLanguage\" to the request with the languageISO 639-1 two-letter code that the keyword will be translated to.</p>\n<p>Example, if the input is a portuguese word \"amor\" (love, in English), then the request keyword should be \"amor\" and the KeywordLanguage: PT.</p>\n<p>The <strong>ISO 639-1 two-letter language code</strong> uses a pattern of two lowercase letters (<code>xx</code>) to represent a language. Here are some common examples:</p>\n<h3 id=\"common-two-letter-iso-language-codes\"><strong>Common Two-Letter ISO Language Codes</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Language</th>\n<th>Code</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>English</td>\n<td><code>en</code></td>\n</tr>\n<tr>\n<td>Spanish</td>\n<td><code>es</code></td>\n</tr>\n<tr>\n<td>French</td>\n<td><code>fr</code></td>\n</tr>\n<tr>\n<td>German</td>\n<td><code>de</code></td>\n</tr>\n<tr>\n<td>Portuguese</td>\n<td><code>pt</code></td>\n</tr>\n<tr>\n<td>Chinese</td>\n<td><code>zh</code></td>\n</tr>\n<tr>\n<td>Japanese</td>\n<td><code>ja</code></td>\n</tr>\n<tr>\n<td>Russian</td>\n<td><code>ru</code></td>\n</tr>\n<tr>\n<td>Arabic</td>\n<td><code>ar</code></td>\n</tr>\n<tr>\n<td>Italian</td>\n<td><code>it</code></td>\n</tr>\n<tr>\n<td>Dutch</td>\n<td><code>nl</code></td>\n</tr>\n<tr>\n<td>Korean</td>\n<td><code>ko</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"01a2b21a-0ce4-43c1-8eb8-981ed99ed234","name":"Get Search View By Playlist Multi-lingual","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"ReturnCSUrl\": \"true\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"TranslateKeyword\": \"PT\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"false\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"amor\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Playlist\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"100\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Nov 2024 03:49:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalTracks\": 51,\n    \"TotalAlbums\": 7,\n    \"TotalLibraries\": 2,\n    \"TotalStyles\": 0,\n    \"TotalPlaylists\": 0,\n    \"SearchParameters\": {\n        \"searchtype\": \"Normal\",\n        \"memberaccount\": \"f4de818b96013092\",\n        \"region\": \"4dd1c83cbf4d9e83\",\n        \"includeinactive\": false,\n        \"mainonly\": true,\n        \"alternateonly\": false,\n        \"resultview\": {\n            \"view\": \"Playlist\",\n            \"sort_predefined\": \"ReleaseDate_Desc\",\n            \"rankexpression\": \"\",\n            \"skip\": 0,\n            \"limit\": 0,\n            \"saved\": false,\n            \"mincount\": 0,\n            \"returntrackcategoryid\": false,\n            \"facet_album\": false,\n            \"facet_albumskip\": 0,\n            \"facet_albumlimit\": 0,\n            \"facet_library\": true,\n            \"facet_libraryskip\": 0,\n            \"facet_librarylimit\": 0,\n            \"facet_librarysort\": \"Count_Desc\",\n            \"facet_style\": false,\n            \"facet_styleskip\": 0,\n            \"facet_stylelimit\": 0,\n            \"facet_category\": true,\n            \"facet_categoryskip\": 0,\n            \"facet_categorylimit\": 0,\n            \"facet_categorysort\": \"Count_Desc\",\n            \"facet_composer\": false,\n            \"facet_composerskip\": 0,\n            \"facet_composerlimit\": 0,\n            \"bpm_range\": false,\n            \"duration_range\": false,\n            \"include_alternates\": false,\n            \"include_rightholders\": false,\n            \"include_lyrics\": false,\n            \"include_keywords\": false,\n            \"tracks_per_album\": 0,\n            \"facet_bpm\": true,\n            \"facet_duration\": true,\n            \"facet_releaseyear\": false,\n            \"view_style_album_count\": false,\n            \"view_style_playlist_count\": false,\n            \"view_track_categories\": false,\n            \"evoke_prioritizebpm\": false,\n            \"evoke_suppressvocals\": false,\n            \"view_album_assigned_to_style\": false,\n            \"view_playlist_assigned_to_style\": false,\n            \"returnrates\": false\n        },\n        \"nearestduration\": false,\n        \"nearestbpm\": false,\n        \"nearestalternate\": false,\n        \"LibraryType\": \"\",\n        \"translatekeyword\": \"PT\",\n        \"PreviousSearchTermBundles\": [\n            {\n                \"SearchHistoryID\": 0,\n                \"st_keyword_aggregated\": {\n                    \"searchtermid\": 1,\n                    \"searchtermidenc\": \"272f1d66c82967de\",\n                    \"Keywords\": \"amor\",\n                    \"exactphrase\": false,\n                    \"oroperation\": false,\n                    \"wildcard\": false,\n                    \"disablekeywordgroup\": false,\n                    \"negative\": false\n                }\n            }\n        ]\n    },\n    \"Facets\": {\n        \"Libraries\": {\n            \"Items\": [\n                {\n                    \"ID\": \"4a501b8e695ddf01\",\n                    \"Name\": \"AXS Music\",\n                    \"Count\": 6\n                },\n                {\n                    \"ID\": \"731602075b080ab6\",\n                    \"Name\": \"AXS World\",\n                    \"Count\": 1\n                }\n            ]\n        },\n        \"Categories\": {\n            \"Items\": [\n                {\n                    \"ID\": \"7fb1e2a08377405d\",\n                    \"ParentID\": \"942b6482835a507f\",\n                    \"Name\": \"128\",\n                    \"Count\": 50\n                }\n            ]\n        },\n        \"BPM\": {\n            \"Min\": 0,\n            \"Max\": 0\n        },\n        \"Duration\": {\n            \"Min\": 10,\n            \"Max\": 278\n        }\n    },\n    \"UseDatabase\": true,\n    \"CloudSearchUrl\": \"https://search-hmp-search-24zwocirxbv4dnevoubyazqubi.us-east-1.cloudsearch.amazonaws.com/2011-02-01/search?bq=(and env:'D' acctid:420 type:1 stu:1 (not isalt:1..) rgn:'462' (or (and (or (or dtitle:'sweetheart|amor' alttitle:'sweetheart|amor' comm:'sweetheart|amor' gen:'sweetheart|amor' com:'sweetheart|amor' pub:'sweetheart|amor' kwd:'sweetheart|amor' lyr:'sweetheart|amor' ver:'sweetheart|amor' art:'sweetheart|amor' cdc:'sweetheart|amor' atitle:'sweetheart|amor' akwd:'sweetheart|amor' adesc:'sweetheart|amor' lname:'sweetheart|amor' stl_t:'sweetheart|amor' cat_t:'sweetheart|amor' cbt0:'sweetheart|amor' cbt1:'sweetheart|amor' cbt2:'sweetheart|amor' cbt3:'sweetheart|amor' cbt4:'sweetheart|amor' cbt5:'sweetheart|amor' inst:'sweetheart|amor' mood:'sweetheart|amor' musfor:'sweetheart|amor' pll_t:'sweetheart|amor' simto_f:'sweetheart|amor') (or (or simto_f:'sweetheart'))) (or (or dtitle_e:'sweetheart' title_e:'sweetheart' atitle_e:'sweetheart' aname_e:'sweetheart' pete:'pete')))) bug:'bug')&size=0&facet-pll_f-sort=-max(sort_rdt_atitle)&facet=aid_f&facet-aid_f-top-n=32767&facet=lid_f&facet-lid_f-top-n=32767&facet=stl&facet-stl-top-n=32767&facet=pll_f&facet-pll_f-top-n=32767&facet=cat_f&facet-cat_f-top-n=32767&facet=bpm&facet-bpm-top-n=32767&facet=dur&facet-dur-top-n=32767\",\n    \"CloudSearchUrls\": [\n        {\n            \"Url\": \"https://search-hmp-search-24zwocirxbv4dnevoubyazqubi.us-east-1.cloudsearch.amazonaws.com/2011-02-01/search?bq=(and env:'D' acctid:420 type:1 stu:1 (not isalt:1..) rgn:'462' (or (and (or (or dtitle:'sweetheart|amor' alttitle:'sweetheart|amor' comm:'sweetheart|amor' gen:'sweetheart|amor' com:'sweetheart|amor' pub:'sweetheart|amor' kwd:'sweetheart|amor' lyr:'sweetheart|amor' ver:'sweetheart|amor' art:'sweetheart|amor' cdc:'sweetheart|amor' atitle:'sweetheart|amor' akwd:'sweetheart|amor' adesc:'sweetheart|amor' lname:'sweetheart|amor' stl_t:'sweetheart|amor' cat_t:'sweetheart|amor' cbt0:'sweetheart|amor' cbt1:'sweetheart|amor' cbt2:'sweetheart|amor' cbt3:'sweetheart|amor' cbt4:'sweetheart|amor' cbt5:'sweetheart|amor' inst:'sweetheart|amor' mood:'sweetheart|amor' musfor:'sweetheart|amor' pll_t:'sweetheart|amor' simto_f:'sweetheart|amor') (or (or simto_f:'sweetheart'))) (or (or dtitle_e:'sweetheart' title_e:'sweetheart' atitle_e:'sweetheart' aname_e:'sweetheart' pete:'pete')))) bug:'bug')&size=0&facet-pll_f-sort=-max(sort_rdt_atitle)&facet=aid_f&facet-aid_f-top-n=32767&facet=lid_f&facet-lid_f-top-n=32767&facet=stl&facet-stl-top-n=32767&facet=pll_f&facet-pll_f-top-n=32767&facet=cat_f&facet-cat_f-top-n=32767&facet=bpm&facet-bpm-top-n=32767&facet=dur&facet-dur-top-n=32767\",\n            \"SecondaryCall\": false\n        }\n    ]\n}"}],"_postman_id":"1c8e2be4-2788-48b8-9fcf-48f63fb20614"},{"name":"Get Search View By Collection","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"968f69d0-4cf1-434e-baa8-10fc839e527d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"TranslateKeyword\": \"ES\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"true\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"%\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Style\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"View_Style_Album_Count\": \"true\",\r\n            \"View_Style_Playlist_Count\": \"true\",\r\n            \"View_Album_Assigned_To_Style\": \"false\",\r\n            \"View_Playlist_Assigned_To_Style\": \"false\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"968f69d0-4cf1-434e-baa8-10fc839e527d"},{"name":"Get Search View By Collection Multi-lingual","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"dbe61f8e-b9ab-43c2-a17a-74354036287b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"TranslateKeyword\": \"ES\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"true\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"corazón\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Style\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"View_Style_Album_Count\": \"true\",\r\n            \"View_Style_Playlist_Count\": \"true\",\r\n            \"View_Album_Assigned_To_Style\": \"false\",\r\n            \"View_Playlist_Assigned_To_Style\": \"false\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>Add \"KeywordLanguage\" to the request with the languageISO 639-1 two-letter code that the keyword will be translated to.</p>\n<p>Example, if the input is a spanish word \"corazón\" (heart, in English), then the request keyword should be \"corazón\" and the KeywordLanguage: ES.</p>\n<p>The <strong>ISO 639-1 two-letter language code</strong> uses a pattern of two lowercase letters (<code>xx</code>) to represent a language. Here are some common examples:</p>\n<h3 id=\"common-two-letter-iso-language-codes\"><strong>Common Two-Letter ISO Language Codes</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Language</th>\n<th>Code</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>English</td>\n<td><code>en</code></td>\n</tr>\n<tr>\n<td>Spanish</td>\n<td><code>es</code></td>\n</tr>\n<tr>\n<td>French</td>\n<td><code>fr</code></td>\n</tr>\n<tr>\n<td>German</td>\n<td><code>de</code></td>\n</tr>\n<tr>\n<td>Portuguese</td>\n<td><code>pt</code></td>\n</tr>\n<tr>\n<td>Chinese</td>\n<td><code>zh</code></td>\n</tr>\n<tr>\n<td>Japanese</td>\n<td><code>ja</code></td>\n</tr>\n<tr>\n<td>Russian</td>\n<td><code>ru</code></td>\n</tr>\n<tr>\n<td>Arabic</td>\n<td><code>ar</code></td>\n</tr>\n<tr>\n<td>Italian</td>\n<td><code>it</code></td>\n</tr>\n<tr>\n<td>Dutch</td>\n<td><code>nl</code></td>\n</tr>\n<tr>\n<td>Korean</td>\n<td><code>ko</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"1d715e0e-d80a-4fe9-86c6-98e7be61e36e","name":"Get Search View By Collection Multi-lingual","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"TranslateKeyword\": \"ES\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"true\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"corazón\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Style\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"View_Style_Album_Count\": \"true\",\r\n            \"View_Style_Playlist_Count\": \"true\",\r\n            \"View_Album_Assigned_To_Style\": \"false\",\r\n            \"View_Playlist_Assigned_To_Style\": \"false\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Nov 2024 03:57:57 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalTracks\": 15,\n    \"TotalAlbums\": 2,\n    \"TotalLibraries\": 2,\n    \"TotalStyles\": 0,\n    \"TotalPlaylists\": 0,\n    \"SearchParameters\": {\n        \"searchtype\": \"Normal\",\n        \"memberaccount\": \"f4de818b96013092\",\n        \"region\": \"4dd1c83cbf4d9e83\",\n        \"includeinactive\": false,\n        \"mainonly\": true,\n        \"alternateonly\": false,\n        \"resultview\": {\n            \"view\": \"Style\",\n            \"sort_predefined\": \"ReleaseDate_Desc\",\n            \"rankexpression\": \"\",\n            \"skip\": 0,\n            \"limit\": 0,\n            \"saved\": false,\n            \"mincount\": 0,\n            \"returntrackcategoryid\": false,\n            \"facet_album\": false,\n            \"facet_albumskip\": 0,\n            \"facet_albumlimit\": 0,\n            \"facet_library\": true,\n            \"facet_libraryskip\": 0,\n            \"facet_librarylimit\": 0,\n            \"facet_librarysort\": \"Count_Desc\",\n            \"facet_style\": false,\n            \"facet_styleskip\": 0,\n            \"facet_stylelimit\": 0,\n            \"facet_category\": true,\n            \"facet_categoryskip\": 0,\n            \"facet_categorylimit\": 0,\n            \"facet_categorysort\": \"Count_Desc\",\n            \"facet_composer\": false,\n            \"facet_composerskip\": 0,\n            \"facet_composerlimit\": 0,\n            \"bpm_range\": false,\n            \"duration_range\": false,\n            \"include_alternates\": false,\n            \"include_rightholders\": false,\n            \"include_lyrics\": false,\n            \"include_keywords\": false,\n            \"tracks_per_album\": 0,\n            \"facet_bpm\": true,\n            \"facet_duration\": true,\n            \"facet_releaseyear\": false,\n            \"view_style_album_count\": true,\n            \"view_style_playlist_count\": true,\n            \"view_track_categories\": false,\n            \"evoke_prioritizebpm\": false,\n            \"evoke_suppressvocals\": false,\n            \"view_album_assigned_to_style\": false,\n            \"view_playlist_assigned_to_style\": false,\n            \"returnrates\": false\n        },\n        \"nearestduration\": false,\n        \"nearestbpm\": false,\n        \"nearestalternate\": false,\n        \"LibraryType\": \"\",\n        \"translatekeyword\": \"ES\",\n        \"PreviousSearchTermBundles\": [\n            {\n                \"SearchHistoryID\": 0,\n                \"st_keyword_aggregated\": {\n                    \"searchtermid\": 1,\n                    \"searchtermidenc\": \"272f1d66c82967de\",\n                    \"Keywords\": \"corazón\",\n                    \"exactphrase\": false,\n                    \"oroperation\": false,\n                    \"wildcard\": true,\n                    \"disablekeywordgroup\": false,\n                    \"negative\": false\n                }\n            }\n        ]\n    },\n    \"Facets\": {},\n    \"UseDatabase\": false,\n    \"CloudSearchUrls\": []\n}"}],"_postman_id":"dbe61f8e-b9ab-43c2-a17a-74354036287b"},{"name":"Get Search View By CollectionID","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"fbaac86a-835a-4519-b708-27321d430aca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Style\": {\r\n                \"Styles\": \"c7a455eefcff59f8\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Album\",\r\n            \"View_RightHolder_Group\": \"Artist\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"View_Style_Album_Count\": \"false\",\r\n            \"View_Style_Playlist_Count\": \"false\",\r\n            \"View_Album_Assigned_To_Style\": \"true\",\r\n            \"View_Playlist_Assigned_To_Style\": \"false\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"7d6a9174-93e3-418a-908e-a1a4f6b5368f","name":"Get Search View By CollectionID (View by Album)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Style\": {\r\n                \"Styles\": \"c7a455eefcff59f8\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Album\",\r\n            \"View_RightHolder_Group\": \"Artist\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"View_Style_Album_Count\": \"false\",\r\n            \"View_Style_Playlist_Count\": \"false\",\r\n            \"View_Album_Assigned_To_Style\": \"true\",\r\n            \"View_Playlist_Assigned_To_Style\": \"false\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 16 Aug 2024 00:03:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalTracks\": 87,\n    \"TotalAlbums\": 5,\n    \"TotalLibraries\": 1,\n    \"TotalStyles\": 0,\n    \"TotalPlaylists\": 0,\n    \"SearchParameters\": {\n        \"searchtype\": \"Normal\",\n        \"memberaccount\": \"88d37ca9fa6a52cd\",\n        \"region\": \"ec814d40535b3d2c\",\n        \"includeinactive\": false,\n        \"mainonly\": true,\n        \"alternateonly\": false,\n        \"resultview\": {\n            \"view\": \"Album\",\n            \"sort_predefined\": \"ReleaseDate_Desc\",\n            \"rankexpression\": \"\",\n            \"skip\": 0,\n            \"limit\": 5,\n            \"saved\": false,\n            \"mincount\": 0,\n            \"returntrackcategoryid\": false,\n            \"facet_album\": false,\n            \"facet_albumskip\": 0,\n            \"facet_albumlimit\": 0,\n            \"facet_library\": true,\n            \"facet_libraryskip\": 0,\n            \"facet_librarylimit\": 0,\n            \"facet_librarysort\": \"Count_Desc\",\n            \"facet_style\": false,\n            \"facet_styleskip\": 0,\n            \"facet_stylelimit\": 0,\n            \"facet_category\": true,\n            \"facet_categoryskip\": 0,\n            \"facet_categorylimit\": 0,\n            \"facet_categorysort\": \"Count_Desc\",\n            \"facet_composer\": false,\n            \"facet_composerskip\": 0,\n            \"facet_composerlimit\": 0,\n            \"bpm_range\": false,\n            \"duration_range\": false,\n            \"include_alternates\": false,\n            \"include_rightholders\": false,\n            \"include_lyrics\": false,\n            \"include_keywords\": false,\n            \"tracks_per_album\": 0,\n            \"facet_bpm\": true,\n            \"facet_duration\": true,\n            \"facet_releaseyear\": false,\n            \"view_style_album_count\": false,\n            \"view_style_playlist_count\": false,\n            \"view_track_categories\": false,\n            \"evoke_prioritizebpm\": false,\n            \"evoke_suppressvocals\": false,\n            \"view_album_assigned_to_style\": false,\n            \"view_playlist_assigned_to_style\": false,\n            \"returnrates\": false\n        },\n        \"nearestduration\": false,\n        \"nearestbpm\": false,\n        \"nearestalternate\": false,\n        \"LibraryType\": \"\",\n        \"PreviousSearchTermBundles\": [\n            {\n                \"SearchHistoryID\": 0,\n                \"st_style\": {\n                    \"searchtermid\": 524288,\n                    \"Styles\": \"c7a455eefcff59f8\",\n                    \"oroperation\": false,\n                    \"negative\": false\n                }\n            }\n        ]\n    },\n    \"Albums\": [\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"3a6016b420fa5e7f\",\n            \"LibraryName\": \"VideoHelper\",\n            \"ReleaseDate\": \"2022-05-12 00:00:00\",\n            \"Code\": \"VH103\",\n            \"Detail\": \"A collection of positive orchestral/hybrid orchestral tracks good for news, sports and inspiring, uplifting stories.\",\n            \"Name\": \"Determined Nation\",\n            \"DisplayTitle\": \"Determined Nation\",\n            \"Keywords\": \"Dramatic, Determined, Hopeful, Proud, Positive, News, Orchestral\",\n            \"ID\": \"b53752359f33ace1\",\n            \"TrackCount\": \"15\",\n            \"LibraryType\": \"Music\",\n            \"AlbumRate\": {\n                \"Fee\": 0,\n                \"FeeWithTax\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"3a6016b420fa5e7f\",\n            \"LibraryName\": \"VideoHelper\",\n            \"ReleaseDate\": \"2020-10-23 00:00:00\",\n            \"Code\": \"VH092\",\n            \"Detail\": \"A collection of positive, neutral and sometimes combative event music.  Perfect for political campaigns, elections, news, and sports.\",\n            \"Name\": \"Get The Message: Big Events, Politics And Other Contact Sports\",\n            \"DisplayTitle\": \"Get The Message: Big Events, Politics And Other Contact Sports\",\n            \"Keywords\": \"News, Politics, Sports, Events\",\n            \"ID\": \"2b1c4dfee9e344ad\",\n            \"TrackCount\": \"17\",\n            \"LibraryType\": \"Music\",\n            \"AlbumRate\": {\n                \"Fee\": 0,\n                \"FeeWithTax\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"3a6016b420fa5e7f\",\n            \"LibraryName\": \"VideoHelper\",\n            \"ReleaseDate\": \"2019-08-01 00:00:00\",\n            \"Code\": \"VH082\",\n            \"Detail\": \"An important sounding collection of driving, dramatic, inspirational tracks perfect for news, investigations, politics, elections and sports.\",\n            \"Name\": \"Massed Media\",\n            \"DisplayTitle\": \"Massed Media\",\n            \"Keywords\": \"News, Politics, Drama\",\n            \"ID\": \"0adbc9c5aa9f622f\",\n            \"TrackCount\": \"22\",\n            \"LibraryType\": \"Music\",\n            \"AlbumRate\": {\n                \"Fee\": 0,\n                \"FeeWithTax\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"3a6016b420fa5e7f\",\n            \"LibraryName\": \"VideoHelper\",\n            \"ReleaseDate\": \"2016-03-10 00:00:00\",\n            \"Code\": \"VH055\",\n            \"Detail\": \"Dramatic, beat-heavy tracks good for epic sports, face-offs, politics, showdowns, and destroying the competition.\",\n            \"Name\": \"Competitive Drama\",\n            \"DisplayTitle\": \"VH055 Competitive Drama\",\n            \"Keywords\": \"\",\n            \"ID\": \"a6d119c8c451d6e9\",\n            \"TrackCount\": \"18\",\n            \"LibraryType\": \"Music\",\n            \"AlbumRate\": {\n                \"Fee\": 0,\n                \"FeeWithTax\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"3a6016b420fa5e7f\",\n            \"LibraryName\": \"VideoHelper\",\n            \"ReleaseDate\": \"2015-11-19 00:00:00\",\n            \"Code\": \"VH054\",\n            \"Detail\": \"Let the glad handing commence! Big, uplifting, important campaign ready tracks. Good for important news, politics, elections, and anything Presidential.\",\n            \"Name\": \"Superiority Complex\",\n            \"DisplayTitle\": \"VH054 Superiority Complex\",\n            \"Keywords\": \"Politics, Elections, News\",\n            \"ID\": \"6901c9d80deb6cc6\",\n            \"TrackCount\": \"15\",\n            \"LibraryType\": \"Music\",\n            \"AlbumRate\": {\n                \"Fee\": 0,\n                \"FeeWithTax\": 0\n            }\n        }\n    ],\n    \"Facets\": {\n        \"Libraries\": {\n            \"Items\": [\n                {\n                    \"ID\": \"3a6016b420fa5e7f\",\n                    \"Name\": \"VideoHelper\",\n                    \"Count\": 5\n                }\n            ]\n        }\n    },\n    \"UseDatabase\": true,\n    \"CloudSearchUrls\": [\n        {\n            \"Url\": \"https://search-hmp-search-24zwocirxbv4dnevoubyazqubi.us-east-1.cloudsearch.amazonaws.com/2011-02-01/search?bq=(and env:'P' acctid:25 type:1 stu:1 (not isalt:1..) rgn:'75' (or aid:216150 aid:179490 aid:153526 aid:81460 aid:77591) bug:'bug')&size=0&facet-aid_f-sort=-max(generic)&facet=aid_f&facet-aid_f-top-n=32767&facet=lid_f&facet-lid_f-top-n=32767\",\n            \"SecondaryCall\": true\n        }\n    ]\n}"}],"_postman_id":"fbaac86a-835a-4519-b708-27321d430aca"},{"name":"Get Search View By RightHolderID","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"b611bb2e-812c-45f2-a1af-3eb6d7f35987","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Rightholder\": {\r\n                \"RightHolders\": \"6c83d64851a7f287\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"RightHolder\",\r\n            \"View_RightHolder_Group\": \"Composer\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"583eab2a-2f52-4d07-8364-c81bd5d051a2","name":"Get Search View By RightHolderID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"ReturnCSUrl\": \"true\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Rightholder\": {\r\n                \"RightHolders\": \"{{RightHolderID}}\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"RightHolder\",\r\n            \"View_RightHolder_Group\": \"Composer\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Aug 2024 06:44:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalTracks\": 78,\n    \"TotalAlbums\": 17,\n    \"TotalLibraries\": 1,\n    \"TotalStyles\": 32,\n    \"TotalPlaylists\": 30,\n    \"SearchParameters\": {\n        \"searchtype\": \"Normal\",\n        \"memberaccount\": \"55c041de4f6667fc\",\n        \"region\": \"aae768a739006d0f\",\n        \"includeinactive\": false,\n        \"mainonly\": true,\n        \"alternateonly\": false,\n        \"resultview\": {\n            \"view\": \"RightHolder\",\n            \"sort_predefined\": \"ReleaseDate_Desc\",\n            \"rankexpression\": \"\",\n            \"skip\": 0,\n            \"limit\": 10,\n            \"saved\": false,\n            \"mincount\": 0,\n            \"returntrackcategoryid\": false,\n            \"facet_album\": false,\n            \"facet_albumskip\": 0,\n            \"facet_albumlimit\": 0,\n            \"facet_library\": false,\n            \"facet_libraryskip\": 0,\n            \"facet_librarylimit\": 0,\n            \"facet_style\": false,\n            \"facet_styleskip\": 0,\n            \"facet_stylelimit\": 0,\n            \"facet_category\": false,\n            \"facet_categoryskip\": 0,\n            \"facet_categorylimit\": 0,\n            \"facet_composer\": false,\n            \"facet_composerskip\": 0,\n            \"facet_composerlimit\": 0,\n            \"bpm_range\": false,\n            \"duration_range\": false,\n            \"include_alternates\": false,\n            \"include_rightholders\": false,\n            \"include_lyrics\": false,\n            \"include_keywords\": false,\n            \"tracks_per_album\": 0,\n            \"facet_bpm\": false,\n            \"facet_duration\": false,\n            \"facet_releaseyear\": false,\n            \"view_style_album_count\": false,\n            \"view_style_playlist_count\": false,\n            \"view_track_categories\": false,\n            \"evoke_prioritizebpm\": false,\n            \"evoke_suppressvocals\": false,\n            \"view_album_assigned_to_style\": false,\n            \"view_playlist_assigned_to_style\": false,\n            \"returnrates\": false\n        },\n        \"nearestduration\": false,\n        \"nearestbpm\": false,\n        \"nearestalternate\": false,\n        \"LibraryType\": \"\",\n        \"PreviousSearchTermBundles\": [\n            {\n                \"SearchHistoryID\": 0,\n                \"st_rightholder\": {\n                    \"searchtermid\": 134217728,\n                    \"RightHolders\": \"6c83d64851a7f287\",\n                    \"oroperation\": false,\n                    \"negative\": false\n                }\n            }\n        ]\n    },\n    \"RightHolder\": [\n        {\n            \"ID\": \"6c83d64851a7f287\",\n            \"FirstName\": \"Roger\",\n            \"LastName\": \"Rodes Sendros\",\n            \"IPI\": \"425175568\",\n            \"CollectingSocietyName\": \"SGAE\",\n            \"RightHolderType\": {\n                \"Name\": \"Composer\",\n                \"ShareGroupName\": \"WRITER\"\n            }\n        }\n    ],\n    \"Facets\": {},\n    \"UseDatabase\": true,\n    \"CloudSearchUrl\": \"https://search-hmp-search-24zwocirxbv4dnevoubyazqubi.us-east-1.cloudsearch.amazonaws.com/2011-02-01/search?bq=(and env:'P' acctid:27 type:1 stu:1 (not isalt:1..) rgn:'177' rhid:'146357' bug:'bug')&facet=rhid&facet-rhid-top-n=32767&facet-rhid-sort=-max(generic)&facet=aid_f&facet-aid_f-top-n=32767&facet=lid_f&facet-lid_f-top-n=32767&facet=stl&facet-stl-top-n=32767&facet=pll_f&facet-pll_f-top-n=32767\",\n    \"CloudSearchUrls\": [\n        {\n            \"Url\": \"https://search-hmp-search-24zwocirxbv4dnevoubyazqubi.us-east-1.cloudsearch.amazonaws.com/2011-02-01/search?bq=(and env:'P' acctid:27 type:1 stu:1 (not isalt:1..) rgn:'177' rhid:'146357' bug:'bug')&facet=rhid&facet-rhid-top-n=32767&facet-rhid-sort=-max(generic)&facet=aid_f&facet-aid_f-top-n=32767&facet=lid_f&facet-lid_f-top-n=32767&facet=stl&facet-stl-top-n=32767&facet=pll_f&facet-pll_f-top-n=32767\",\n            \"SecondaryCall\": false\n        }\n    ]\n}"}],"_postman_id":"b611bb2e-812c-45f2-a1af-3eb6d7f35987"},{"name":"Get Search With Multiple Terms by Album","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"daa66487-93a2-4720-9082-bcde09984e19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"true\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"feac36b46eb90d77d8c972d8b47277cb\",\r\n        \"PreviousSearchTermBundles\": [\r\n            {\r\n                \"SearchHistoryID\": 48833807,\r\n                \"st_keyword_aggregated\": {\r\n                    \"searchtermid\": 1,\r\n                    \"Keywords\": \"pop\",\r\n                    \"exactphrase\": false,\r\n                    \"oroperation\": false,\r\n                    \"wildcard\": false,\r\n                    \"disablekeywordgroup\": false,\r\n                    \"negative\": false\r\n                }\r\n            }\r\n        ],\r\n        \"SearchTermBundle\": {\r\n            \"St_Category\": {\r\n                \"IDs\": \"ATT_cf78a99a22f071df6e\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Album\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"daa66487-93a2-4720-9082-bcde09984e19"},{"name":"Get Search With Multiple Terms by Track expanding Album","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"25cb43cd-c5ab-499e-b606-a46c5ec94531","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"true\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"0ddb67473d18a3fdc1151a6e1a13f6ed\",\r\n        \"PreviousSearchTermBundles\": [\r\n            {\r\n                \"SearchHistoryID\": 48833807,\r\n                \"st_keyword_aggregated\": {\r\n                    \"searchtermid\": 1,\r\n                    \"Keywords\": \"pop\",\r\n                    \"exactphrase\": false,\r\n                    \"oroperation\": false,\r\n                    \"wildcard\": false,\r\n                    \"disablekeywordgroup\": false,\r\n                    \"negative\": false\r\n                }\r\n            },\r\n            {\r\n                \"SearchHistoryID\": 48833921,\r\n                \"st_category\": {\r\n                    \"searchtermid\": 1048576,\r\n                    \"IDs\": \"ATT_cf78a99a22f071df6e\",\r\n                    \"oroperation\": false,\r\n                    \"negative\": false\r\n                }\r\n            }\r\n        ],\r\n        \"SearchTermBundle\": {\r\n            \"St_Album\": {\r\n                \"Albums\": \"728ed40f04ad9da345\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"3\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"25cb43cd-c5ab-499e-b606-a46c5ec94531"},{"name":"Get Track Details","event":[{"listen":"test","script":{"id":"d523a71a-0877-4323-8702-7b9060788951","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"fafea058-1fe7-4a3d-8901-b17e88c49311","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"ReturnAlternateVersions\":\"true\",\r\n\t\"ReturnAttributes\":\"false\",\r\n\t\"ReturnCategories\":\"false\",\r\n\t\"ReturnCategoryFacet\":\"false\",\r\n\t\"ReturnCodes\":\"false\",\r\n\t\"ReturnComposers\":\"false\",\r\n\t\"ReturnRelatedTracks\":\"false\",\r\n\t\"ReturnRightHolders\":\"true\",\r\n    \"ReturnStems\": \"false\",\r\n\t\"GetMainVersionFromAlternate\":\"false\",\r\n\t\"CuesheetOnlyCodesAndAttribute\":\"false\",\r\n\t\"ReturnInactiveTracks\":\"false\",\r\n    \"ReturnRegionOnlyTracks\":\"false\",\r\n\t\"track\":[\"{{HM_ServiceAPI_TrackID}}\"]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/gettracks/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["gettracks","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fafea058-1fe7-4a3d-8901-b17e88c49311"}],"id":"10bc33b4-d9ff-46aa-a338-cbf8f5af17e5","_postman_id":"10bc33b4-d9ff-46aa-a338-cbf8f5af17e5","description":""},{"name":"Suggestions Search","item":[{"name":"Get Suggested Keywords","event":[{"listen":"test","script":{"id":"c12db662-d47c-40b9-b5d1-bf3b571d9233","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"33476e11-9c11-433f-9867-81c7acac7b67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"keyword\": \"\",\r\n    \"wildcard\": true,\r\n    \"ReturnKeywords\": true,\r\n    \"ReturnKeywordsMaxSize\": 100,\r\n    \"ReturnKeywordsForMatch\": true,\r\n    \"ReturnKeywordsForMatch_Fields\": \"TrackKeywords\",\r\n    \"ReturnKeywordsForMatch_HideWhenSearchTerm\": true,\r\n    \"ReturnKeywordsDisableKeywordGroup\": false,\r\n    \"searchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"MainOnly\": \"true\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"previousSearchTermBundles\": [\r\n            {\r\n                \"st_keyword_aggregated\": {\r\n                    \"exactPhrase\": false,\r\n                    \"negative\": false,\r\n                    \"wildcard\": true,\r\n                    \"disableKeywordGroup\": false,\r\n                    \"orOperation\": false,\r\n                    \"keywords\": \"pop\"\r\n                }\r\n            }\r\n        ]\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/autocomplete/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Can only be called after at least one search term has been entered</p>\n","urlObject":{"path":["autocomplete","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"33476e11-9c11-433f-9867-81c7acac7b67"},{"name":"Get Suggested Keywords Multi-Filtered","event":[{"listen":"test","script":{"id":"c12db662-d47c-40b9-b5d1-bf3b571d9233","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"8c06c8c8-5ca5-4647-812c-19628c04f100","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"keyword\": \"\",\r\n    \"wildcard\": true,\r\n    \"ReturnKeywords\": true,\r\n    \"ReturnKeywordsMaxSize\": 100,\r\n    \"ReturnKeywordsForMatch\": true,\r\n    \"ReturnKeywordsForMatch_Fields\": \"TrackKeywords\",\r\n    \"ReturnKeywordsForMatch_HideWhenSearchTerm\": true,\r\n    \"ReturnKeywordsDisableKeywordGroup\": false,\r\n    \"searchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"MainOnly\": \"true\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"previousSearchTermBundles\": [\r\n            {\r\n                \"st_keyword_aggregated\": {\r\n                    \"exactPhrase\": false,\r\n                    \"negative\": false,\r\n                    \"wildcard\": true,\r\n                    \"disableKeywordGroup\": false,\r\n                    \"orOperation\": false,\r\n                    \"keywords\": \"pop\"\r\n                }\r\n            },\r\n            {\r\n                \"st_keyword_aggregated\": {\r\n                    \"exactPhrase\": false,\r\n                    \"negative\": false,\r\n                    \"wildcard\": true,\r\n                    \"disableKeywordGroup\": false,\r\n                    \"orOperation\": false,\r\n                    \"keywords\": \"rock\"\r\n                }\r\n            }\r\n        ]\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/autocomplete/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Can only be called after at least one search term has been entered</p>\n","urlObject":{"path":["autocomplete","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8c06c8c8-5ca5-4647-812c-19628c04f100"}],"id":"28f2b7e7-1d4e-491f-8163-e6a5912c2a42","_postman_id":"28f2b7e7-1d4e-491f-8163-e6a5912c2a42","description":""},{"name":"Predictive Search","item":[{"name":"Get Predictive Search","event":[{"listen":"test","script":{"id":"c12db662-d47c-40b9-b5d1-bf3b571d9233","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"e3d29719-5fcf-4de0-8136-9a94ed2ff617","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"Keyword\": \"KBL0006_01 I ADORE YOU\",\r\n\t\"Wildcard\": true,\r\n\t\"ReturnTracks\": true,\r\n\t\"ReturnTracks_MainOnly\": true,\r\n\t\"ReturnTracks_Fields\": \"DisplayTitle,alternatetitle\",\r\n\t\"ReturnTracks_Limit\": 1,\r\n\t\"ReturnTracks_Order\": \"Date_Descent\",\r\n\t\"ReturnTracks_DisableKeywordGroup\": true,\r\n\t\"ReturnTracks_Rank\": \"\",\r\n\t\"ReturnAlbums\": true,\r\n\t\"ReturnAlbums_Fields\": \"CdCode,DisplayTitle,Description,Keywords\",\r\n\t\"ReturnAlbums_Limit\": 1,\r\n\t\"ReturnAlbums_Order\": \"Date_Descent\",\r\n\t\"ReturnAlbums_DisableKeywordGroup\": true,\r\n\t\"ReturnLyrics\": true,\r\n\t\"ReturnLyrics_Limit\": 1,\r\n\t\"ReturnLyrics_MainOnly\": false,\r\n\t\"ReturnLyrics_DisableKeywordGroup\": true,\r\n\t\"ReturnFeaturedPlaylists\": true,\r\n\t\"ReturnFeaturedPlaylist_Fields\": \"ProjectTitle\",\r\n\t\"ReturnFeaturedPlaylists_Limit\": 1,\r\n\t\"ReturnFeaturedPlaylist_Order\": \"Alphabetic_Ascent\",\r\n\t\"ReturnFeaturedPlaylists_DisableKeywordGroup\": true,\r\n    \"ReturnLibraries\": false,\r\n    \"ReturnStyles\": false,\r\n    \"ReturnCategoryAttributes\": false,\r\n    \"ReturnRightHolders\": false,\r\n    \"ReturnKeywords\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/autocomplete/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["autocomplete","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e3d29719-5fcf-4de0-8136-9a94ed2ff617"},{"name":"All Lyric Results","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"f66db480-cc9b-4570-8d1b-f6e86e8efaa7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"true\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword\": {\r\n            \t\"Fields\": \"TrackLyrics\",\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"true\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"happy\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f66db480-cc9b-4570-8d1b-f6e86e8efaa7"},{"name":"All Track Results","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"45022e1c-9a5a-4b53-a199-135ae8d7152c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"true\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword\": {\r\n            \t\"Fields\": \"TrackDisplayTitle,TrackKeywords,TrackInstrumentation,TrackMusicFor,TrackMood\",\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"true\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"happy\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"45022e1c-9a5a-4b53-a199-135ae8d7152c"},{"name":"All Album Results","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"50fb21ed-5031-4a9e-baa2-3e17973aaccc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"true\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword\": {\r\n            \t\"Fields\": \"AlbumCode,AlbumDisplayTitle,AlbumDescription,AlbumKeywords\",\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"true\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"happy\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Album\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"50fb21ed-5031-4a9e-baa2-3e17973aaccc"},{"name":"All Playlist Results","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"fa191593-2aee-446f-aa50-e6601fc0dce4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"true\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword\": {\r\n            \t\"Fields\": \"PlaylistName\",\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"true\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"happy\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Playlist\",\r\n            \"Sort_Predefined\": \"Alphabetic_Asc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fa191593-2aee-446f-aa50-e6601fc0dce4"}],"id":"6d9a2250-a923-4438-a31c-a9b4c3f63b1e","_postman_id":"6d9a2250-a923-4438-a31c-a9b4c3f63b1e","description":""},{"name":"Similar Search","item":[{"name":"AIMS","item":[{"name":"By Track","item":[{"name":"Get Similar Tracks","event":[{"listen":"test","script":{"id":"1b0fddcd-a083-47c7-bab4-f63531d74b1d","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"a0a6400c-1702-4d61-b25d-ebe5bb76cb6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SearchFilters\": {\r\n        \"SearchTermBundle\": {\r\n            \"St_Audio\": {\r\n                \"Audio\": [\r\n                    {\r\n                        \"TrackID\": \"{{HM_ServiceAPI_TrackID}}\"\r\n                    }\r\n                ],\r\n                \"Start\": \"\",\r\n                \"Duration\": \"\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"Sort_Predefined\": \"EvokeRanking\",\r\n            \"Evoke_IncludeSeed\": false,\r\n            \"Evoke_PrioritizeBPM\": false,\r\n            \"Evoke_SuppressVocals\": false,\r\n            \"Limit\": \"10\"\r\n        }\r\n    }\r\n}"},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a0a6400c-1702-4d61-b25d-ebe5bb76cb6d"},{"name":"Get Similar Tracks (By Segment)","event":[{"listen":"test","script":{"id":"1b0fddcd-a083-47c7-bab4-f63531d74b1d","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"2688b8e1-0e6e-419f-8fe0-ceab95d4fb32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SearchFilters\": {\r\n        \"SearchTermBundle\": {\r\n            \"St_Audio\": {\r\n                \"Audio\": [\r\n                    {\r\n                        \"TrackID\": \"{{HM_ServiceAPI_TrackID}}\"\r\n                    }\r\n                ],\r\n                \"Start\": \"22\",\r\n                \"Duration\": \"52\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"Sort_Predefined\": \"EvokeRanking\",\r\n            \"Evoke_IncludeSeed\": false,\r\n            \"Evoke_PrioritizeBPM\": false,\r\n            \"Evoke_SuppressVocals\": false,\r\n            \"Limit\": \"10\"\r\n        }\r\n    }\r\n}"},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2688b8e1-0e6e-419f-8fe0-ceab95d4fb32"},{"name":"Get Track Details","event":[{"listen":"test","script":{"id":"d523a71a-0877-4323-8702-7b9060788951","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"2dbfcef9-99ba-4eb2-8b87-3bfba1210193","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"ReturnAlternateVersions\":\"true\",\r\n\t\"ReturnAttributes\":\"false\",\r\n\t\"ReturnCategories\":\"false\",\r\n\t\"ReturnCategoryFacet\":\"false\",\r\n\t\"ReturnCodes\":\"false\",\r\n\t\"ReturnComposers\":\"false\",\r\n\t\"ReturnRelatedTracks\":\"false\",\r\n\t\"ReturnRightHolders\":\"true\",\r\n    \"ReturnStems\": \"false\",\r\n\t\"GetMainVersionFromAlternate\":\"false\",\r\n\t\"CuesheetOnlyCodesAndAttribute\":\"false\",\r\n\t\"ReturnInactiveTracks\":\"false\",\r\n    \"ReturnRegionOnlyTracks\":\"false\",\r\n\t\"track\":[\"{{HM_ServiceAPI_TrackID}}\"]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/gettracks/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["gettracks","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2dbfcef9-99ba-4eb2-8b87-3bfba1210193"}],"id":"7b4154f0-103c-4a33-9b95-16d101737824","description":"<p>Searching by a HM Track Identity, allows you to provide a Track Identifer found from any of our track responses to obtain similar tracks based off that Track. This is perhaps the simplest to implement from the outset;</p>\n<ol>\n<li><a href=\"https://flex.developer.harvestmedia.net/#a0a6400c-1702-4d61-b25d-ebe5bb76cb6d\">Search Similar Tracks (By TrackID)</a></li>\n</ol>\n","_postman_id":"7b4154f0-103c-4a33-9b95-16d101737824"},{"name":"By MP3","item":[{"name":"Get Upload URL","event":[{"listen":"test","script":{"id":"66c5df76-9791-4d85-8847-b9c90886d35b","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"60405fee-dafc-42e3-a6e6-f690420c4344","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"AssetType\": \"AudioExtract\",\r\n    \"FileName\": \"test.mp3\",\r\n    \"ContentType\": \"audio/mpeg\",\r\n    \"ExpiresInSeconds\": \"120\",\r\n    \"ObjectId\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getpresigneduploadurl/{{HM_ServiceAPI_MemberToken}}","description":"<p>The response will contain two URLs.</p>\n<p><code>PresignedUploadUrl</code> is the URL to upload the file to. This should be used when PUT the actual file.</p>\n<p><code>ResourceUrl</code> is the URL where the resultant file, once uploaded, will reside. This will be used in the /cloudsearch/ call at the end of the process once analysis has completed.</p>\n","urlObject":{"path":["getpresigneduploadurl","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"60405fee-dafc-42e3-a6e6-f690420c4344"},{"name":"Confirm Upload & Get Streaming File & Datapoints","event":[{"listen":"test","script":{"id":"06413b98-5d34-4a8f-a64a-8559e131444f","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"f597c1bb-b3e9-400e-b69f-90d5e8031313","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"AssetType\": \"AudioExtract\",\r\n    \"FileName\": \"test.mp3\",\r\n    \"ReturnWaveformDatapoints\": true,\r\n    \"ReturnWaveformDatapointsUrl\": true,\r\n    \"ObjectId\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/confirmpresignedupload/{{HM_ServiceAPI_MemberToken}}","description":"<p>The response will appear like the following</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"Code\": \"OK\"\n}\n\n</code></pre>","urlObject":{"path":["confirmpresignedupload","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f597c1bb-b3e9-400e-b69f-90d5e8031313"},{"name":"Get Similar Tracks","event":[{"listen":"test","script":{"id":"4d954a95-4b6e-4dae-a472-02e5c3d7d79d","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Register Member\");"],"type":"text/javascript"}}],"id":"7b782bdf-aa1a-4e8c-ac59-704b26e49557","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SearchFilters\": {\r\n        \"SearchTermBundle\": {\r\n            \"St_Audio\": {\r\n                \"Audio\": [\r\n                    {\r\n                        \"Url\": \"{ResourceUrl}\",\r\n                        \"Type\": \"MP3\",\r\n                        \"Start\": \"\",\r\n                        \"Duration\": \"\"\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"Sort_Predefined\": \"EvokeRanking\",\r\n            \"Evoke_IncludeSeed\": false,\r\n            \"Evoke_PrioritizeBPM\": false,\r\n            \"Evoke_SuppressVocals\": false,\r\n            \"Limit\": \"10\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>Returns similar tracks based an uploaded MP3 file.</p>\n<p>Please note that the MP3 file needs to be uploaded prior to attempting to perform a search. Please refer to the <a href=\"https://developer.harvestmedia.net/#f2e8a004-da4c-437c-a2ca-281dadd8f31d\">implementation guide</a> in order to do so.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: SearchTermBundle &gt; St_Audio</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Url</td>\n<td>Required. Resource URL, provided as part of the API response when obtaining a pre-signed URL. This is the path to the audio file in the Harvest Media repository</td>\n</tr>\n<tr>\n<td>Type</td>\n<td>Required. One possible value; \"MP3\"</td>\n</tr>\n<tr>\n<td>Start</td>\n<td>Optional. The position to begin similar searching against</td>\n</tr>\n<tr>\n<td>Duration</td>\n<td>Optional. The duration from the starting value to search similar for</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: ResultView</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sort_predefined</td>\n<td>Required, the only available value for this is \"EvokeRanking\". Case sensitive</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EvokeSegments</td>\n<td>This array is provided if the similar search provider allows for it (e.g. AIMS). When allowed, this array contains a listing of the points in time at which this audio was similar to the seed audio</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7b782bdf-aa1a-4e8c-ac59-704b26e49557"},{"name":"Get Similar Tracks (By Segment)","event":[{"listen":"test","script":{"id":"4d954a95-4b6e-4dae-a472-02e5c3d7d79d","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Register Member\");"],"type":"text/javascript"}}],"id":"759f0001-a013-4835-b20b-f7c001f0e926","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SearchFilters\": {\r\n        \"SearchTermBundle\": {\r\n            \"St_Audio\": {\r\n                \"Audio\": [\r\n                    {\r\n                        \"Url\": \"{ResourceUrl}}\",\r\n                        \"Type\": \"MP3\",\r\n                        \"Start\": \"22\",\r\n                        \"Duration\": \"52\"\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"Sort_Predefined\": \"EvokeRanking\",\r\n            \"Evoke_IncludeSeed\": false,\r\n            \"Evoke_PrioritizeBPM\": false,\r\n            \"Evoke_SuppressVocals\": false,\r\n            \"Limit\": \"10\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>Returns similar tracks based an uploaded MP3 file.</p>\n<p>Please note that the MP3 file needs to be uploaded prior to attempting to perform a search. Please refer to the <a href=\"https://developer.harvestmedia.net/#f2e8a004-da4c-437c-a2ca-281dadd8f31d\">implementation guide</a> in order to do so.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: SearchTermBundle &gt; St_Audio</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Url</td>\n<td>Required. Resource URL, provided as part of the API response when obtaining a pre-signed URL. This is the path to the audio file in the Harvest Media repository</td>\n</tr>\n<tr>\n<td>Type</td>\n<td>Required. One possible value; \"MP3\"</td>\n</tr>\n<tr>\n<td>Start</td>\n<td>Optional. The position to begin similar searching against</td>\n</tr>\n<tr>\n<td>Duration</td>\n<td>Optional. The duration from the starting value to search similar for</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: ResultView</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sort_predefined</td>\n<td>Required, the only available value for this is \"EvokeRanking\". Case sensitive</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EvokeSegments</td>\n<td>This array is provided if the similar search provider allows for it (e.g. AIMS). When allowed, this array contains a listing of the points in time at which this audio was similar to the seed audio</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"759f0001-a013-4835-b20b-f7c001f0e926"},{"name":"Get Track Details","event":[{"listen":"test","script":{"id":"d523a71a-0877-4323-8702-7b9060788951","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"9e11e0d2-2242-4287-9dac-6b731b163efd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"ReturnAlternateVersions\":\"true\",\r\n\t\"ReturnAttributes\":\"false\",\r\n\t\"ReturnCategories\":\"false\",\r\n\t\"ReturnCategoryFacet\":\"false\",\r\n\t\"ReturnCodes\":\"false\",\r\n\t\"ReturnComposers\":\"false\",\r\n\t\"ReturnRelatedTracks\":\"false\",\r\n\t\"ReturnRightHolders\":\"true\",\r\n    \"ReturnStems\": \"false\",\r\n\t\"GetMainVersionFromAlternate\":\"false\",\r\n\t\"CuesheetOnlyCodesAndAttribute\":\"false\",\r\n\t\"ReturnInactiveTracks\":\"false\",\r\n    \"ReturnRegionOnlyTracks\":\"false\",\r\n\t\"track\":[\"{{HM_ServiceAPI_TrackID}}\"]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/gettracks/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["gettracks","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9e11e0d2-2242-4287-9dac-6b731b163efd"}],"id":"79038671-f539-42e8-a4bd-3132fc0d8507","description":"<p>Searching by an uploaded audio file requires a number of steps;</p>\n<ol>\n<li><p>Obtaining a pre-signed audio upload URL. This will allow you to get permission to upload an audio file for analysis to our servers.</p>\n<ol>\n<li><a href=\"https://flex.developer.harvestmedia.net/#60405fee-dafc-42e3-a6e6-f690420c4344\">Get Audio File Upload URL</a></li>\n</ol>\n</li>\n<li><p>Perform a PUT FILE request to the generated pre-signed URL. This is the act of actually uploading / delivering the audio file to us. This file will be used for analysis purposes</p>\n</li>\n<li><p>Confirm the audio upload completed. By confirming your upload complete, we can provide access to the file for similarity searching</p>\n<ol>\n<li><a href=\"https://flex.developer.harvestmedia.net/#f597c1bb-b3e9-400e-b69f-90d5e8031313\">Confirm Audio File Upload Complete</a></li>\n</ol>\n</li>\n<li><p>Request a similar search. This is the actual request to find similar tracks based on the uploaded file.</p>\n<ol>\n<li><a href=\"https://flex.developer.harvestmedia.net/#7b782bdf-aa1a-4e8c-ac59-704b26e49557\">Search Similar Tracks (By Audio File Upload)</a></li>\n</ol>\n</li>\n</ol>\n","_postman_id":"79038671-f539-42e8-a4bd-3132fc0d8507"},{"name":"By URL","item":[{"name":"Get Streaming File & Datapoints","event":[{"listen":"test","script":{"id":"58c9129e-3c6e-4a87-96d1-93c6c08cfe15","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"5e5f4d68-2d9d-4a1b-8456-58cd1e21b524","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"Url\": \"https://www.youtube.com/watch?v=fV4DiAyExN0xxx\",\r\n    \"Type\": \"YouTube\",\r\n    \"ReturnWaveformDataPoints\": true,\r\n    \"ReturnWaveformDataPointsUrl\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getexternalaudiobyurl/{{HM_ServiceAPI_MemberToken}}","description":"<p>Possible values for <code>Type</code> are;</p>\n<ul>\n<li>YouTube</li>\n<li>Spotify</li>\n<li>Vimeo</li>\n<li>SoundCloud</li>\n</ul>\n","urlObject":{"path":["getexternalaudiobyurl","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5e5f4d68-2d9d-4a1b-8456-58cd1e21b524"},{"name":"Get Similar Tracks","event":[{"listen":"test","script":{"id":"70d52f08-fec4-4bed-9ea0-aa60645c2bfc","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"9886b5be-3d92-4a3b-8893-bfec0c2f73d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SearchFilters\": {\r\n        \"SearchTermBundle\": {\r\n            \"St_Audio\": {\r\n                \"Audio\": [\r\n                    {\r\n                        \"Url\": \"https://www.youtube.com/watch?v=GdzrrWA8e7A\",\r\n                        \"Type\": \"Youtube\",\r\n                        \"Start\": \"\",\r\n                        \"Duration\": \"\"\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"Sort_Predefined\": \"EvokeRanking\",\r\n            \"Evoke_IncludeSeed\": false,\r\n            \"Evoke_PrioritizeBPM\": false,\r\n            \"Evoke_SuppressVocals\": false,\r\n            \"Limit\": \"10\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9886b5be-3d92-4a3b-8893-bfec0c2f73d2"},{"name":"Get Similar Tracks (By Segment)","event":[{"listen":"test","script":{"id":"70d52f08-fec4-4bed-9ea0-aa60645c2bfc","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"27b265f8-d8b6-4ba0-b742-b2b9ccaf591b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SearchFilters\": {\r\n        \"SearchTermBundle\": {\r\n            \"St_Audio\": {\r\n                \"Audio\": [\r\n                    {\r\n                        \"Url\": \"https://www.youtube.com/watch?v=GdzrrWA8e7A\",\r\n                        \"Type\": \"Youtube\",\r\n                        \"Start\": \"22\",\r\n                        \"Duration\": \"52\"\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"Sort_Predefined\": \"EvokeRanking\",\r\n            \"Evoke_IncludeSeed\": false,\r\n            \"Evoke_PrioritizeBPM\": false,\r\n            \"Evoke_SuppressVocals\": false,\r\n            \"Limit\": \"10\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"27b265f8-d8b6-4ba0-b742-b2b9ccaf591b"},{"name":"Get Track Details","event":[{"listen":"test","script":{"id":"d523a71a-0877-4323-8702-7b9060788951","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"9cfebbf0-adb4-4a5d-980b-38cc0fb150f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"ReturnAlternateVersions\":\"true\",\r\n\t\"ReturnAttributes\":\"false\",\r\n\t\"ReturnCategories\":\"false\",\r\n\t\"ReturnCategoryFacet\":\"false\",\r\n\t\"ReturnCodes\":\"false\",\r\n\t\"ReturnComposers\":\"false\",\r\n\t\"ReturnRelatedTracks\":\"false\",\r\n\t\"ReturnRightHolders\":\"true\",\r\n    \"ReturnStems\": \"false\",\r\n\t\"GetMainVersionFromAlternate\":\"false\",\r\n\t\"CuesheetOnlyCodesAndAttribute\":\"false\",\r\n\t\"ReturnInactiveTracks\":\"false\",\r\n    \"ReturnRegionOnlyTracks\":\"false\",\r\n\t\"track\":[\"{{HM_ServiceAPI_TrackID}}\"]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/gettracks/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["gettracks","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9cfebbf0-adb4-4a5d-980b-38cc0fb150f6"}],"id":"0e3a8006-e86d-442d-9594-fcfc84eee594","description":"<p>Searching by a URL requires a single step;</p>\n<ol>\n<li><p>This step is not required, however if you would like to retrieve the external audio file from the URL for in-site sampling then you can request the external audio file and datapoints</p>\n<ol>\n<li>See <a href=\"https://flex.developer.harvestmedia.net/#5e5f4d68-2d9d-4a1b-8456-58cd1e21b524\">Get External Audio File</a></li>\n</ol>\n</li>\n<li><p>Request a similar search by URL. It should be noted that the following URL types are supported; YouTube, Spotify, Vimeo and SoundCloud.</p>\n<ol>\n<li><a href=\"https://flex.developer.harvestmedia.net/#9886b5be-3d92-4a3b-8893-bfec0c2f73d2\">Search Similar Tracks (By URL)</a></li>\n</ol>\n</li>\n</ol>\n","_postman_id":"0e3a8006-e86d-442d-9594-fcfc84eee594"},{"name":"By Prompt","item":[{"name":"Get Similar Tracks","event":[{"listen":"test","script":{"id":"1b0fddcd-a083-47c7-bab4-f63531d74b1d","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"3e41cb23-aae5-4446-9199-988c0ab640bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"SearchFilters\": {\r\n        \"SearchTermBundle\": {\r\n            \"St_Audio\": {\r\n                \"Audio\": [\r\n                    {\r\n                        \"Prompt\": \"jazzy\"\r\n                    }\r\n                ],\r\n                \"Start\": \"\",\r\n                \"Duration\": \"\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"Sort_Predefined\": \"EvokeRanking\",\r\n            \"Evoke_IncludeSeed\": false,\r\n            \"Evoke_PrioritizeBPM\": false,\r\n            \"Evoke_SuppressVocals\": false,\r\n            \"Limit\": \"10\"\r\n        }\r\n    }\r\n}"},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3e41cb23-aae5-4446-9199-988c0ab640bc"},{"name":"Get Track Details","event":[{"listen":"test","script":{"id":"d523a71a-0877-4323-8702-7b9060788951","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"3b56609e-73bb-4ea1-99f2-d446e07b8961","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\t\"ReturnAlternateVersions\":\"true\",\r\n\t\"ReturnAttributes\":\"false\",\r\n\t\"ReturnCategories\":\"false\",\r\n\t\"ReturnCategoryFacet\":\"false\",\r\n\t\"ReturnCodes\":\"false\",\r\n\t\"ReturnComposers\":\"false\",\r\n\t\"ReturnRelatedTracks\":\"false\",\r\n\t\"ReturnRightHolders\":\"true\",\r\n    \"ReturnStems\": \"false\",\r\n\t\"GetMainVersionFromAlternate\":\"false\",\r\n\t\"CuesheetOnlyCodesAndAttribute\":\"false\",\r\n\t\"ReturnInactiveTracks\":\"false\",\r\n    \"ReturnRegionOnlyTracks\":\"false\",\r\n\t\"track\":[\"{{HM_ServiceAPI_TrackID}}\"]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/gettracks/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["gettracks","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3b56609e-73bb-4ea1-99f2-d446e07b8961"}],"id":"e838d65e-bc22-46ba-8d1e-9dacac72a34b","description":"<p>Searching by a prompt, allows you to provide a sentence or prompt to obtain similar tracks for.</p>\n<ol>\n<li><a href=\"https://flex.developer.harvestmedia.net/#3e41cb23-aae5-4446-9199-988c0ab640bc\">Search Similar Tracks (By Prompt)</a></li>\n</ol>\n","_postman_id":"e838d65e-bc22-46ba-8d1e-9dacac72a34b"}],"id":"bcda6b45-29a1-422e-bc89-acb150b262cb","_postman_id":"bcda6b45-29a1-422e-bc89-acb150b262cb","description":""},{"name":"CYANITE","item":[{"name":"By Track","item":[{"name":"Get Similar Tracks","event":[{"listen":"test","script":{"id":"1b0fddcd-a083-47c7-bab4-f63531d74b1d","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"0b5920f9-4adb-463e-854f-aa082b564e02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SearchFilters\": {\r\n        \"SearchTermBundle\": {\r\n            \"St_Audio\": {\r\n                \"Audio\":[{\"TrackID\": \"{{HM_ServiceAPI_TrackID}}\"}],\r\n                \"Start\": \"\",\r\n                \"Duration\": \"\"   \r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"Sort_Predefined\": \"EvokeRanking\",\r\n            \"Limit\": \"10\"\r\n        }\r\n    }\r\n}"},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0b5920f9-4adb-463e-854f-aa082b564e02"},{"name":"Get Similar Tracks (By Segment)","event":[{"listen":"test","script":{"id":"1b0fddcd-a083-47c7-bab4-f63531d74b1d","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"afa5f0e9-164d-4a09-acff-301fe387a204","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SearchFilters\": {\r\n        \"SearchTermBundle\": {\r\n            \"St_Audio\": {\r\n                \"Audio\":[{\"TrackID\": \"{{HM_ServiceAPI_TrackID}}\"}],\r\n                \"Start\": \"22\",\r\n                \"Duration\": \"52\"   \r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"Sort_Predefined\": \"EvokeRanking\",\r\n            \"Limit\": \"10\"\r\n        }\r\n    }\r\n}"},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"afa5f0e9-164d-4a09-acff-301fe387a204"},{"name":"Get Track Details","event":[{"listen":"test","script":{"id":"d523a71a-0877-4323-8702-7b9060788951","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"f5427339-6398-4bdc-bb85-2d822b267591","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"ReturnAlternateVersions\":\"true\",\r\n\t\"ReturnAttributes\":\"false\",\r\n\t\"ReturnCategories\":\"false\",\r\n\t\"ReturnCategoryFacet\":\"false\",\r\n\t\"ReturnCodes\":\"false\",\r\n\t\"ReturnComposers\":\"false\",\r\n\t\"ReturnRelatedTracks\":\"false\",\r\n\t\"ReturnRightHolders\":\"true\",\r\n    \"ReturnStems\": \"false\",\r\n\t\"GetMainVersionFromAlternate\":\"false\",\r\n\t\"CuesheetOnlyCodesAndAttribute\":\"false\",\r\n\t\"ReturnInactiveTracks\":\"false\",\r\n    \"ReturnRegionOnlyTracks\":\"false\",\r\n\t\"track\":[\"{{HM_ServiceAPI_TrackID}}\"]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/gettracks/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["gettracks","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f5427339-6398-4bdc-bb85-2d822b267591"}],"id":"2beb89aa-de96-4965-b96d-8a08dfabd83e","description":"<p>Searching by a HM Track Identity, allows you to provide a Track Identifer found from any of our track responses to obtain similar tracks based off that Track. This is perhaps the simplest to implement from the outset;</p>\n<ol>\n<li><a href=\"https://developer.harvestmedia.net/#e8a09a78-e030-4ee4-bff1-36616ba1422b\">Search Similar Tracks (By TrackID)</a></li>\n</ol>\n","_postman_id":"2beb89aa-de96-4965-b96d-8a08dfabd83e"},{"name":"By MP3","item":[{"name":"Get Upload URL","event":[{"listen":"test","script":{"id":"66c5df76-9791-4d85-8847-b9c90886d35b","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"d7c7405a-f1db-4d5b-9ad4-b1fee2a5617e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"AssetType\": \"AudioExtract\",\r\n    \"FileName\": \"test.mp3\",\r\n    \"ContentType\": \"audio/mpeg\",\r\n    \"ExpiresInSeconds\": \"120\",\r\n    \"ObjectId\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getpresigneduploadurl/{{HM_ServiceAPI_MemberToken}}","description":"<p>The response will contain two URLs.</p>\n<p><code>PresignedUploadUrl</code> is the URL to upload the file to. This should be used when PUT the actual file.</p>\n<p><code>ResourceUrl</code> is the URL where the resultant file, once uploaded, will reside. This will be used in the /cloudsearch/ call at the end of the process once analysis has completed.</p>\n","urlObject":{"path":["getpresigneduploadurl","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d7c7405a-f1db-4d5b-9ad4-b1fee2a5617e"},{"name":"Confirm Upload & Get Streaming File & Datapoints","event":[{"listen":"test","script":{"id":"06413b98-5d34-4a8f-a64a-8559e131444f","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"0e57dde4-e3b1-468d-af89-c42899e7b046","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"AssetType\": \"AudioExtract\",\r\n    \"FileName\": \"test.mp3\",\r\n    \"ReturnWaveformDatapoints\": true,\r\n    \"ReturnWaveformDatapointsUrl\": true,\r\n    \"ObjectId\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/confirmpresignedupload/{{HM_ServiceAPI_MemberToken}}","description":"<p>The response will appear like the following</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"Code\": \"OK\",\n  \"Asset\": {\n    \"ExternalID\": \"d683a1b8e6efab78c655ebfdf2e0a8b6\"\n  }\n}\n\n</code></pre><p>This <code>ExternalID</code> is important as it is to be used to poll the service to check the status of the external providers analysis.</p>\n","urlObject":{"path":["confirmpresignedupload","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0e57dde4-e3b1-468d-af89-c42899e7b046"},{"name":"Get External Status","event":[{"listen":"test","script":{"id":"58c9129e-3c6e-4a87-96d1-93c6c08cfe15","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"33bbfaf6-870e-4ca3-8c20-26205383f93e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"ExternalID\": \"d683a1b8e6efab78c655ebfdf2e0a8b6\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getexternalaudiostatus/{{HM_ServiceAPI_MemberToken}}","description":"<p>This is the same endpoint as Spotify, however here you leave off the ExternalType altogether.</p>\n<p>The <code>ExternalID</code> is the ID that was received during /confirmpresignedupload/ resonse.</p>\n<p>There are 3 possible responses;</p>\n<ol>\n<li>OK</li>\n<li>Pending</li>\n<li>Error</li>\n</ol>\n<p><b>OK response</b></p>\n<p>When this response is received it means that the uploaded track has been analysed and the /cloudsearch/ request is ready to return results.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"Code\": \"OK\"\n}\n\n</code></pre><p><b>Pending response</b></p>\n<p>When this response is received it means that the uploaded track is pending analysis. This can take anywhere from 1-40 seconds depending on the external provider.</p>\n<p>This endpoint should be polled every 4 seconds to fetch the latest status update. Unfortunately there is no other way to retrieve this update.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"Error\": {\n    \"Code\": \"4\",\n    \"Description\": \"Analysis Pending\"\n  }\n}\n\n</code></pre><p><b>Error response</b></p>\n<p>When this response is received it means that the uploaded track cannot be searched on. There are various reasons for this. The format will be \"Analysis Failed - {reason}\".</p>\n<p>No Spotify Previews allowed</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"Error\": {\n    \"Code\": \"4\",\n    \"Description\": \"Analysis Failed - It seems like this track does not have a preview on Spotify.\"\n  }\n}\n\n</code></pre><p>Errored</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"Error\": {\n        \"Code\": \"4\",\n        \"Description\": \"Analysis Failed - Could not find library track.\"\n    }\n}\n\n</code></pre>","urlObject":{"path":["getexternalaudiostatus","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"33bbfaf6-870e-4ca3-8c20-26205383f93e"},{"name":"Get Similar Tracks","event":[{"listen":"test","script":{"id":"4d954a95-4b6e-4dae-a472-02e5c3d7d79d","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Register Member\");"],"type":"text/javascript"}}],"id":"3bff24b6-d714-4483-b5da-20d29b1b34d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SearchFilters\": {\r\n        \"SearchTermBundle\": {\r\n            \"St_Audio\": {\r\n                \"Audio\": [\r\n                    {\r\n                        \"Url\": \"{ResourceUrl}\",\r\n                        \"Type\": \"MP3\",\r\n                        \"Start\": \"\",\r\n                        \"Duration\": \"\"\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"Sort_Predefined\": \"EvokeRanking\",\r\n            \"Limit\": \"10\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>Returns similar tracks based an uploaded MP3 file.</p>\n<p>Please note that the MP3 file needs to be uploaded prior to attempting to perform a search. Please refer to the <a href=\"https://developer.harvestmedia.net/#f2e8a004-da4c-437c-a2ca-281dadd8f31d\">implementation guide</a> in order to do so.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: SearchTermBundle &gt; St_Audio</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Url</td>\n<td>Required. Resource URL, provided as part of the API response when obtaining a pre-signed URL. This is the path to the audio file in the Harvest Media repository</td>\n</tr>\n<tr>\n<td>Type</td>\n<td>Required. One possible value; \"MP3\"</td>\n</tr>\n<tr>\n<td>Start</td>\n<td>Optional. The position to begin similar searching against</td>\n</tr>\n<tr>\n<td>Duration</td>\n<td>Optional. The duration from the starting value to search similar for</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: ResultView</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sort_predefined</td>\n<td>Required, the only available value for this is \"EvokeRanking\". Case sensitive</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EvokeSegments</td>\n<td>This array is provided if the similar search provider allows for it (e.g. AIMS). When allowed, this array contains a listing of the points in time at which this audio was similar to the seed audio</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3bff24b6-d714-4483-b5da-20d29b1b34d3"},{"name":"Get Similar Tracks (By Segment)","event":[{"listen":"test","script":{"id":"1b0fddcd-a083-47c7-bab4-f63531d74b1d","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"ead76c94-2f84-4950-b7e7-619578392fae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SearchFilters\": {\r\n        \"SearchTermBundle\": {\r\n            \"St_Audio\": {\r\n                \"Audio\": [\r\n                    {\r\n                        \"Url\": \"{ResourceUrl}\",\r\n                        \"Type\": \"MP3\",\r\n                        \"Start\": \"22\",\r\n                        \"Duration\": \"55\"\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"Sort_Predefined\": \"EvokeRanking\",\r\n            \"Limit\": \"10\"\r\n        }\r\n    }\r\n}"},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ead76c94-2f84-4950-b7e7-619578392fae"},{"name":"Get Track Details","event":[{"listen":"test","script":{"id":"d523a71a-0877-4323-8702-7b9060788951","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"e9dcb0fa-9950-4e9c-8d1c-25046b0bc23d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"ReturnAlternateVersions\":\"true\",\r\n\t\"ReturnAttributes\":\"false\",\r\n\t\"ReturnCategories\":\"false\",\r\n\t\"ReturnCategoryFacet\":\"false\",\r\n\t\"ReturnCodes\":\"false\",\r\n\t\"ReturnComposers\":\"false\",\r\n\t\"ReturnRelatedTracks\":\"false\",\r\n\t\"ReturnRightHolders\":\"true\",\r\n    \"ReturnStems\": \"false\",\r\n\t\"GetMainVersionFromAlternate\":\"false\",\r\n\t\"CuesheetOnlyCodesAndAttribute\":\"false\",\r\n\t\"ReturnInactiveTracks\":\"false\",\r\n    \"ReturnRegionOnlyTracks\":\"false\",\r\n\t\"track\":[\"{{HM_ServiceAPI_TrackID}}\"]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/gettracks/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["gettracks","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e9dcb0fa-9950-4e9c-8d1c-25046b0bc23d"}],"id":"57cc389d-16c0-42df-989f-f870820f9f22","description":"<p>Searching by an uploaded audio file requires a number of steps;</p>\n<ol>\n<li><p>Obtaining a pre-signed audio upload URL. This will allow you to get permission to upload an audio file for analysis to our servers.</p>\n<ol>\n<li><a href=\"https://flex.developer.harvestmedia.net/#d7c7405a-f1db-4d5b-9ad4-b1fee2a5617e\">Get Audio File Upload URL</a></li>\n</ol>\n</li>\n<li><p>Perform a PUT FILE request to the generated pre-signed URL. This is the act of actually uploading and delivering the audio file to the external provider</p>\n</li>\n<li><p>Confirm the audio upload completed. By confirming your upload complete, we can provide access to the file for similarity searching</p>\n<ol>\n<li><p><a href=\"https://flex.developer.harvestmedia.net/#0e57dde4-e3b1-468d-af89-c42899e7b046\">Confirm Audio File Upload Complete</a></p>\n</li>\n<li><p>Of special note is the ExternalID in the response. This will be used to poll status in the next step</p>\n</li>\n</ol>\n</li>\n<li><p>Poll our service for status updates as to when the uploaded audio file has finished analysis and is ready for similarity requesting</p>\n<ol>\n<li><p><a href=\"https://flex.developer.harvestmedia.net/#33bbfaf6-870e-4ca3-8c20-26205383f93e\">Get External Audio File Ingestion Status</a></p>\n</li>\n<li><p>Continue to repeat (4) if the response is Analysis Pending, until the response is OK before proceeding to step 5</p>\n</li>\n</ol>\n</li>\n<li><p>Request a similar search. This is the actual request to find similar tracks based on the uploaded file.</p>\n<ol>\n<li><a href=\"https://flex.developer.harvestmedia.net/#3bff24b6-d714-4483-b5da-20d29b1b34d3\">Search Similar Tracks (By Audio File Upload)</a></li>\n</ol>\n</li>\n</ol>\n","_postman_id":"57cc389d-16c0-42df-989f-f870820f9f22"},{"name":"By URL","item":[{"name":"Get External Status (Spotify)","event":[{"listen":"test","script":{"id":"58c9129e-3c6e-4a87-96d1-93c6c08cfe15","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"4941d804-6c80-4957-8ca7-b295d2ad1f60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"ExternalID\": \"35346bd1189941c7\",\r\n    \"ExternalType\": \"Spotify\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getexternalaudiostatus/{{HM_ServiceAPI_MemberToken}}","description":"<p>The <code>ExternalID</code> is the spotify track ID that appears in the URL that the users posts. This needs to be extracted from the users URL to be provided here.</p>\n<p>There are 3 possible responses;</p>\n<ol>\n<li><p>OK</p>\n</li>\n<li><p>Pending</p>\n</li>\n<li><p>Error</p>\n</li>\n</ol>\n<p><b>OK response</b></p>\n<p>When this response is received it means that the Spotify track has been analysed and the /cloudsearch/ request is ready to return results.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"Code\": \"OK\"\n}\n\n</code></pre><p><b>Pending response</b></p>\n<p>When this response is received it means that the Spotify track is pending analysis. This can take anywhere from 1-40 seconds depending on the external provider.</p>\n<p>This endpoint should be polled every 4 seconds to fetch the latest status update. Unfortunately there is no other way to retrieve this update.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"Error\": {\n    \"Code\": \"4\",\n    \"Description\": \"Analysis Pending\"\n  }\n}\n\n</code></pre><p><b>Error response</b></p>\n<p>When this response is received it means that the Spotify track cannot be searched on. There are various reasons for this. The format will be \"Analysis Failed - {reason}\".</p>\n<p>No Spotify Previews allowed</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"Error\": {\n    \"Code\": \"4\",\n    \"Description\": \"Analysis Failed - It seems like this track does not have a preview on Spotify.\"\n  }\n}\n\n</code></pre><p>Errored</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"Error\": {\n        \"Code\": \"4\",\n        \"Description\": \"Analysis Failed - Could not find library track.\"\n    }\n}\n\n</code></pre>","urlObject":{"path":["getexternalaudiostatus","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4941d804-6c80-4957-8ca7-b295d2ad1f60"},{"name":"Get External Status (YouTube)","event":[{"listen":"test","script":{"id":"58c9129e-3c6e-4a87-96d1-93c6c08cfe15","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"404c25be-3ad1-4dd3-afb9-04920e287fdd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"ExternalID\": \"https://www.youtube.com/watch?v=aBcDe-FG1\",\r\n    \"ExternalType\": \"YouTube\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getexternalaudiostatus/{{HM_ServiceAPI_MemberToken}}","description":"<p>This endpoint only works with Spotify presently.</p>\n<p>The <code>ExternalID</code> is the spotify track ID that appears in the URL that the users posts. This needs to be extracted from the users URL to be provided here.</p>\n<p>There are 3 possible responses;</p>\n<ol>\n<li>OK</li>\n<li>Pending</li>\n<li>Error</li>\n</ol>\n<p><b>OK response</b></p>\n<p>When this response is received it means that the Spotify track has been analysed and the /cloudsearch/ request is ready to return results.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"Code\": \"OK\"\n}\n\n</code></pre><p><b>Pending response</b></p>\n<p>When this response is received it means that the Spotify track is pending analysis. This can take anywhere from 1-40 seconds depending on the external provider.</p>\n<p>This endpoint should be polled every 4 seconds to fetch the latest status update. Unfortunately there is no other way to retrieve this update.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"Error\": {\n    \"Code\": \"4\",\n    \"Description\": \"Analysis Pending\"\n  }\n}\n\n</code></pre><p><b>Error response</b></p>\n<p>When this response is received it means that the Spotify track cannot be searched on. There are various reasons for this. The format will be \"Analysis Failed - {reason}\".</p>\n<p>No Spotify Previews allowed</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"Error\": {\n    \"Code\": \"4\",\n    \"Description\": \"Analysis Failed - It seems like this track does not have a preview on Spotify.\"\n  }\n}\n\n</code></pre><p>Errored</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"Error\": {\n        \"Code\": \"4\",\n        \"Description\": \"Analysis Failed - Could not find library track.\"\n    }\n}\n\n</code></pre>","urlObject":{"path":["getexternalaudiostatus","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"404c25be-3ad1-4dd3-afb9-04920e287fdd"},{"name":"Get Similar Tracks","event":[{"listen":"test","script":{"id":"70d52f08-fec4-4bed-9ea0-aa60645c2bfc","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"5173e49c-9b9c-4d26-9d7d-aeac7773835b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SearchFilters\": {\r\n        \"SearchTermBundle\": {\r\n            \"St_Audio\": {\r\n                \"Audio\": [\r\n                    {\r\n                        \"Url\": \"https://open.spotify.com/track/5p0bEz7DNsULez2X9yrNGa?si=35346bd1189941c7\",\r\n                        \"Type\": \"Spotify\",\r\n                        \"Start\": \"\",\r\n                        \"Duration\": \"\"\r\n                    }\r\n                ]\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"Sort_Predefined\": \"EvokeRanking\",\r\n            \"Evoke_IncludeSeed\": false,\r\n            \"Limit\": \"10\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>Type can either be Spotify or Youtube.</p>\n<p>In both instances the URL is the fully supplied URL.</p>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5173e49c-9b9c-4d26-9d7d-aeac7773835b"},{"name":"Get Track Details","event":[{"listen":"test","script":{"id":"d523a71a-0877-4323-8702-7b9060788951","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"7e04a57a-566e-475f-802a-1653fff3b10f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"ReturnAlternateVersions\":\"true\",\r\n\t\"ReturnAttributes\":\"false\",\r\n\t\"ReturnCategories\":\"false\",\r\n\t\"ReturnCategoryFacet\":\"false\",\r\n\t\"ReturnCodes\":\"false\",\r\n\t\"ReturnComposers\":\"false\",\r\n\t\"ReturnRelatedTracks\":\"false\",\r\n\t\"ReturnRightHolders\":\"true\",\r\n    \"ReturnStems\": \"false\",\r\n\t\"GetMainVersionFromAlternate\":\"false\",\r\n\t\"CuesheetOnlyCodesAndAttribute\":\"false\",\r\n\t\"ReturnInactiveTracks\":\"false\",\r\n    \"ReturnRegionOnlyTracks\":\"false\",\r\n\t\"track\":[\"{{HM_ServiceAPI_TrackID}}\"]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/gettracks/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["gettracks","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7e04a57a-566e-475f-802a-1653fff3b10f"}],"id":"98551046-350a-46b5-a162-a9e7be9a793d","description":"<p>Searching by URL requires a number of steps;</p>\n<ol>\n<li><p>Check the service for the availability of the Spotify or YouTube URL</p>\n<ol>\n<li><p><a href=\"https://flex.developer.harvestmedia.net/#4941d804-6c80-4957-8ca7-b295d2ad1f60\">Get External Status (Spotify)</a> or <a href=\"https://flex.developer.harvestmedia.net/#404c25be-3ad1-4dd3-afb9-04920e287fdd\">Get External Status (YouTube)</a></p>\n</li>\n<li><p>Continue to repeat (1) if the response is Analysis Penidng, until the response is OK before proceeding to step 2</p>\n</li>\n</ol>\n</li>\n<li><p>Request a similar search. This is the actual request to find similar tracks based on the provided URL.</p>\n<ol>\n<li><a href=\"https://flex.developer.harvestmedia.net/#5173e49c-9b9c-4d26-9d7d-aeac7773835b\">Search Similar Tracks (By URL)</a></li>\n</ol>\n</li>\n</ol>\n","_postman_id":"98551046-350a-46b5-a162-a9e7be9a793d"},{"name":"By Free Text","item":[{"name":"Get Similar Tracks","event":[{"listen":"test","script":{"id":"1b0fddcd-a083-47c7-bab4-f63531d74b1d","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"402a26b7-28f7-438d-b537-1d121cecfcc7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"SearchFilters\": {\r\n        \"SearchTermBundle\": {\r\n            \"St_Audio\": {\r\n                \"Audio\": [\r\n                    {\r\n                        \"Prompt\": \"walking a mountain trail\"\r\n                    }\r\n                ],\r\n                \"Start\": \"\",\r\n                \"Duration\": \"\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"Sort_Predefined\": \"EvokeRanking\",\r\n            \"Evoke_IncludeSeed\": false,\r\n            \"Evoke_PrioritizeBPM\": false,\r\n            \"Evoke_SuppressVocals\": false,\r\n            \"Limit\": \"10\"\r\n        }\r\n    }\r\n}"},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"402a26b7-28f7-438d-b537-1d121cecfcc7"},{"name":"Get Track Details","event":[{"listen":"test","script":{"id":"d523a71a-0877-4323-8702-7b9060788951","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"61b464c4-e316-4f0b-846e-b5ddb6a7c5e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"ReturnAlternateVersions\":\"true\",\r\n\t\"ReturnAttributes\":\"false\",\r\n\t\"ReturnCategories\":\"false\",\r\n\t\"ReturnCategoryFacet\":\"false\",\r\n\t\"ReturnCodes\":\"false\",\r\n\t\"ReturnComposers\":\"false\",\r\n\t\"ReturnRelatedTracks\":\"false\",\r\n\t\"ReturnRightHolders\":\"true\",\r\n    \"ReturnStems\": \"false\",\r\n\t\"GetMainVersionFromAlternate\":\"false\",\r\n\t\"CuesheetOnlyCodesAndAttribute\":\"false\",\r\n\t\"ReturnInactiveTracks\":\"false\",\r\n    \"ReturnRegionOnlyTracks\":\"false\",\r\n\t\"track\":[\"{{HM_ServiceAPI_TrackID}}\"]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/gettracks/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["gettracks","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"61b464c4-e316-4f0b-846e-b5ddb6a7c5e3"}],"id":"28dd5d67-d81e-4a6d-baa7-6233cfd2f61f","description":"<p>Searching by a prompt, allows you to provide a sentence or prompt to obtain similar tracks for.</p>\n<ol>\n<li><a href=\"https://flex.developer.harvestmedia.net/#402a26b7-28f7-438d-b537-1d121cecfcc7\">Search Similar Tracks (By Free Text)</a></li>\n</ol>\n","_postman_id":"28dd5d67-d81e-4a6d-baa7-6233cfd2f61f"}],"id":"e29d8d33-2614-48e9-94ae-f0e4b2063268","_postman_id":"e29d8d33-2614-48e9-94ae-f0e4b2063268","description":""}],"id":"cb10e3e4-8974-410c-b941-d748a2543066","_postman_id":"cb10e3e4-8974-410c-b941-d748a2543066","description":""},{"name":"Create Saved Search","id":"d2523117-657e-4001-9cb4-265a8dc50d48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"Name\": \"My Search Name\",\r\n    \"Description\": \"My Search Description\",\r\n    \"SearchHistoryID\": \"{ParentSearchHistoryID}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/addmembersavesearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>Allows a search to be saved for a member.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Name</td>\n<td>Mandatory, name of the saved search</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>Optional, description of the saved search</td>\n</tr>\n<tr>\n<td>SearchHistoryID</td>\n<td>Mandatory, the searchhistoryid, as seen from the <a href=\"https://developer.harvestmedia.net/#6ad96a5d-eee3-448d-8c15-4287300759ce\">Search </a> response, to be associated with this saved search</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<p>The ID in the response is the same SearchHistoryID that was provided in the request. This will be used as the reference for the saved search.</p>\n","urlObject":{"path":["addmembersavesearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d2523117-657e-4001-9cb4-265a8dc50d48"}],"id":"1d2bb184-238f-463a-a9d4-6df62edc8f85","_postman_id":"1d2bb184-238f-463a-a9d4-6df62edc8f85","description":""},{"name":"Search Page - SFX Only","item":[{"name":"Core Search","item":[{"name":"Get Search Filtered By Keyword","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"c7fe56a7-574b-42c2-87ba-0ea6372644c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"ReturnCSUrl\": \"true\",\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": \"SoundEffects\",\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"true\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"pop\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Style\",\r\n            \"Sort_Predefined\": \"\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"100\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"ea70537f-c574-4be9-a5d6-71ca51160555","name":"Get Search Default (Tracks)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"ReturnCSUrl\": \"true\",\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": \"SoundEffects\",\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"ST_Track\": {\r\n                \"Tracks\": \"47dedde30079643d,23c53c490f3fec88,8fed97c866213c96,2d02cb31abb82d20,42c03d4905eac891,6ba3b10cbc4173c2\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Jan 2024 04:21:00 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalTracks\": 6,\n    \"TotalAlbums\": 1,\n    \"TotalLibraries\": 1,\n    \"TotalStyles\": 0,\n    \"TotalPlaylists\": 0,\n    \"SearchParameters\": {\n        \"searchtype\": \"Normal\",\n        \"memberaccount\": \"92662dfe696a497f\",\n        \"region\": \"88f8791e732f07e1\",\n        \"includeinactive\": false,\n        \"mainonly\": true,\n        \"alternativeonly\": false,\n        \"librarytype\": \"SoundEffects\",\n        \"resultview\": {\n            \"view\": \"Track\",\n            \"rankexpression\": \"\",\n            \"skip\": 0,\n            \"limit\": 10,\n            \"saved\": false,\n            \"mincount\": 0,\n            \"returntrackcategoryid\": false,\n            \"facet_album\": false,\n            \"facet_albumskip\": 0,\n            \"facet_albumlimit\": 0,\n            \"facet_library\": true,\n            \"facet_libraryskip\": 0,\n            \"facet_librarylimit\": 0,\n            \"facet_librarysort\": \"Count_Desc\",\n            \"facet_style\": false,\n            \"facet_styleskip\": 0,\n            \"facet_stylelimit\": 0,\n            \"facet_category\": true,\n            \"facet_categoryskip\": 0,\n            \"facet_categorylimit\": 0,\n            \"facet_categorysort\": \"Count_Desc\",\n            \"facet_composer\": false,\n            \"facet_composerskip\": 0,\n            \"facet_composerlimit\": 0,\n            \"bpm_range\": false,\n            \"duration_range\": false,\n            \"include_alternates\": false,\n            \"include_rightholders\": false,\n            \"include_lyrics\": false,\n            \"include_keywords\": false,\n            \"tracks_per_album\": 0,\n            \"facet_bpm\": true,\n            \"facet_duration\": true,\n            \"facet_releaseyear\": false,\n            \"view_style_album_count\": false,\n            \"view_style_playlist_count\": false,\n            \"view_track_categories\": false,\n            \"evoke_prioritizebpm\": false,\n            \"evoke_suppressvocals\": false,\n            \"view_album_assigned_to_style\": false,\n            \"view_playlist_assigned_to_style\": false,\n            \"returnrates\": false\n        },\n        \"nearestduration\": false,\n        \"nearestbpm\": false,\n        \"nearestalternate\": false,\n        \"PreviousSearchTermBundles\": [\n            {\n                \"SearchHistoryID\": 0,\n                \"st_track\": {\n                    \"searchtermid\": 33554432,\n                    \"Tracks\": \"47dedde30079643d,23c53c490f3fec88,8fed97c866213c96,2d02cb31abb82d20,42c03d4905eac891,6ba3b10cbc4173c2\",\n                    \"negative\": false\n                }\n            }\n        ]\n    },\n    \"Tracks\": [\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryType\": \"SoundEffects\",\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"TrackNumber\": \"001\",\n            \"LengthSeconds\": \"142\",\n            \"Comment\": \"A gently resonating solo piano is joined by a high sustained string creating a haunting, atmospheric feel, until joined by further restrained, reflective strings and from halfway through, an occasional celeste can be heard\",\n            \"Composer\": \"Jackson / Jones\",\n            \"Publisher\": \"CHALK\",\n            \"Artist\": \"\",\n            \"Name\": \"Beyond The Glass\",\n            \"AlbumID\": \"8d4ce1b004d41882\",\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"ID\": \"47dedde30079643d\",\n            \"Keywords\": \"Delicate, Minimal, Atmospheric, Strings, Piano, Poignant, Light tension, Slow\",\n            \"Lyrics\": \"\",\n            \"DisplayTitle\": \"Beyond The Glass\",\n            \"alternatetitle\": \"A Sparrow's Whisper\",\n            \"Genre\": \"Orchestral/Score\",\n            \"Tempo\": \"\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"\",\n            \"Mixout\": \"\",\n            \"Frequency\": \"48000\",\n            \"Bitrate\": \"24\",\n            \"DateIngested\": \"2018-08-29 21:20:03\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"CHALK001\",\n            \"AlbumName\": \"Quartet - Intimate Classical Score\",\n            \"LibraryName\": \"Chalk\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"5\",\n            \"RightHolderIDs\": [],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"Beyond The Glass\",\n            \"AlbumTitle\": \"Quartet - Intimate Classical Score (FKA CHALK086)\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"Fee\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryType\": \"SoundEffects\",\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"TrackNumber\": \"002\",\n            \"LengthSeconds\": \"116\",\n            \"Comment\": \"Pretty and lilting piano melody joined by wind instruments, ambient pads and then strings from about 00:31 on; woodwind melodies, mallets and additional percussion including cymbals lend an almost playful, curious air\",\n            \"Composer\": \"Jackson / Jones\",\n            \"Publisher\": \"CHALK\",\n            \"Artist\": \"\",\n            \"Name\": \"Taking Wing\",\n            \"AlbumID\": \"8d4ce1b004d41882\",\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"ID\": \"23c53c490f3fec88\",\n            \"Keywords\": \"Soft, Delicate, Strings, Piano, Slow, Heartwarming, Moving, Touching, Emotive\",\n            \"Lyrics\": \"\",\n            \"DisplayTitle\": \"Taking Wing\",\n            \"alternatetitle\": \"Baby Kisses Goodnight\",\n            \"Genre\": \"Orchestral/Score\",\n            \"Tempo\": \"\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"\",\n            \"Mixout\": \"\",\n            \"Frequency\": \"48000\",\n            \"Bitrate\": \"24\",\n            \"DateIngested\": \"2018-08-29 21:20:05\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"CHALK001\",\n            \"AlbumName\": \"Quartet - Intimate Classical Score\",\n            \"LibraryName\": \"Chalk\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"5\",\n            \"RightHolderIDs\": [],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"Taking Wing\",\n            \"AlbumTitle\": \"Quartet - Intimate Classical Score (FKA CHALK086)\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"Fee\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryType\": \"SoundEffects\",\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"TrackNumber\": \"003\",\n            \"LengthSeconds\": \"126\",\n            \"Comment\": \"Dramatically stirring strings including violin, viola and cello vie for attention; reminscent of spring\",\n            \"Composer\": \"Jackson / Jones\",\n            \"Publisher\": \"CHALK\",\n            \"Artist\": \"\",\n            \"Name\": \"Into Light\",\n            \"AlbumID\": \"8d4ce1b004d41882\",\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"ID\": \"8fed97c866213c96\",\n            \"Keywords\": \"Strings, Light tension, Violin, Viola, Melancholic, Beautiful, Score, Rising, Building, Poignant, Heartbreaking\",\n            \"Lyrics\": \"\",\n            \"DisplayTitle\": \"Into Light\",\n            \"alternatetitle\": \"Withdrawn\",\n            \"Genre\": \"Orchestral/Score\",\n            \"Tempo\": \"\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"\",\n            \"Mixout\": \"\",\n            \"Frequency\": \"48000\",\n            \"Bitrate\": \"24\",\n            \"DateIngested\": \"2018-08-29 21:20:06\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"CHALK001\",\n            \"AlbumName\": \"Quartet - Intimate Classical Score\",\n            \"LibraryName\": \"Chalk\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"4\",\n            \"RightHolderIDs\": [],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"Into Light\",\n            \"AlbumTitle\": \"Quartet - Intimate Classical Score (FKA CHALK086)\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"Fee\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryType\": \"SoundEffects\",\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"TrackNumber\": \"004\",\n            \"LengthSeconds\": \"123\",\n            \"Comment\": \"Rippling solo piano begins the piece and gentle strings appear early on adding to the intensity, with additional swelling strings appearing at 00:35; finishes with just the piano melody and a dramatic sustained high string note\",\n            \"Composer\": \"Jackson / Jones\",\n            \"Publisher\": \"CHALK\",\n            \"Artist\": \"\",\n            \"Name\": \"Lost Time\",\n            \"AlbumID\": \"8d4ce1b004d41882\",\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"ID\": \"2d02cb31abb82d20\",\n            \"Keywords\": \"Solo piano, Moving, Score, Beautiful, Sad, Poignant, Hopeful, Intimate, Mid tempo, Adventure, Atmospheric\",\n            \"Lyrics\": \"\",\n            \"DisplayTitle\": \"Lost Time\",\n            \"alternatetitle\": \"Broken Logic\",\n            \"Genre\": \"Orchestral/Score\",\n            \"Tempo\": \"\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"\",\n            \"Mixout\": \"\",\n            \"Frequency\": \"48000\",\n            \"Bitrate\": \"24\",\n            \"DateIngested\": \"2018-08-29 21:20:07\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"CHALK001\",\n            \"AlbumName\": \"Quartet - Intimate Classical Score\",\n            \"LibraryName\": \"Chalk\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"5\",\n            \"RightHolderIDs\": [],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"Lost Time\",\n            \"AlbumTitle\": \"Quartet - Intimate Classical Score (FKA CHALK086)\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"Fee\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryType\": \"SoundEffects\",\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"TrackNumber\": \"005\",\n            \"LengthSeconds\": \"125\",\n            \"Comment\": \"Rippling piano ostinato is joined by bittersweet emotive strings with cymbals adding drama, along with wind instruments and additional percussion including triangle\",\n            \"Composer\": \"Jackson / Jones\",\n            \"Publisher\": \"CHALK\",\n            \"Artist\": \"\",\n            \"Name\": \"Strangers Now\",\n            \"AlbumID\": \"8d4ce1b004d41882\",\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"ID\": \"42c03d4905eac891\",\n            \"Keywords\": \"Slow, Strings, Piano, Cymbals, Sad, Moving, Evolving, Rising, Build up, Score\",\n            \"Lyrics\": \"\",\n            \"DisplayTitle\": \"Strangers Now\",\n            \"alternatetitle\": \"Spheres\",\n            \"Genre\": \"Orchestral/Score\",\n            \"Tempo\": \"\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"\",\n            \"Mixout\": \"\",\n            \"Frequency\": \"48000\",\n            \"Bitrate\": \"24\",\n            \"DateIngested\": \"2018-08-29 21:20:08\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"CHALK001\",\n            \"AlbumName\": \"Quartet - Intimate Classical Score\",\n            \"LibraryName\": \"Chalk\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"5\",\n            \"RightHolderIDs\": [],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"Strangers Now\",\n            \"AlbumTitle\": \"Quartet - Intimate Classical Score (FKA CHALK086)\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"Fee\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryType\": \"SoundEffects\",\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"TrackNumber\": \"006\",\n            \"LengthSeconds\": \"113\",\n            \"Comment\": \"A delicate, wistful piano bed with atmospheric effects and additional percussion\",\n            \"Composer\": \"Jackson / Jones\",\n            \"Publisher\": \"CHALK\",\n            \"Artist\": \"\",\n            \"Name\": \"At Peace\",\n            \"AlbumID\": \"8d4ce1b004d41882\",\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"ID\": \"6ba3b10cbc4173c2\",\n            \"Keywords\": \"Moving, Touching, Reflective, Piano, Delicate, Gentle, Soft, Fragile, Minimal\",\n            \"Lyrics\": \"\",\n            \"DisplayTitle\": \"At Peace\",\n            \"alternatetitle\": \"Feather Light\",\n            \"Genre\": \"Orchestral/Score\",\n            \"Tempo\": \"\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"\",\n            \"Mixout\": \"\",\n            \"Frequency\": \"48000\",\n            \"Bitrate\": \"24\",\n            \"DateIngested\": \"2018-08-29 21:20:34\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"CHALK001\",\n            \"AlbumName\": \"Quartet - Intimate Classical Score\",\n            \"LibraryName\": \"Chalk\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"6\",\n            \"RightHolderIDs\": [],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"At Peace\",\n            \"AlbumTitle\": \"Quartet - Intimate Classical Score (FKA CHALK086)\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"Fee\": 0\n            }\n        }\n    ],\n    \"Facets\": {\n        \"Libraries\": {\n            \"Items\": [\n                {\n                    \"ID\": \"4d220d57f9cce7c3\",\n                    \"Name\": \"Chalk\",\n                    \"Count\": 1\n                }\n            ]\n        },\n        \"BPM\": {\n            \"Min\": 0,\n            \"Max\": 0\n        },\n        \"Duration\": {\n            \"Min\": 113,\n            \"Max\": 142\n        }\n    },\n    \"UseDatabase\": true,\n    \"CloudSearchUrl\": \"https://search-hmp-search-24zwocirxbv4dnevoubyazqubi.us-east-1.cloudsearch.amazonaws.com/2011-02-01/search?bq=(and env:'S' acctid:371 type:1 stu:1 (not isalt:1..) rgn:'345' (or tid:4156708 tid:4156709 tid:4156710 tid:4156711 tid:4156712 tid:4156713) bug:'bug')&size=32767&return-fields=tid&facet=aid_f&facet-aid_f-top-n=32767&facet=lid_f&facet-lid_f-top-n=32767&facet=stl&facet-stl-top-n=32767&facet=pll_f&facet-pll_f-top-n=32767&facet=cat_f&facet-cat_f-top-n=32767&facet=bpm&facet-bpm-top-n=32767&facet=dur&facet-dur-top-n=32767\"\n}"},{"id":"26896951-d6f5-4993-ae69-35ca077575f4","name":"Get Search Default (Albums)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"ReturnCSUrl\": \"true\",\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": \"SoundEffects\",\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"ST_Album\": {\r\n                \"Albums\": \"a2c31cf075f94733,09af5e30c44e89ce,b580300004445d1b,2d42f735db56ea82\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Album\",\r\n            \"Sort_Predefined\": \"\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Jan 2024 04:37:20 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalTracks\": 44,\n    \"TotalAlbums\": 4,\n    \"TotalLibraries\": 2,\n    \"TotalStyles\": 0,\n    \"TotalPlaylists\": 1,\n    \"SearchParameters\": {\n        \"searchtype\": \"Normal\",\n        \"memberaccount\": \"92662dfe696a497f\",\n        \"region\": \"88f8791e732f07e1\",\n        \"includeinactive\": false,\n        \"mainonly\": true,\n        \"alternativeonly\": false,\n        \"librarytype\": \"SoundEffects\",\n        \"resultview\": {\n            \"view\": \"Album\",\n            \"rankexpression\": \"\",\n            \"skip\": 0,\n            \"limit\": 4,\n            \"saved\": false,\n            \"mincount\": 0,\n            \"returntrackcategoryid\": false,\n            \"facet_album\": false,\n            \"facet_albumskip\": 0,\n            \"facet_albumlimit\": 0,\n            \"facet_library\": true,\n            \"facet_libraryskip\": 0,\n            \"facet_librarylimit\": 0,\n            \"facet_librarysort\": \"Count_Desc\",\n            \"facet_style\": false,\n            \"facet_styleskip\": 0,\n            \"facet_stylelimit\": 0,\n            \"facet_category\": true,\n            \"facet_categoryskip\": 0,\n            \"facet_categorylimit\": 0,\n            \"facet_categorysort\": \"Count_Desc\",\n            \"facet_composer\": false,\n            \"facet_composerskip\": 0,\n            \"facet_composerlimit\": 0,\n            \"bpm_range\": false,\n            \"duration_range\": false,\n            \"include_alternates\": false,\n            \"include_rightholders\": false,\n            \"include_lyrics\": false,\n            \"include_keywords\": false,\n            \"tracks_per_album\": 0,\n            \"facet_bpm\": true,\n            \"facet_duration\": true,\n            \"facet_releaseyear\": false,\n            \"view_style_album_count\": false,\n            \"view_style_playlist_count\": false,\n            \"view_track_categories\": false,\n            \"evoke_prioritizebpm\": false,\n            \"evoke_suppressvocals\": false,\n            \"view_album_assigned_to_style\": false,\n            \"view_playlist_assigned_to_style\": false,\n            \"returnrates\": false\n        },\n        \"nearestduration\": false,\n        \"nearestbpm\": false,\n        \"nearestalternate\": false,\n        \"PreviousSearchTermBundles\": [\n            {\n                \"SearchHistoryID\": 0,\n                \"st_album\": {\n                    \"searchtermid\": 4096,\n                    \"Albums\": \"a2c31cf075f94733,09af5e30c44e89ce,b580300004445d1b,2d42f735db56ea82\",\n                    \"negative\": false\n                }\n            }\n        ]\n    },\n    \"Albums\": [\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"LibraryName\": \"Chalk\",\n            \"LibraryType\": \"SoundEffects\",\n            \"ReleaseDate\": \"2018-05-24 00:00:00\",\n            \"Code\": \"CHALK009\",\n            \"Detail\": \"Soaring, emotive, inspiring indie and evolving indie-tinged score, featuring piano and strings\",\n            \"Name\": \"Slow Burn - Building Cinematic Indie (FKA CHALK061/CHALK-CMP904)\",\n            \"DisplayTitle\": \"Slow Burn - Building Cinematic Indie\",\n            \"Keywords\": \"Slow burning, Indie, Strings, Emotive, Building, Uplifting, Emotional\",\n            \"ID\": \"a2c31cf075f94733\",\n            \"TrackCount\": \"15\",\n            \"AlbumRate\": {\n                \"Fee\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"LibraryName\": \"Chalk\",\n            \"LibraryType\": \"SoundEffects\",\n            \"ReleaseDate\": \"2018-07-06 00:00:00\",\n            \"Code\": \"CHALK012\",\n            \"Detail\": \"Downtempo mellow folk-inflected tracks full of warmth, for a relaxed pace of life\",\n            \"Name\": \"Warmhearted - Easygoing Acoustic Folk (FKA CHALK066/CHALK-CMP903)\",\n            \"DisplayTitle\": \"Warmhearted - Easygoing Acoustic Folk\",\n            \"Keywords\": \"Downtempo, mellow, warm, folk, acoustic, acoustic guitar, slow, relaxed, pastoral, nature, content, warm heart, warmheart, warmhearted\",\n            \"ID\": \"09af5e30c44e89ce\",\n            \"TrackCount\": \"14\",\n            \"AlbumRate\": {\n                \"Fee\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"LibraryName\": \"Chalk\",\n            \"LibraryType\": \"SoundEffects\",\n            \"ReleaseDate\": \"2018-04-20 00:00:00\",\n            \"Code\": \"CHALK008\",\n            \"Detail\": \"Beautifully crafted and intimate neo-classical pop, packed full with emotion, raw live strings and stunning vocal performances\",\n            \"Name\": \"Raw Beauty - Emotive Neo-Classical Pop\",\n            \"DisplayTitle\": \"Raw Beauty - Emotive Neo-Classical Pop\",\n            \"Keywords\": \"Sad,emotive,reflective,emotional\",\n            \"ID\": \"b580300004445d1b\",\n            \"TrackCount\": \"13\",\n            \"AlbumRate\": {\n                \"Fee\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"c15dbefad30a4f8f\",\n            \"LibraryName\": \"Cloud Search\",\n            \"LibraryType\": \"SoundEffects\",\n            \"ReleaseDate\": \"2017-08-11 00:00:00\",\n            \"Code\": \"TEST000\",\n            \"Detail\": \"Version 3.0 LIVE\",\n            \"Name\": \"Contol Ingestion Test\",\n            \"DisplayTitle\": \"TEST000 Contol Ingestion Test\",\n            \"Keywords\": \"Album Keyword test 01\",\n            \"ID\": \"2d42f735db56ea82\",\n            \"TrackCount\": \"2\",\n            \"AlbumRate\": {\n                \"Fee\": 0\n            }\n        }\n    ],\n    \"Facets\": {\n        \"Libraries\": {\n            \"Items\": [\n                {\n                    \"ID\": \"4d220d57f9cce7c3\",\n                    \"Name\": \"Chalk\",\n                    \"Count\": 3\n                },\n                {\n                    \"ID\": \"c15dbefad30a4f8f\",\n                    \"Name\": \"Cloud Search\",\n                    \"Count\": 1\n                }\n            ]\n        },\n        \"BPM\": {\n            \"Min\": 0,\n            \"Max\": 200\n        },\n        \"Duration\": {\n            \"Min\": 4,\n            \"Max\": 310\n        }\n    },\n    \"UseDatabase\": true,\n    \"CloudSearchUrl\": \"https://search-hmp-search-24zwocirxbv4dnevoubyazqubi.us-east-1.cloudsearch.amazonaws.com/2011-02-01/search?bq=(and env:'S' acctid:371 type:1 stu:1 (not isalt:1..) rgn:'345' (or aid:98981 aid:103189 aid:124465 aid:176158) bug:'bug')&size=0&facet-aid_f-sort=-max(generic)&facet=aid_f&facet-aid_f-top-n=32767&facet=lid_f&facet-lid_f-top-n=32767&facet=stl&facet-stl-top-n=32767&facet=pll_f&facet-pll_f-top-n=32767&facet=cat_f&facet-cat_f-top-n=32767&facet=bpm&facet-bpm-top-n=32767&facet=dur&facet-dur-top-n=32767\"\n}"},{"id":"b0b9c1a4-8728-45a5-bf1f-74359da990d3","name":"Get Search Default (Libraries)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"ReturnCSUrl\": \"true\",\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": \"SoundEffects\",\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"ST_Library\": {\r\n                \"Libraries\": \"4d220d57f9cce7c3,c15dbefad30a4f8f\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Library\",\r\n            \"Sort_Predefined\": \"\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"100\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Jan 2024 04:47:33 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalTracks\": 202,\n    \"TotalAlbums\": 15,\n    \"TotalLibraries\": 2,\n    \"TotalStyles\": 0,\n    \"TotalPlaylists\": 1,\n    \"SearchParameters\": {\n        \"searchtype\": \"Normal\",\n        \"memberaccount\": \"92662dfe696a497f\",\n        \"region\": \"88f8791e732f07e1\",\n        \"includeinactive\": false,\n        \"mainonly\": true,\n        \"alternativeonly\": false,\n        \"librarytype\": \"SoundEffects\",\n        \"resultview\": {\n            \"view\": \"Library\",\n            \"rankexpression\": \"\",\n            \"skip\": 0,\n            \"limit\": 2,\n            \"saved\": false,\n            \"mincount\": 0,\n            \"returntrackcategoryid\": false,\n            \"facet_album\": false,\n            \"facet_albumskip\": 0,\n            \"facet_albumlimit\": 0,\n            \"facet_library\": true,\n            \"facet_libraryskip\": 0,\n            \"facet_librarylimit\": 0,\n            \"facet_librarysort\": \"Count_Desc\",\n            \"facet_style\": false,\n            \"facet_styleskip\": 0,\n            \"facet_stylelimit\": 0,\n            \"facet_category\": true,\n            \"facet_categoryskip\": 0,\n            \"facet_categorylimit\": 0,\n            \"facet_categorysort\": \"Count_Desc\",\n            \"facet_composer\": false,\n            \"facet_composerskip\": 0,\n            \"facet_composerlimit\": 0,\n            \"bpm_range\": false,\n            \"duration_range\": false,\n            \"include_alternates\": false,\n            \"include_rightholders\": false,\n            \"include_lyrics\": false,\n            \"include_keywords\": false,\n            \"tracks_per_album\": 0,\n            \"facet_bpm\": true,\n            \"facet_duration\": true,\n            \"facet_releaseyear\": false,\n            \"view_style_album_count\": false,\n            \"view_style_playlist_count\": false,\n            \"view_track_categories\": false,\n            \"evoke_prioritizebpm\": false,\n            \"evoke_suppressvocals\": false,\n            \"view_album_assigned_to_style\": false,\n            \"view_playlist_assigned_to_style\": false,\n            \"returnrates\": false\n        },\n        \"nearestduration\": false,\n        \"nearestbpm\": false,\n        \"nearestalternate\": false,\n        \"PreviousSearchTermBundles\": [\n            {\n                \"SearchHistoryID\": 0,\n                \"st_library\": {\n                    \"searchtermid\": 131072,\n                    \"Libraries\": \"4d220d57f9cce7c3,c15dbefad30a4f8f\",\n                    \"negative\": false\n                }\n            }\n        ]\n    },\n    \"Libraries\": [\n        {\n            \"AlbumCount\": 14,\n            \"TrackCount\": 0,\n            \"Featured\": false,\n            \"Detail\": \"\",\n            \"Name\": \"Chalk\",\n            \"Type\": \"SoundEffects\",\n            \"ID\": \"4d220d57f9cce7c3\"\n        },\n        {\n            \"AlbumCount\": 1,\n            \"TrackCount\": 0,\n            \"Featured\": false,\n            \"Detail\": \"Testing ingestion and lalo other post ingestion functions for cloud search \",\n            \"Name\": \"Cloud Search\",\n            \"Type\": \"SoundEffects\",\n            \"ID\": \"c15dbefad30a4f8f\"\n        }\n    ],\n    \"Facets\": {\n        \"Libraries\": {\n            \"Items\": [\n                {\n                    \"ID\": \"4d220d57f9cce7c3\",\n                    \"Name\": \"Chalk\",\n                    \"Count\": 14\n                },\n                {\n                    \"ID\": \"c15dbefad30a4f8f\",\n                    \"Name\": \"Cloud Search\",\n                    \"Count\": 1\n                }\n            ]\n        },\n        \"BPM\": {\n            \"Min\": 0,\n            \"Max\": 200\n        },\n        \"Duration\": {\n            \"Min\": 4,\n            \"Max\": 322\n        }\n    },\n    \"UseDatabase\": true,\n    \"CloudSearchUrl\": \"https://search-hmp-search-24zwocirxbv4dnevoubyazqubi.us-east-1.cloudsearch.amazonaws.com/2011-02-01/search?bq=(and env:'S' acctid:371 type:1 stu:1 (not isalt:1..) rgn:'345' (or lid:1379 lid:2422) bug:'bug')&size=0&facet-lid_f-sort=-max(generic)&facet=aid_f&facet-aid_f-top-n=32767&facet=lid_f&facet-lid_f-top-n=32767&facet=stl&facet-stl-top-n=32767&facet=pll_f&facet-pll_f-top-n=32767&facet=cat_f&facet-cat_f-top-n=32767&facet=bpm&facet-bpm-top-n=32767&facet=dur&facet-dur-top-n=32767\"\n}"}],"_postman_id":"c7fe56a7-574b-42c2-87ba-0ea6372644c3"}],"id":"81e1094c-0774-481c-a7f8-6d725a63f4cc","_postman_id":"81e1094c-0774-481c-a7f8-6d725a63f4cc","description":""},{"name":"Suggestions Search","item":[{"name":"Get Suggested Keywords","event":[{"listen":"test","script":{"id":"c12db662-d47c-40b9-b5d1-bf3b571d9233","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"09a1ba57-0b3b-40f2-831b-9084042dbef8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"keyword\": \"\",\r\n    \"wildcard\": true,\r\n    \"LibraryType\": \"SoundEffects\",\r\n    \"ReturnKeywords\": true,\r\n    \"ReturnKeywordsMaxSize\": 100,\r\n    \"ReturnKeywordsForMatch\": true,\r\n    \"ReturnKeywordsForMatch_Fields\": \"TrackKeywords\",\r\n    \"ReturnKeywordsForMatch_HideWhenSearchTerm\": true,\r\n    \"ReturnKeywordsDisableKeywordGroup\": false,\r\n    \"searchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"MainOnly\": \"true\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": \"SoundEffects\",\r\n        \"HasStems\": null,\r\n        \"previousSearchTermBundles\": [\r\n            {\r\n                \"st_keyword_aggregated\": {\r\n                    \"exactPhrase\": false,\r\n                    \"negative\": false,\r\n                    \"wildcard\": true,\r\n                    \"disableKeywordGroup\": false,\r\n                    \"orOperation\": false,\r\n                    \"keywords\": \"pop\"\r\n                }\r\n            }\r\n        ]\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/autocomplete/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Can only be called after at least one search term has been entered</p>\n","urlObject":{"path":["autocomplete","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"09a1ba57-0b3b-40f2-831b-9084042dbef8"}],"id":"29887a90-0b28-4493-8017-d041e419a0ca","_postman_id":"29887a90-0b28-4493-8017-d041e419a0ca","description":""},{"name":"Predictive Search","item":[{"name":"Get Predictive Search","event":[{"listen":"test","script":{"id":"c12db662-d47c-40b9-b5d1-bf3b571d9233","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"bc5d7484-f796-4ad7-bbd8-15e6ab57f94c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"Keyword\": \"happy\",\r\n\t\"Wildcard\": true,\r\n    \"LibraryType\": \"SoundEffects\",\r\n\t\"ReturnTracks\": true,\r\n\t\"ReturnTracks_MainOnly\": true,\r\n\t\"ReturnTracks_Fields\": \"DisplayTitle,Keywords,Instrumentation,MusicFor,Mood\",\r\n\t\"ReturnTracks_Limit\": 1,\r\n\t\"ReturnTracks_Order\": \"Date_Descent\",\r\n\t\"ReturnTracks_DisableKeywordGroup\": true,\r\n\t\"ReturnTracks_Rank\": \"\",\r\n\t\"ReturnAlbums\": false,\r\n\t\"ReturnLyrics\": false,\r\n\t\"ReturnFeaturedPlaylists\": false,\r\n    \"ReturnLibraries\": false,\r\n    \"ReturnStyles\": false,\r\n    \"ReturnCategoryAttributes\": false,\r\n    \"ReturnRightHolders\": false,\r\n    \"ReturnKeywords\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/autocomplete/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["autocomplete","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bc5d7484-f796-4ad7-bbd8-15e6ab57f94c"}],"id":"33a6ff80-208b-4868-921e-ea990d1b4d5a","_postman_id":"33a6ff80-208b-4868-921e-ea990d1b4d5a","description":""}],"id":"f6fae97b-44e8-4864-bcfe-663469b0c15e","_postman_id":"f6fae97b-44e8-4864-bcfe-663469b0c15e","description":""},{"name":"Search Music Page - Music Only","item":[{"name":"Core Search","item":[{"name":"Get Search Filtered By Keyword","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"b3214017-6d44-487e-a714-85a4d6e93ab8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"ReturnCSUrl\": \"true\",\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": \"Music\",\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"true\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"pop\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Style\",\r\n            \"Sort_Predefined\": \"\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"100\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"27777e40-79e9-4874-ae58-9499762519d4","name":"Get Search Default (Tracks)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"ReturnCSUrl\": \"true\",\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": \"Music\",\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"ST_Track\": {\r\n                \"Tracks\": \"47dedde30079643d,23c53c490f3fec88,8fed97c866213c96,2d02cb31abb82d20,42c03d4905eac891,6ba3b10cbc4173c2\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Jan 2024 04:21:00 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalTracks\": 6,\n    \"TotalAlbums\": 1,\n    \"TotalLibraries\": 1,\n    \"TotalStyles\": 0,\n    \"TotalPlaylists\": 0,\n    \"SearchParameters\": {\n        \"searchtype\": \"Normal\",\n        \"memberaccount\": \"92662dfe696a497f\",\n        \"region\": \"88f8791e732f07e1\",\n        \"includeinactive\": false,\n        \"mainonly\": true,\n        \"alternativeonly\": false,\n        \"librarytype\": \"Music\",\n        \"resultview\": {\n            \"view\": \"Track\",\n            \"rankexpression\": \"\",\n            \"skip\": 0,\n            \"limit\": 10,\n            \"saved\": false,\n            \"mincount\": 0,\n            \"returntrackcategoryid\": false,\n            \"facet_album\": false,\n            \"facet_albumskip\": 0,\n            \"facet_albumlimit\": 0,\n            \"facet_library\": true,\n            \"facet_libraryskip\": 0,\n            \"facet_librarylimit\": 0,\n            \"facet_librarysort\": \"Count_Desc\",\n            \"facet_style\": false,\n            \"facet_styleskip\": 0,\n            \"facet_stylelimit\": 0,\n            \"facet_category\": true,\n            \"facet_categoryskip\": 0,\n            \"facet_categorylimit\": 0,\n            \"facet_categorysort\": \"Count_Desc\",\n            \"facet_composer\": false,\n            \"facet_composerskip\": 0,\n            \"facet_composerlimit\": 0,\n            \"bpm_range\": false,\n            \"duration_range\": false,\n            \"include_alternates\": false,\n            \"include_rightholders\": false,\n            \"include_lyrics\": false,\n            \"include_keywords\": false,\n            \"tracks_per_album\": 0,\n            \"facet_bpm\": true,\n            \"facet_duration\": true,\n            \"facet_releaseyear\": false,\n            \"view_style_album_count\": false,\n            \"view_style_playlist_count\": false,\n            \"view_track_categories\": false,\n            \"evoke_prioritizebpm\": false,\n            \"evoke_suppressvocals\": false,\n            \"view_album_assigned_to_style\": false,\n            \"view_playlist_assigned_to_style\": false,\n            \"returnrates\": false\n        },\n        \"nearestduration\": false,\n        \"nearestbpm\": false,\n        \"nearestalternate\": false,\n        \"PreviousSearchTermBundles\": [\n            {\n                \"SearchHistoryID\": 0,\n                \"st_track\": {\n                    \"searchtermid\": 33554432,\n                    \"Tracks\": \"47dedde30079643d,23c53c490f3fec88,8fed97c866213c96,2d02cb31abb82d20,42c03d4905eac891,6ba3b10cbc4173c2\",\n                    \"negative\": false\n                }\n            }\n        ]\n    },\n    \"Tracks\": [\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryType\": \"Music\",\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"TrackNumber\": \"001\",\n            \"LengthSeconds\": \"142\",\n            \"Comment\": \"A gently resonating solo piano is joined by a high sustained string creating a haunting, atmospheric feel, until joined by further restrained, reflective strings and from halfway through, an occasional celeste can be heard\",\n            \"Composer\": \"Jackson / Jones\",\n            \"Publisher\": \"CHALK\",\n            \"Artist\": \"\",\n            \"Name\": \"Beyond The Glass\",\n            \"AlbumID\": \"8d4ce1b004d41882\",\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"ID\": \"47dedde30079643d\",\n            \"Keywords\": \"Delicate, Minimal, Atmospheric, Strings, Piano, Poignant, Light tension, Slow\",\n            \"Lyrics\": \"\",\n            \"DisplayTitle\": \"Beyond The Glass\",\n            \"alternatetitle\": \"A Sparrow's Whisper\",\n            \"Genre\": \"Orchestral/Score\",\n            \"Tempo\": \"\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"\",\n            \"Mixout\": \"\",\n            \"Frequency\": \"48000\",\n            \"Bitrate\": \"24\",\n            \"DateIngested\": \"2018-08-29 21:20:03\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"CHALK001\",\n            \"AlbumName\": \"Quartet - Intimate Classical Score\",\n            \"LibraryName\": \"Chalk\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"5\",\n            \"RightHolderIDs\": [],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"Beyond The Glass\",\n            \"AlbumTitle\": \"Quartet - Intimate Classical Score (FKA CHALK086)\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"Fee\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryType\": \"Music\",\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"TrackNumber\": \"002\",\n            \"LengthSeconds\": \"116\",\n            \"Comment\": \"Pretty and lilting piano melody joined by wind instruments, ambient pads and then strings from about 00:31 on; woodwind melodies, mallets and additional percussion including cymbals lend an almost playful, curious air\",\n            \"Composer\": \"Jackson / Jones\",\n            \"Publisher\": \"CHALK\",\n            \"Artist\": \"\",\n            \"Name\": \"Taking Wing\",\n            \"AlbumID\": \"8d4ce1b004d41882\",\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"ID\": \"23c53c490f3fec88\",\n            \"Keywords\": \"Soft, Delicate, Strings, Piano, Slow, Heartwarming, Moving, Touching, Emotive\",\n            \"Lyrics\": \"\",\n            \"DisplayTitle\": \"Taking Wing\",\n            \"alternatetitle\": \"Baby Kisses Goodnight\",\n            \"Genre\": \"Orchestral/Score\",\n            \"Tempo\": \"\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"\",\n            \"Mixout\": \"\",\n            \"Frequency\": \"48000\",\n            \"Bitrate\": \"24\",\n            \"DateIngested\": \"2018-08-29 21:20:05\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"CHALK001\",\n            \"AlbumName\": \"Quartet - Intimate Classical Score\",\n            \"LibraryName\": \"Chalk\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"5\",\n            \"RightHolderIDs\": [],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"Taking Wing\",\n            \"AlbumTitle\": \"Quartet - Intimate Classical Score (FKA CHALK086)\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"Fee\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryType\": \"Music\",\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"TrackNumber\": \"003\",\n            \"LengthSeconds\": \"126\",\n            \"Comment\": \"Dramatically stirring strings including violin, viola and cello vie for attention; reminscent of spring\",\n            \"Composer\": \"Jackson / Jones\",\n            \"Publisher\": \"CHALK\",\n            \"Artist\": \"\",\n            \"Name\": \"Into Light\",\n            \"AlbumID\": \"8d4ce1b004d41882\",\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"ID\": \"8fed97c866213c96\",\n            \"Keywords\": \"Strings, Light tension, Violin, Viola, Melancholic, Beautiful, Score, Rising, Building, Poignant, Heartbreaking\",\n            \"Lyrics\": \"\",\n            \"DisplayTitle\": \"Into Light\",\n            \"alternatetitle\": \"Withdrawn\",\n            \"Genre\": \"Orchestral/Score\",\n            \"Tempo\": \"\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"\",\n            \"Mixout\": \"\",\n            \"Frequency\": \"48000\",\n            \"Bitrate\": \"24\",\n            \"DateIngested\": \"2018-08-29 21:20:06\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"CHALK001\",\n            \"AlbumName\": \"Quartet - Intimate Classical Score\",\n            \"LibraryName\": \"Chalk\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"4\",\n            \"RightHolderIDs\": [],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"Into Light\",\n            \"AlbumTitle\": \"Quartet - Intimate Classical Score (FKA CHALK086)\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"Fee\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryType\": \"Music\",\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"TrackNumber\": \"004\",\n            \"LengthSeconds\": \"123\",\n            \"Comment\": \"Rippling solo piano begins the piece and gentle strings appear early on adding to the intensity, with additional swelling strings appearing at 00:35; finishes with just the piano melody and a dramatic sustained high string note\",\n            \"Composer\": \"Jackson / Jones\",\n            \"Publisher\": \"CHALK\",\n            \"Artist\": \"\",\n            \"Name\": \"Lost Time\",\n            \"AlbumID\": \"8d4ce1b004d41882\",\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"ID\": \"2d02cb31abb82d20\",\n            \"Keywords\": \"Solo piano, Moving, Score, Beautiful, Sad, Poignant, Hopeful, Intimate, Mid tempo, Adventure, Atmospheric\",\n            \"Lyrics\": \"\",\n            \"DisplayTitle\": \"Lost Time\",\n            \"alternatetitle\": \"Broken Logic\",\n            \"Genre\": \"Orchestral/Score\",\n            \"Tempo\": \"\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"\",\n            \"Mixout\": \"\",\n            \"Frequency\": \"48000\",\n            \"Bitrate\": \"24\",\n            \"DateIngested\": \"2018-08-29 21:20:07\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"CHALK001\",\n            \"AlbumName\": \"Quartet - Intimate Classical Score\",\n            \"LibraryName\": \"Chalk\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"5\",\n            \"RightHolderIDs\": [],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"Lost Time\",\n            \"AlbumTitle\": \"Quartet - Intimate Classical Score (FKA CHALK086)\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"Fee\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryType\": \"Music\",\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"TrackNumber\": \"005\",\n            \"LengthSeconds\": \"125\",\n            \"Comment\": \"Rippling piano ostinato is joined by bittersweet emotive strings with cymbals adding drama, along with wind instruments and additional percussion including triangle\",\n            \"Composer\": \"Jackson / Jones\",\n            \"Publisher\": \"CHALK\",\n            \"Artist\": \"\",\n            \"Name\": \"Strangers Now\",\n            \"AlbumID\": \"8d4ce1b004d41882\",\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"ID\": \"42c03d4905eac891\",\n            \"Keywords\": \"Slow, Strings, Piano, Cymbals, Sad, Moving, Evolving, Rising, Build up, Score\",\n            \"Lyrics\": \"\",\n            \"DisplayTitle\": \"Strangers Now\",\n            \"alternatetitle\": \"Spheres\",\n            \"Genre\": \"Orchestral/Score\",\n            \"Tempo\": \"\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"\",\n            \"Mixout\": \"\",\n            \"Frequency\": \"48000\",\n            \"Bitrate\": \"24\",\n            \"DateIngested\": \"2018-08-29 21:20:08\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"CHALK001\",\n            \"AlbumName\": \"Quartet - Intimate Classical Score\",\n            \"LibraryName\": \"Chalk\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"5\",\n            \"RightHolderIDs\": [],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"Strangers Now\",\n            \"AlbumTitle\": \"Quartet - Intimate Classical Score (FKA CHALK086)\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"Fee\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryType\": \"Music\",\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"TrackNumber\": \"006\",\n            \"LengthSeconds\": \"113\",\n            \"Comment\": \"A delicate, wistful piano bed with atmospheric effects and additional percussion\",\n            \"Composer\": \"Jackson / Jones\",\n            \"Publisher\": \"CHALK\",\n            \"Artist\": \"\",\n            \"Name\": \"At Peace\",\n            \"AlbumID\": \"8d4ce1b004d41882\",\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"ID\": \"6ba3b10cbc4173c2\",\n            \"Keywords\": \"Moving, Touching, Reflective, Piano, Delicate, Gentle, Soft, Fragile, Minimal\",\n            \"Lyrics\": \"\",\n            \"DisplayTitle\": \"At Peace\",\n            \"alternatetitle\": \"Feather Light\",\n            \"Genre\": \"Orchestral/Score\",\n            \"Tempo\": \"\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"\",\n            \"Mixout\": \"\",\n            \"Frequency\": \"48000\",\n            \"Bitrate\": \"24\",\n            \"DateIngested\": \"2018-08-29 21:20:34\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"CHALK001\",\n            \"AlbumName\": \"Quartet - Intimate Classical Score\",\n            \"LibraryName\": \"Chalk\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"6\",\n            \"RightHolderIDs\": [],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"At Peace\",\n            \"AlbumTitle\": \"Quartet - Intimate Classical Score (FKA CHALK086)\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"Fee\": 0\n            }\n        }\n    ],\n    \"Facets\": {\n        \"Libraries\": {\n            \"Items\": [\n                {\n                    \"ID\": \"4d220d57f9cce7c3\",\n                    \"Name\": \"Chalk\",\n                    \"Count\": 1\n                }\n            ]\n        },\n        \"BPM\": {\n            \"Min\": 0,\n            \"Max\": 0\n        },\n        \"Duration\": {\n            \"Min\": 113,\n            \"Max\": 142\n        }\n    },\n    \"UseDatabase\": true,\n    \"CloudSearchUrl\": \"https://search-hmp-search-24zwocirxbv4dnevoubyazqubi.us-east-1.cloudsearch.amazonaws.com/2011-02-01/search?bq=(and env:'S' acctid:371 type:1 stu:1 (not isalt:1..) rgn:'345' (or tid:4156708 tid:4156709 tid:4156710 tid:4156711 tid:4156712 tid:4156713) bug:'bug')&size=32767&return-fields=tid&facet=aid_f&facet-aid_f-top-n=32767&facet=lid_f&facet-lid_f-top-n=32767&facet=stl&facet-stl-top-n=32767&facet=pll_f&facet-pll_f-top-n=32767&facet=cat_f&facet-cat_f-top-n=32767&facet=bpm&facet-bpm-top-n=32767&facet=dur&facet-dur-top-n=32767\"\n}"},{"id":"1497071f-6ab9-417f-aa6e-a3b2a8dffedd","name":"Get Search Default (Albums)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"ReturnCSUrl\": \"true\",\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": \"Music\",\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"ST_Album\": {\r\n                \"Albums\": \"a2c31cf075f94733,09af5e30c44e89ce,b580300004445d1b,2d42f735db56ea82\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Album\",\r\n            \"Sort_Predefined\": \"\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Jan 2024 04:37:20 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalTracks\": 44,\n    \"TotalAlbums\": 4,\n    \"TotalLibraries\": 2,\n    \"TotalStyles\": 0,\n    \"TotalPlaylists\": 1,\n    \"SearchParameters\": {\n        \"searchtype\": \"Normal\",\n        \"memberaccount\": \"92662dfe696a497f\",\n        \"region\": \"88f8791e732f07e1\",\n        \"includeinactive\": false,\n        \"mainonly\": true,\n        \"alternativeonly\": false,\n        \"librarytype\": \"Music\",\n        \"resultview\": {\n            \"view\": \"Album\",\n            \"rankexpression\": \"\",\n            \"skip\": 0,\n            \"limit\": 4,\n            \"saved\": false,\n            \"mincount\": 0,\n            \"returntrackcategoryid\": false,\n            \"facet_album\": false,\n            \"facet_albumskip\": 0,\n            \"facet_albumlimit\": 0,\n            \"facet_library\": true,\n            \"facet_libraryskip\": 0,\n            \"facet_librarylimit\": 0,\n            \"facet_librarysort\": \"Count_Desc\",\n            \"facet_style\": false,\n            \"facet_styleskip\": 0,\n            \"facet_stylelimit\": 0,\n            \"facet_category\": true,\n            \"facet_categoryskip\": 0,\n            \"facet_categorylimit\": 0,\n            \"facet_categorysort\": \"Count_Desc\",\n            \"facet_composer\": false,\n            \"facet_composerskip\": 0,\n            \"facet_composerlimit\": 0,\n            \"bpm_range\": false,\n            \"duration_range\": false,\n            \"include_alternates\": false,\n            \"include_rightholders\": false,\n            \"include_lyrics\": false,\n            \"include_keywords\": false,\n            \"tracks_per_album\": 0,\n            \"facet_bpm\": true,\n            \"facet_duration\": true,\n            \"facet_releaseyear\": false,\n            \"view_style_album_count\": false,\n            \"view_style_playlist_count\": false,\n            \"view_track_categories\": false,\n            \"evoke_prioritizebpm\": false,\n            \"evoke_suppressvocals\": false,\n            \"view_album_assigned_to_style\": false,\n            \"view_playlist_assigned_to_style\": false,\n            \"returnrates\": false\n        },\n        \"nearestduration\": false,\n        \"nearestbpm\": false,\n        \"nearestalternate\": false,\n        \"PreviousSearchTermBundles\": [\n            {\n                \"SearchHistoryID\": 0,\n                \"st_album\": {\n                    \"searchtermid\": 4096,\n                    \"Albums\": \"a2c31cf075f94733,09af5e30c44e89ce,b580300004445d1b,2d42f735db56ea82\",\n                    \"negative\": false\n                }\n            }\n        ]\n    },\n    \"Albums\": [\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"LibraryName\": \"Chalk\",\n            \"LibraryType\": \"Music\",\n            \"ReleaseDate\": \"2018-05-24 00:00:00\",\n            \"Code\": \"CHALK009\",\n            \"Detail\": \"Soaring, emotive, inspiring indie and evolving indie-tinged score, featuring piano and strings\",\n            \"Name\": \"Slow Burn - Building Cinematic Indie (FKA CHALK061/CHALK-CMP904)\",\n            \"DisplayTitle\": \"Slow Burn - Building Cinematic Indie\",\n            \"Keywords\": \"Slow burning, Indie, Strings, Emotive, Building, Uplifting, Emotional\",\n            \"ID\": \"a2c31cf075f94733\",\n            \"TrackCount\": \"15\",\n            \"AlbumRate\": {\n                \"Fee\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"LibraryName\": \"Chalk\",\n            \"LibraryType\": \"Music\",\n            \"ReleaseDate\": \"2018-07-06 00:00:00\",\n            \"Code\": \"CHALK012\",\n            \"Detail\": \"Downtempo mellow folk-inflected tracks full of warmth, for a relaxed pace of life\",\n            \"Name\": \"Warmhearted - Easygoing Acoustic Folk (FKA CHALK066/CHALK-CMP903)\",\n            \"DisplayTitle\": \"Warmhearted - Easygoing Acoustic Folk\",\n            \"Keywords\": \"Downtempo, mellow, warm, folk, acoustic, acoustic guitar, slow, relaxed, pastoral, nature, content, warm heart, warmheart, warmhearted\",\n            \"ID\": \"09af5e30c44e89ce\",\n            \"TrackCount\": \"14\",\n            \"AlbumRate\": {\n                \"Fee\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"4d220d57f9cce7c3\",\n            \"LibraryName\": \"Chalk\",\n            \"LibraryType\": \"Music\",\n            \"ReleaseDate\": \"2018-04-20 00:00:00\",\n            \"Code\": \"CHALK008\",\n            \"Detail\": \"Beautifully crafted and intimate neo-classical pop, packed full with emotion, raw live strings and stunning vocal performances\",\n            \"Name\": \"Raw Beauty - Emotive Neo-Classical Pop\",\n            \"DisplayTitle\": \"Raw Beauty - Emotive Neo-Classical Pop\",\n            \"Keywords\": \"Sad,emotive,reflective,emotional\",\n            \"ID\": \"b580300004445d1b\",\n            \"TrackCount\": \"13\",\n            \"AlbumRate\": {\n                \"Fee\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"c15dbefad30a4f8f\",\n            \"LibraryName\": \"Cloud Search\",\n            \"LibraryType\": \"Music\",\n            \"ReleaseDate\": \"2017-08-11 00:00:00\",\n            \"Code\": \"TEST000\",\n            \"Detail\": \"Version 3.0 LIVE\",\n            \"Name\": \"Contol Ingestion Test\",\n            \"DisplayTitle\": \"TEST000 Contol Ingestion Test\",\n            \"Keywords\": \"Album Keyword test 01\",\n            \"ID\": \"2d42f735db56ea82\",\n            \"TrackCount\": \"2\",\n            \"AlbumRate\": {\n                \"Fee\": 0\n            }\n        }\n    ],\n    \"Facets\": {\n        \"Libraries\": {\n            \"Items\": [\n                {\n                    \"ID\": \"4d220d57f9cce7c3\",\n                    \"Name\": \"Chalk\",\n                    \"Count\": 3\n                },\n                {\n                    \"ID\": \"c15dbefad30a4f8f\",\n                    \"Name\": \"Cloud Search\",\n                    \"Count\": 1\n                }\n            ]\n        },\n        \"BPM\": {\n            \"Min\": 0,\n            \"Max\": 200\n        },\n        \"Duration\": {\n            \"Min\": 4,\n            \"Max\": 310\n        }\n    },\n    \"UseDatabase\": true,\n    \"CloudSearchUrl\": \"https://search-hmp-search-24zwocirxbv4dnevoubyazqubi.us-east-1.cloudsearch.amazonaws.com/2011-02-01/search?bq=(and env:'S' acctid:371 type:1 stu:1 (not isalt:1..) rgn:'345' (or aid:98981 aid:103189 aid:124465 aid:176158) bug:'bug')&size=0&facet-aid_f-sort=-max(generic)&facet=aid_f&facet-aid_f-top-n=32767&facet=lid_f&facet-lid_f-top-n=32767&facet=stl&facet-stl-top-n=32767&facet=pll_f&facet-pll_f-top-n=32767&facet=cat_f&facet-cat_f-top-n=32767&facet=bpm&facet-bpm-top-n=32767&facet=dur&facet-dur-top-n=32767\"\n}"},{"id":"f70f0f16-2c51-4b06-bbed-0855d025fa82","name":"Get Search Default (Libraries)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"ReturnCSUrl\": \"true\",\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": \"Music\",\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"ST_Library\": {\r\n                \"Libraries\": \"4d220d57f9cce7c3,c15dbefad30a4f8f\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Library\",\r\n            \"Sort_Predefined\": \"\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"100\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Jan 2024 04:47:33 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalTracks\": 202,\n    \"TotalAlbums\": 15,\n    \"TotalLibraries\": 2,\n    \"TotalStyles\": 0,\n    \"TotalPlaylists\": 1,\n    \"SearchParameters\": {\n        \"searchtype\": \"Normal\",\n        \"memberaccount\": \"92662dfe696a497f\",\n        \"region\": \"88f8791e732f07e1\",\n        \"includeinactive\": false,\n        \"mainonly\": true,\n        \"alternativeonly\": false,\n        \"librarytype\": \"Music\",\n        \"resultview\": {\n            \"view\": \"Library\",\n            \"rankexpression\": \"\",\n            \"skip\": 0,\n            \"limit\": 2,\n            \"saved\": false,\n            \"mincount\": 0,\n            \"returntrackcategoryid\": false,\n            \"facet_album\": false,\n            \"facet_albumskip\": 0,\n            \"facet_albumlimit\": 0,\n            \"facet_library\": true,\n            \"facet_libraryskip\": 0,\n            \"facet_librarylimit\": 0,\n            \"facet_librarysort\": \"Count_Desc\",\n            \"facet_style\": false,\n            \"facet_styleskip\": 0,\n            \"facet_stylelimit\": 0,\n            \"facet_category\": true,\n            \"facet_categoryskip\": 0,\n            \"facet_categorylimit\": 0,\n            \"facet_categorysort\": \"Count_Desc\",\n            \"facet_composer\": false,\n            \"facet_composerskip\": 0,\n            \"facet_composerlimit\": 0,\n            \"bpm_range\": false,\n            \"duration_range\": false,\n            \"include_alternates\": false,\n            \"include_rightholders\": false,\n            \"include_lyrics\": false,\n            \"include_keywords\": false,\n            \"tracks_per_album\": 0,\n            \"facet_bpm\": true,\n            \"facet_duration\": true,\n            \"facet_releaseyear\": false,\n            \"view_style_album_count\": false,\n            \"view_style_playlist_count\": false,\n            \"view_track_categories\": false,\n            \"evoke_prioritizebpm\": false,\n            \"evoke_suppressvocals\": false,\n            \"view_album_assigned_to_style\": false,\n            \"view_playlist_assigned_to_style\": false,\n            \"returnrates\": false\n        },\n        \"nearestduration\": false,\n        \"nearestbpm\": false,\n        \"nearestalternate\": false,\n        \"PreviousSearchTermBundles\": [\n            {\n                \"SearchHistoryID\": 0,\n                \"st_library\": {\n                    \"searchtermid\": 131072,\n                    \"Libraries\": \"4d220d57f9cce7c3,c15dbefad30a4f8f\",\n                    \"negative\": false\n                }\n            }\n        ]\n    },\n    \"Libraries\": [\n        {\n            \"AlbumCount\": 14,\n            \"TrackCount\": 0,\n            \"Featured\": false,\n            \"Detail\": \"\",\n            \"Name\": \"Chalk\",\n            \"Type\": \"Music\",\n            \"ID\": \"4d220d57f9cce7c3\"\n        },\n        {\n            \"AlbumCount\": 1,\n            \"TrackCount\": 0,\n            \"Featured\": false,\n            \"Detail\": \"Testing ingestion and lalo other post ingestion functions for cloud search \",\n            \"Name\": \"Cloud Search\",\n            \"Type\": \"Music\",\n            \"ID\": \"c15dbefad30a4f8f\"\n        }\n    ],\n    \"Facets\": {\n        \"Libraries\": {\n            \"Items\": [\n                {\n                    \"ID\": \"4d220d57f9cce7c3\",\n                    \"Name\": \"Chalk\",\n                    \"Count\": 14\n                },\n                {\n                    \"ID\": \"c15dbefad30a4f8f\",\n                    \"Name\": \"Cloud Search\",\n                    \"Count\": 1\n                }\n            ]\n        },\n        \"BPM\": {\n            \"Min\": 0,\n            \"Max\": 200\n        },\n        \"Duration\": {\n            \"Min\": 4,\n            \"Max\": 322\n        }\n    },\n    \"UseDatabase\": true,\n    \"CloudSearchUrl\": \"https://search-hmp-search-24zwocirxbv4dnevoubyazqubi.us-east-1.cloudsearch.amazonaws.com/2011-02-01/search?bq=(and env:'S' acctid:371 type:1 stu:1 (not isalt:1..) rgn:'345' (or lid:1379 lid:2422) bug:'bug')&size=0&facet-lid_f-sort=-max(generic)&facet=aid_f&facet-aid_f-top-n=32767&facet=lid_f&facet-lid_f-top-n=32767&facet=stl&facet-stl-top-n=32767&facet=pll_f&facet-pll_f-top-n=32767&facet=cat_f&facet-cat_f-top-n=32767&facet=bpm&facet-bpm-top-n=32767&facet=dur&facet-dur-top-n=32767\"\n}"}],"_postman_id":"b3214017-6d44-487e-a714-85a4d6e93ab8"}],"id":"35361982-0c1f-454c-88f7-a575168bed4f","_postman_id":"35361982-0c1f-454c-88f7-a575168bed4f","description":""},{"name":"Suggestions Search","item":[{"name":"Get Suggested Keywords","event":[{"listen":"test","script":{"id":"c12db662-d47c-40b9-b5d1-bf3b571d9233","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"fd60793b-4037-455e-b8d0-0fea59b46a48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"keyword\": \"\",\r\n    \"wildcard\": true,\r\n    \"LibraryType\": \"Music\",\r\n    \"ReturnKeywords\": true,\r\n    \"ReturnKeywordsMaxSize\": 100,\r\n    \"ReturnKeywordsForMatch\": true,\r\n    \"ReturnKeywordsForMatch_Fields\": \"TrackKeywords\",\r\n    \"ReturnKeywordsForMatch_HideWhenSearchTerm\": true,\r\n    \"ReturnKeywordsDisableKeywordGroup\": false,\r\n    \"searchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"MainOnly\": \"true\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"LibraryType\": \"Music\",\r\n        \"HasStems\": null,\r\n        \"previousSearchTermBundles\": [\r\n            {\r\n                \"st_keyword_aggregated\": {\r\n                    \"exactPhrase\": false,\r\n                    \"negative\": false,\r\n                    \"wildcard\": true,\r\n                    \"disableKeywordGroup\": false,\r\n                    \"orOperation\": false,\r\n                    \"keywords\": \"pop\"\r\n                }\r\n            }\r\n        ]\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/autocomplete/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Can only be called after at least one search term has been entered</p>\n","urlObject":{"path":["autocomplete","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"2f8ab71b-ca03-42ab-bfbe-9e7b4affb78e","name":"Get Suggested Keywords","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"Keyword\":\"france\",\r\n\t\"Wildcard\":true,\r\n\t\"ReturnTracks\":true,\r\n\t\"ReturnTracks_MainOnly\":true,\r\n\t\"ReturnTracks_Fields\":\"DisplayTitle,Keywords,AlternateTitle\",\r\n\t\"ReturnTracks_Limit\":1,\r\n\t\"ReturnTracks_Order\":\"\",\r\n\t\"ReturnTracks_DisableKeywordGroup\":true,\r\n\t\"ReturnTracks_Rank\":\"\",\r\n\t\"ReturnAlbums\":true,\r\n\t\"ReturnAlbums_Fields\":\"CdCode,DisplayTitle,Description,Keywords\",\r\n\t\"ReturnAlbums_Limit\":1,\r\n\t\"ReturnAlbums_Order\":\"\",\r\n\t\"ReturnAlbums_DisableKeywordGroup\":false,\r\n\t\"ReturnLibraries\":true,\r\n\t\"ReturnLibraries_Fields\":\"Name,Prefix,Description\",\r\n\t\"ReturnLibraries_Limit\":1,\r\n\t\"ReturnLibraries_DisableKeywordGroup\":false,\r\n\t\"ReturnStyles\":true,\r\n\t\"ReturnStyles_Limit\":1,\r\n\t\"ReturnStyles_Order\":\"\",\r\n\t\"ReturnStyles_DisableKeywordGroup\":false,\r\n\t\"ReturnCategoryAttributes\":true,\r\n\t\"ReturnCategoryAttributes_Limit\":1,\r\n\t\"ReturnCategoryAttributes_ShowOnPlayerOnly\":false,\r\n\t\"ReturnCategoryAttributes_IncludeCategory\":false,\r\n\t\"ReturnCategoryAttributes_Order\":\"AllAlphabetic\",\r\n\t\"ReturnCategoryAttributes_DisableKeywordGroup\":false,\r\n\t\"ReturnRightHolders\":true,\r\n\t\"ReturnRightHolders_Fields\":\"firstname, lastname\",\r\n\t\"ReturnRightHolders_Limit\":1,\r\n\t\"ReturnRightHolders_DisableKeywordGroup\":false,\r\n\t\"RightHolderTypes\":\"Artist\",\r\n\t\"ReturnLyrics\":true,\r\n\t\"ReturnLyrics_Limit\":1,\r\n\t\"ReturnLyrics_MainOnly\":false,\r\n\t\"ReturnLyrics_DisableKeywordGroup\":false,\r\n\t\"ReturnKeywords\":true,\r\n\t\"ReturnKeywordsMaxSize\":1,\r\n\t\"ReturnKeywordsForMatch\":false,\r\n    \"ReturnKeywordsForMatch_Fields\":\"\",\r\n    \"ReturnKeywordsForMatch_HideWhenSearchTerm\":false,\r\n\t\"ReturnKeywordsDisableKeywordGroup\":false,\r\n\t\"ReturnFeaturedPlaylists\":true,\r\n\t\"ReturnFeaturedPlaylist_Fields\":\"ProjectTitle,Description\",\r\n\t\"ReturnFeaturedPlaylists_Limit\": 1,\r\n\t\"ReturnFeaturedPlaylist_Order\":\"Alphabetic_Ascent\",\r\n\t\"ReturnFeaturedPlaylists_DisableKeywordGroup\":false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/autocomplete/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Nov 2024 04:59:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"AlbumsFound\": 3,\n    \"Albums\": [\n        {\n            \"AlbumID\": \"e17ca409526752bb\",\n            \"CDCode\": \"WOM167\",\n            \"DisplayTitle\": \"WOM 167 Le Voyage De La Vie\",\n            \"TrackCount\": \"48\"\n        }\n    ],\n    \"TracksFound\": 2,\n    \"Tracks\": [\n        {\n            \"TrackID\": \"0c9ebe9102db2567\",\n            \"CDCode\": \"WOMG 021\",\n            \"TrackNumber\": \"014\",\n            \"DisplayTitle\": \"Porcelain\",\n            \"AlternateTitle\": \"\",\n            \"AlbumID\": \"0df020525f6629b2\"\n        }\n    ],\n    \"StylesFound\": 0,\n    \"TagsFound\": 0,\n    \"CategoryAttributesFound\": 0,\n    \"LibraryFound\": 0,\n    \"ComposerFound\": 0,\n    \"RightHolderFound\": 3,\n    \"rightHolders\": [\n        {\n            \"RightHolderID\": \"1f4320b8e61624f1\",\n            \"FirstName\": \"Francesco\",\n            \"LastName\": \"Siano\",\n            \"Name\": \"\",\n            \"MiddleName\": \"\",\n            \"IPI\": \"427681343\",\n            \"Type\": \"Artist\"\n        }\n    ],\n    \"LyricFound\": 0,\n    \"FeaturedPlaylistsFound\": 0,\n    \"KeywordsFound\": 1\n}"}],"_postman_id":"fd60793b-4037-455e-b8d0-0fea59b46a48"}],"id":"ff9d6321-4062-4b2f-a421-9e65063b03d1","_postman_id":"ff9d6321-4062-4b2f-a421-9e65063b03d1","description":""},{"name":"Predictive Search","item":[{"name":"Get Predictive Search","event":[{"listen":"test","script":{"id":"c12db662-d47c-40b9-b5d1-bf3b571d9233","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"be844c0b-9650-4a12-b5a1-aa1b4af1a338","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"Keyword\": \"happy\",\r\n\t\"Wildcard\": true,\r\n    \"LibraryType\": \"Music\",\r\n\t\"ReturnTracks\": true,\r\n\t\"ReturnTracks_MainOnly\": true,\r\n\t\"ReturnTracks_Fields\": \"DisplayTitle,Keywords,Instrumentation,MusicFor,Mood\",\r\n\t\"ReturnTracks_Limit\": 1,\r\n\t\"ReturnTracks_Order\": \"Date_Descent\",\r\n\t\"ReturnTracks_DisableKeywordGroup\": true,\r\n\t\"ReturnTracks_Rank\": \"\",\r\n\t\"ReturnAlbums\": false,\r\n\t\"ReturnLyrics\": false,\r\n\t\"ReturnFeaturedPlaylists\": false,\r\n    \"ReturnLibraries\": false,\r\n    \"ReturnStyles\": false,\r\n    \"ReturnCategoryAttributes\": false,\r\n    \"ReturnRightHolders\": false,\r\n    \"ReturnKeywords\": false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/autocomplete/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["autocomplete","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"be844c0b-9650-4a12-b5a1-aa1b4af1a338"}],"id":"3170a8c9-fb32-4c2c-803e-fb540e79fea7","_postman_id":"3170a8c9-fb32-4c2c-803e-fb540e79fea7","description":""}],"id":"658e6dac-9a66-4d70-8f60-5bc59daf3d83","_postman_id":"658e6dac-9a66-4d70-8f60-5bc59daf3d83","description":""},{"name":"Track Info Page","item":[{"name":"Get Track Details","event":[{"listen":"test","script":{"id":"d523a71a-0877-4323-8702-7b9060788951","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"46bb379c-e6fa-431b-a522-699576345e91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"ReturnAlternateVersions\":\"true\",\r\n\t\"ReturnAttributes\":\"false\",\r\n\t\"ReturnCategories\":\"true\",\r\n\t\"ReturnCategoryFacet\":\"false\",\r\n\t\"ReturnCodes\":\"false\",\r\n\t\"ReturnComposers\":\"false\",\r\n\t\"ReturnRelatedTracks\":\"false\",\r\n\t\"ReturnRightHolders\":\"true\",\r\n    \"ReturnStems\": \"true\",\r\n\t\"GetMainVersionFromAlternate\":\"false\",\r\n\t\"CuesheetOnlyCodesAndAttribute\":\"false\",\r\n\t\"ReturnInactiveTracks\":\"false\",\r\n    \"ReturnRegionOnlyTracks\":\"false\",\r\n\t\"track\":[\"{{HM_ServiceAPI_TrackID}}\"]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/gettracks/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["gettracks","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"46bb379c-e6fa-431b-a522-699576345e91"},{"name":"Get Similar Tracks","event":[{"listen":"test","script":{"id":"1b0fddcd-a083-47c7-bab4-f63531d74b1d","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"b6b46d5c-6592-4918-aaf6-c3291349cd29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SearchFilters\": {\r\n        \"SearchTermBundle\": {\r\n            \"St_Audio\": {\r\n                \"Audio\":[{\"TrackID\": \"{{HM_ServiceAPI_TrackID}}\"}],\r\n                \"Start\": \"\",\r\n                \"Duration\": \"\"   \r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"Sort_Predefined\": \"EvokeRanking\",\r\n            \"Evoke_IncludeSeed\": false,\r\n            \"Limit\": \"5\"\r\n        }\r\n    }\r\n}"},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b6b46d5c-6592-4918-aaf6-c3291349cd29"}],"id":"413dc6d7-83b7-42a4-8eee-32a901ca47e2","_postman_id":"413dc6d7-83b7-42a4-8eee-32a901ca47e2","description":""},{"name":"All Labels Page","item":[{"name":"Get Labels","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"7350e4a9-f9f3-436d-9a3b-717f33ed75e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword\": {\r\n                \"Fields\": \"LibraryName\",\r\n                \"ExactPhrase\": false,\r\n                \"Wildcard\": true,\r\n                \"DisableKeywordGroup\": false,\r\n                \"OrOperation\": false,\r\n                \"Negative\": false,\r\n                \"Keywords\": \"%\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Library\",\r\n            \"View_Library_Count\":\"Track\",\r\n            \"Sort_Predefined\": \"Alphabetic_Asc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"20\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7350e4a9-f9f3-436d-9a3b-717f33ed75e1"},{"name":"Get Labels Filtered By Search","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"8a1ab065-d671-4fd3-b9c9-c636cd918e6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"PreviousSearchTermBundles\": [\r\n            {\r\n                \"SearchHistoryID\": 11676466,\r\n                \"St_Keyword\": {\r\n                    \"Fields\": \"LibraryName\",\r\n                    \"ExactPhrase\": false,\r\n                    \"Wildcard\": true,\r\n                    \"DisableKeywordGroup\": false,\r\n                    \"OrOperation\": false,\r\n                    \"Negative\": false,\r\n                    \"Keywords\": \"%\"\r\n                }\r\n            }\r\n        ],\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"false\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"dark horse\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Library\",\r\n            \"View_Library_Count\":\"Track\",\r\n            \"Sort_Predefined\": \"Alphabetic_Asc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"20\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8a1ab065-d671-4fd3-b9c9-c636cd918e6f"}],"id":"0e427b76-11ab-4867-a067-e4bd11d7f518","_postman_id":"0e427b76-11ab-4867-a067-e4bd11d7f518","description":""},{"name":"Label Page","item":[{"name":"Get Label","event":[{"listen":"test","script":{"id":"eee6fe17-9678-4b01-b9e4-2b6092ab87f9","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"81d5e167-e2fe-4660-989f-5be214cf3ba6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getlibrary/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_LibraryID}}","urlObject":{"path":["getlibrary","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_LibraryID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"81d5e167-e2fe-4660-989f-5be214cf3ba6"},{"name":"Get Latest Albums","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"3622fc18-a7f6-4605-ae4a-dbc747f7ef2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Library\": {\r\n            \t\"Libraries\": \"a22b13jd6456cf03a1\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Album\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"15\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3622fc18-a7f6-4605-ae4a-dbc747f7ef2c"}],"id":"20d2d2d9-3029-4d1f-aaa9-6dad20410974","_postman_id":"20d2d2d9-3029-4d1f-aaa9-6dad20410974","description":""},{"name":"All Albums Page","item":[{"name":"Get Labels for Dropdown","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"eac3c9f6-a53c-4691-a186-fcd80a115031","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"false\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"%\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Library\",\r\n            \"View_Library_Count\":\"Track\",\r\n            \"Sort_Predefined\": \"Alphabetic_Asc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"20\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"eac3c9f6-a53c-4691-a186-fcd80a115031"},{"name":"Get Collections for Dropdown","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"2d234dba-0193-43b2-8447-6b543c2062a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"false\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"%\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Style\",\r\n            \"Sort_Predefined\": \"Alphabetic_Asc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"5\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2d234dba-0193-43b2-8447-6b543c2062a0"},{"name":"Get Albums (No Filters)","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"a9cff265-1b8f-431a-8bb2-cc47058524f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"false\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"%\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Album\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"20\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a9cff265-1b8f-431a-8bb2-cc47058524f6"},{"name":"Get Albums Filtered By Label","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"47767b4e-00f0-4f04-b88c-7747a26d5cfb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Library\": {\r\n            \t\"Libraries\": \"a22b13jd6456cf03a1\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Album\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"20\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"47767b4e-00f0-4f04-b88c-7747a26d5cfb"},{"name":"Get Albums Filtered By Style","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"933f4aa0-b9fc-4ff3-b7b2-c067167ce0fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Style\": {\r\n                \"Styles\": \"a22b13jd6456cf03a1\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Album\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"20\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"933f4aa0-b9fc-4ff3-b7b2-c067167ce0fd"},{"name":"Get Albums Filtered By Label & Style","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"1354715d-3036-4357-969b-b8f1d53edf98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Library\": {\r\n                \"Libraries\": \"b666754e0fa69f1790\",\r\n                \"Negative\": false\r\n            },\r\n            \"St_Style\": {\r\n                \"Styles\": \"a22b13jd6456cf03a1\",\r\n                \"Negative\": false\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Album\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"20\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1354715d-3036-4357-969b-b8f1d53edf98"}],"id":"e5a78da2-8523-436b-a062-6b05b36d21a6","_postman_id":"e5a78da2-8523-436b-a062-6b05b36d21a6","description":""},{"name":"Album Page","item":[{"name":"Get Album","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"4bdf05d5-c96a-44ae-bfbd-efd9ade24523","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Album\": {\r\n                \"Albums\": \"g56ed5590ha8c7c34d\",\r\n                \"Negative\": \"\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Album\",\r\n            \"Sort_Predefined\": \"Alphabetic_Asc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"1\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4bdf05d5-c96a-44ae-bfbd-efd9ade24523"},{"name":"Get Album Tracks","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"bbcb108f-eec1-4b93-bc6c-bebc0e2bddaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"ReturnCSUrl\": true,\r\n    \"SaveSearchHistory\": \"true\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Album\": {\r\n                \"Albums\": \"ab7908fb71697899\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"View_Style_Album_Count\": \"false\",\r\n            \"View_Style_Playlist_Count\": \"false\",\r\n            \"View_Album_Assigned_To_Style\": \"false\",\r\n            \"View_Playlist_Assigned_To_Style\": \"false\",\r\n            \"Sort_Predefined\": \"Alphabetic_Asc \",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"100\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bbcb108f-eec1-4b93-bc6c-bebc0e2bddaf"},{"name":"Get Track Details","event":[{"listen":"test","script":{"id":"d523a71a-0877-4323-8702-7b9060788951","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"de0cd323-f9ca-416e-b76b-8767f25fecff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"ReturnAlternateVersions\":\"true\",\r\n\t\"ReturnAttributes\":\"false\",\r\n\t\"ReturnCategories\":\"false\",\r\n\t\"ReturnCategoryFacet\":\"false\",\r\n\t\"ReturnCodes\":\"false\",\r\n\t\"ReturnComposers\":\"false\",\r\n\t\"ReturnRelatedTracks\":\"false\",\r\n\t\"ReturnRightHolders\":\"true\",\r\n    \"ReturnStems\": \"false\",\r\n\t\"GetMainVersionFromAlternate\":\"false\",\r\n\t\"CuesheetOnlyCodesAndAttribute\":\"false\",\r\n\t\"ReturnInactiveTracks\":\"false\",\r\n    \"ReturnRegionOnlyTracks\":\"false\",\r\n\t\"track\":[\"{{HM_ServiceAPI_TrackID}}\"]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/gettracks/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["gettracks","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"de0cd323-f9ca-416e-b76b-8767f25fecff"},{"name":"Get Related Albums","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"d4c9f948-7fd5-4b15-9c4d-239a3646ad03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Style\": {\r\n                \"Styles\": \"189ff1b76392046f,4972a6d41723a81e,f38d313245e6a333,6c481973f31eb1e3\",\r\n                \"OrOperation\": \"true\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Album\",\r\n            \"Sort_Predefined\": \"Random\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"4\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d4c9f948-7fd5-4b15-9c4d-239a3646ad03"},{"name":"Get Album (non-CS)","id":"6eb7eee0-a162-4d98-b6b5-4cb8bef0a373","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{HM_ServiceAPI_URL}}/getalbumtracks/{{HM_ServiceAPI_MemberToken}}/{AlbumID}/mainonly?skip={skip}&limit={limit}","urlObject":{"path":["getalbumtracks","{{HM_ServiceAPI_MemberToken}}","{AlbumID}","mainonly"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"skip","value":"{skip}"},{"key":"limit","value":"{limit}"}],"variable":[]}},"response":[],"_postman_id":"6eb7eee0-a162-4d98-b6b5-4cb8bef0a373"}],"id":"9305a0a8-9f07-4da8-ab2b-c25039453233","_postman_id":"9305a0a8-9f07-4da8-ab2b-c25039453233","description":""},{"name":"All Playlists Page","item":[{"name":"DISCO","item":[{"name":"Send Member Playlist to Disco","event":[{"listen":"test","script":{"id":"1b23b05d-01f9-470d-aa38-db2017489c1c","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"6dc9c954-7626-41dc-8232-8ffe04e47db4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_IntegrationAPI_URL}}/sendtodisco/{{HM_ServiceAPI_MemberToken}}/{{playlistID}}?fileformatid={{optional_fileformatID}}","urlObject":{"path":["sendtodisco","{{HM_ServiceAPI_MemberToken}}","{{playlistID}}"],"host":["{{HM_IntegrationAPI_URL}}"],"query":[{"key":"fileformatid","value":"{{optional_fileformatID}}"}],"variable":[]}},"response":[{"id":"a533ecf1-cb1d-4ee7-aad7-30115e29e7fc","name":"Send Member Playlist to Disco (JSON)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":{"raw":"{{HM_ServiceAPI_URL}}/sendtodisco/{{HM_ServiceAPI_MemberToken}}/{{playlistid}}?fileformatid={{optional_fileformatID}}","host":["{{HM_ServiceAPI_URL}}"],"path":["sendtodisco","{{HM_ServiceAPI_MemberToken}}","{{playlistid}}"],"query":[{"key":"fileformatid","value":"{{optional_fileformatID}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 May 2025 04:03:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"No-Cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": \"c1c61173-0272-4b61-84de-6e970d373110\",\n    \"url\": \"https://service-w4vblywy.disco.ac/lib/add-to-disco/?token=c1c61173-0272-4b61-84de-6e970d373110\"\n}"}],"_postman_id":"6dc9c954-7626-41dc-8232-8ffe04e47db4"},{"name":"Share Member Playlist to Disco","id":"b2453f68-5262-43aa-9ed0-e0787d86df8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"PlaylistID\": \"{{PlaylistID}}\",\r\n    \"FileFormatID\": \"{{FileFormatID}}\",\r\n    \"RecipientInboxURL\": \"{{RecipientInboxURL}}\",\r\n    \"Note\": \"{{Notes}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_IntegrationAPI_URL}}/sharetodisco/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["sharetodisco","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_IntegrationAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"a0554404-c792-4fc1-a9f0-3486be574a31","name":"Share Member Playlist to Disco (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"PlaylistID\": \"84ecf73c24f45983\",\r\n    \"FileFormatID\": \"7026280a00766607\",\r\n    \"RecipientInboxURL\": \"https://s.disco.ac/jrodofxcphxm\",\r\n    \"Note\": \"Here is your BIG playlist\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/sharetodisco/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Thu, 30 Apr 2026 06:41:58 GMT"},{"key":"content-type","value":"application/json"},{"key":"cache-control","value":"no-cache, no-store"},{"key":"pragma","value":"no-cache"},{"key":"content-encoding","value":"gzip"},{"key":"expires","value":"-1"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"access-control-allow-origin","value":"*"},{"key":"x-aspnet-version","value":"4.0.30319"},{"key":"x-powered-by","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"ActivityID\": \"b1850e380186ee50\",\n    \"Status\": \"Pending\"\n}"}],"_postman_id":"b2453f68-5262-43aa-9ed0-e0787d86df8b"},{"name":"Get External Share Status History - No RelationID","event":[{"listen":"test","script":{"id":"1b23b05d-01f9-470d-aa38-db2017489c1c","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"62224122-88d1-4298-b476-611627d14f78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"RelationType\": \"Playlist\",\r\n    \"Skip\": {{Skip}},\r\n    \"Limit\": {{limit}},\r\n    \"Sort\": \"DateAdded_Asc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getexternalsharestatushistory/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["getexternalsharestatushistory","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"4ea9d01c-6c91-4bfa-a54c-3f6d39b55b51","name":"Get External Share Status History - No RelationID (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"RelationType\": \"Playlist\",\r\n    \"RelationID\": \"{{PlaylistID}}\",\r\n    \"Skip\": {{Skip}},\r\n    \"Limit\": {{limit}},\r\n    \"Sort\": \"DateAdded_Asc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getexternalsharestatushistory/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Tue, 12 May 2026 05:31:54 GMT"},{"key":"content-type","value":"application/json"},{"key":"cache-control","value":"no-cache, no-store"},{"key":"pragma","value":"no-cache"},{"key":"content-encoding","value":"gzip"},{"key":"expires","value":"-1"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"access-control-allow-origin","value":"*"},{"key":"x-aspnet-version","value":"4.0.30319"},{"key":"x-powered-by","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"ExternalShareStatusHistory\": [\n        {\n            \"ID\": \"272f1d66c82967de\",\n            \"Type\": \"DISCO_Share\",\n            \"Style\": \"Information\",\n            \"DateAdded\": \"2026-05-12T12:02:44.783\",\n            \"RelationType\": \"Playlist\",\n            \"RelationID\": \"4d574935ca3d22c3\",\n            \"Message\": \"RecordSent\",\n            \"MessageDetail\": \"\",\n            \"Status\": \"Error\",\n            \"ErrorMessage\": \"Error on generating track URLs - Internal Operation Error\"\n        },\n        {\n            \"ID\": \"4d3ddcd6da8eed45\",\n            \"Type\": \"DISCO_Share\",\n            \"Style\": \"Information\",\n            \"DateAdded\": \"2026-05-12T12:03:27.447\",\n            \"RelationType\": \"Playlist\",\n            \"RelationID\": \"4ea153312c6cd77f\",\n            \"Message\": \"RecordSent\",\n            \"MessageDetail\": \"\",\n            \"Status\": \"Error\",\n            \"ErrorMessage\": \"Error in searching playlist track - Unexpected character encountered while parsing value: <. Path '', line 0, position 0.\"\n        },\n        {\n            \"ID\": \"bc371530fd7e64c1\",\n            \"Type\": \"DISCO_Share\",\n            \"Style\": \"Information\",\n            \"DateAdded\": \"2026-05-12T12:04:10.04\",\n            \"RelationType\": \"Playlist\",\n            \"RelationID\": \"6ec1a87444201b29\",\n            \"Message\": \"RecordSent\",\n            \"MessageDetail\": \"\",\n            \"Status\": \"Error\",\n            \"ErrorMessage\": \"Error on generating track URLs - Internal Operation Error\"\n        },\n        {\n            \"ID\": \"95f52ce24a2ca7e1\",\n            \"Type\": \"DISCO_Share\",\n            \"Style\": \"Information\",\n            \"DateAdded\": \"2026-05-12T12:04:38.997\",\n            \"RelationType\": \"Playlist\",\n            \"RelationID\": \"4440434b0e1cf7a6\",\n            \"Message\": \"RecordSent\",\n            \"MessageDetail\": \"\",\n            \"Status\": \"Error\",\n            \"ErrorMessage\": \"Error in searching playlist track - Unexpected character encountered while parsing value: <. Path '', line 0, position 0.\"\n        },\n        {\n            \"ID\": \"d0b8ba29471595bf\",\n            \"Type\": \"DISCO_Share\",\n            \"Style\": \"Information\",\n            \"DateAdded\": \"2026-05-12T12:04:50.593\",\n            \"RelationType\": \"Playlist\",\n            \"RelationID\": \"56928279dfe0cd83\",\n            \"Message\": \"RecordSent\",\n            \"MessageDetail\": \"\",\n            \"Status\": \"Error\",\n            \"ErrorMessage\": \"Error on generating track URLs - Internal Operation Error\"\n        },\n        {\n            \"ID\": \"19b8f5935503adde\",\n            \"Type\": \"DISCO_Share\",\n            \"Style\": \"Information\",\n            \"DateAdded\": \"2026-05-12T12:05:21.96\",\n            \"RelationType\": \"Playlist\",\n            \"RelationID\": \"c3dc38ada9998854\",\n            \"Message\": \"RecordSent\",\n            \"MessageDetail\": \"\",\n            \"Status\": \"Error\",\n            \"ErrorMessage\": \"Error on generating track URLs - Internal Operation Error\"\n        },\n        {\n            \"ID\": \"47ec1487133769b9\",\n            \"Type\": \"DISCO_Share\",\n            \"Style\": \"Information\",\n            \"DateAdded\": \"2026-05-12T12:13:07.077\",\n            \"RelationType\": \"Playlist\",\n            \"RelationID\": \"c3dc38ada9998854\",\n            \"Message\": \"RecordSent\",\n            \"MessageDetail\": \"\",\n            \"Status\": \"Error\",\n            \"ErrorMessage\": \"Error on generating track URLs - Internal Operation Error\"\n        },\n        {\n            \"ID\": \"3de9d6146c5f833b\",\n            \"Type\": \"DISCO_Share\",\n            \"Style\": \"Information\",\n            \"DateAdded\": \"2026-05-12T12:13:21.34\",\n            \"RelationType\": \"Playlist\",\n            \"RelationID\": \"56928279dfe0cd83\",\n            \"Message\": \"RecordSent\",\n            \"MessageDetail\": \"\",\n            \"Status\": \"Error\",\n            \"ErrorMessage\": \"Error on generating track URLs - Internal Operation Error\"\n        },\n        {\n            \"ID\": \"7026280a00766607\",\n            \"Type\": \"DISCO_Share\",\n            \"Style\": \"Information\",\n            \"DateAdded\": \"2026-05-12T12:13:51.387\",\n            \"RelationType\": \"Playlist\",\n            \"RelationID\": \"4440434b0e1cf7a6\",\n            \"Message\": \"RecordSent\",\n            \"MessageDetail\": \"\",\n            \"Status\": \"Error\",\n            \"ErrorMessage\": \"Error in searching playlist track - Unexpected character encountered while parsing value: <. Path '', line 0, position 0.\"\n        },\n        {\n            \"ID\": \"99dc08a83ff1671e\",\n            \"Type\": \"DISCO_Share\",\n            \"Style\": \"Information\",\n            \"DateAdded\": \"2026-05-12T12:14:47.19\",\n            \"RelationType\": \"Playlist\",\n            \"RelationID\": \"6ec1a87444201b29\",\n            \"Message\": \"RecordSent\",\n            \"MessageDetail\": \"\",\n            \"Status\": \"Error\",\n            \"ErrorMessage\": \"Error on generating track URLs - Internal Operation Error\"\n        },\n        {\n            \"ID\": \"07a147a3be95f6f1\",\n            \"Type\": \"DISCO_Share\",\n            \"Style\": \"Information\",\n            \"DateAdded\": \"2026-05-12T12:15:19.717\",\n            \"RelationType\": \"Playlist\",\n            \"RelationID\": \"4ea153312c6cd77f\",\n            \"Message\": \"RecordSent\",\n            \"MessageDetail\": \"\",\n            \"Status\": \"Error\",\n            \"ErrorMessage\": \"Error in searching playlist track - Unexpected character encountered while parsing value: <. Path '', line 0, position 0.\"\n        },\n        {\n            \"ID\": \"8185d768cd8fcaa7\",\n            \"Type\": \"DISCO_Share\",\n            \"Style\": \"Information\",\n            \"DateAdded\": \"2026-05-12T12:15:58.133\",\n            \"RelationType\": \"Playlist\",\n            \"RelationID\": \"4d574935ca3d22c3\",\n            \"Message\": \"RecordSent\",\n            \"MessageDetail\": \"\",\n            \"Status\": \"Error\",\n            \"ErrorMessage\": \"Error on generating track URLs - Internal Operation Error\"\n        },\n        {\n            \"ID\": \"145e2b8d68c4a0b6\",\n            \"Type\": \"DISCO_Share\",\n            \"Style\": \"Information\",\n            \"DateAdded\": \"2026-05-12T12:25:27.753\",\n            \"RelationType\": \"Playlist\",\n            \"RelationID\": \"c3dc38ada9998854\",\n            \"Message\": \"RecordSent\",\n            \"MessageDetail\": \"593621618\",\n            \"Status\": \"Success\",\n            \"ErrorMessage\": \"\"\n        },\n        {\n            \"ID\": \"8c2bee801542050d\",\n            \"Type\": \"DISCO_Share\",\n            \"Style\": \"Information\",\n            \"DateAdded\": \"2026-05-12T12:25:55.05\",\n            \"RelationType\": \"Playlist\",\n            \"RelationID\": \"56928279dfe0cd83\",\n            \"Message\": \"RecordSent\",\n            \"MessageDetail\": \"593624133\",\n            \"Status\": \"Success\",\n            \"ErrorMessage\": \"\"\n        },\n        {\n            \"ID\": \"f924c25e35500090\",\n            \"Type\": \"DISCO_Share\",\n            \"Style\": \"Information\",\n            \"DateAdded\": \"2026-05-12T12:27:15.03\",\n            \"RelationType\": \"Playlist\",\n            \"RelationID\": \"4440434b0e1cf7a6\",\n            \"Message\": \"RecordSent\",\n            \"MessageDetail\": \"\",\n            \"Status\": \"Error\",\n            \"ErrorMessage\": \"Error in searching playlist track - Unexpected character encountered while parsing value: <. Path '', line 0, position 0.\"\n        },\n        {\n            \"ID\": \"f86494decc7fd314\",\n            \"Type\": \"DISCO_Share\",\n            \"Style\": \"Information\",\n            \"DateAdded\": \"2026-05-12T12:27:41.383\",\n            \"RelationType\": \"Playlist\",\n            \"RelationID\": \"6ec1a87444201b29\",\n            \"Message\": \"RecordSent\",\n            \"MessageDetail\": \"593624125\",\n            \"Status\": \"Success\",\n            \"ErrorMessage\": \"\"\n        },\n        {\n            \"ID\": \"90e8e7e17896333a\",\n            \"Type\": \"DISCO_Share\",\n            \"Style\": \"Information\",\n            \"DateAdded\": \"2026-05-12T12:28:28.413\",\n            \"RelationType\": \"Playlist\",\n            \"RelationID\": \"4ea153312c6cd77f\",\n            \"Message\": \"RecordSent\",\n            \"MessageDetail\": \"\",\n            \"Status\": \"Error\",\n            \"ErrorMessage\": \"Error in searching playlist track - Unexpected character encountered while parsing value: <. Path '', line 0, position 0.\"\n        },\n        {\n            \"ID\": \"19ecbe6bedcfa645\",\n            \"Type\": \"DISCO_Share\",\n            \"Style\": \"Information\",\n            \"DateAdded\": \"2026-05-12T12:28:38.237\",\n            \"RelationType\": \"Playlist\",\n            \"RelationID\": \"4d574935ca3d22c3\",\n            \"Message\": \"RecordSent\",\n            \"MessageDetail\": \"593624132\",\n            \"Status\": \"Success\",\n            \"ErrorMessage\": \"\"\n        }\n    ]\n}"}],"_postman_id":"62224122-88d1-4298-b476-611627d14f78"},{"name":"Get External Share Status History - By RelationID","event":[{"listen":"test","script":{"id":"1b23b05d-01f9-470d-aa38-db2017489c1c","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"e37cd9c6-d31f-45a0-bc6c-686621ee26b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"RelationType\": \"Playlist\",\r\n    \"Skip\": {{Skip}},\r\n    \"Limit\": {{limit}},\r\n    \"Sort\": \"DateAdded_Asc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getexternalsharestatushistory/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["getexternalsharestatushistory","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"3abf4fcf-6f72-4ca4-a4a5-8dad307326c5","name":"Get External Share Status History - By RelationID (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"RelationType\": \"Playlist\",\r\n    \"RelationID\": \"{{RelationID}}\",\r\n    \"Skip\": {{Skip}},\r\n    \"Limit\": {{limit}},\r\n    \"Sort\": \"DateAdded_Asc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getexternalsharestatushistory/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Tue, 12 May 2026 05:33:48 GMT"},{"key":"content-type","value":"application/json"},{"key":"cache-control","value":"no-cache, no-store"},{"key":"pragma","value":"no-cache"},{"key":"content-encoding","value":"gzip"},{"key":"expires","value":"-1"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"access-control-allow-origin","value":"*"},{"key":"x-aspnet-version","value":"4.0.30319"},{"key":"x-powered-by","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"ExternalShareStatusHistory\": [\n        {\n            \"ID\": \"272f1d66c82967de\",\n            \"Type\": \"DISCO_Share\",\n            \"Style\": \"Information\",\n            \"DateAdded\": \"2026-05-12T12:02:44.783\",\n            \"RelationType\": \"Playlist\",\n            \"RelationID\": \"4d574935ca3d22c3\",\n            \"Message\": \"RecordSent\",\n            \"MessageDetail\": \"\",\n            \"Status\": \"Error\",\n            \"ErrorMessage\": \"Error on generating track URLs - Internal Operation Error\"\n        },\n        {\n            \"ID\": \"8185d768cd8fcaa7\",\n            \"Type\": \"DISCO_Share\",\n            \"Style\": \"Information\",\n            \"DateAdded\": \"2026-05-12T12:15:58.133\",\n            \"RelationType\": \"Playlist\",\n            \"RelationID\": \"4d574935ca3d22c3\",\n            \"Message\": \"RecordSent\",\n            \"MessageDetail\": \"\",\n            \"Status\": \"Error\",\n            \"ErrorMessage\": \"Error on generating track URLs - Internal Operation Error\"\n        },\n        {\n            \"ID\": \"19ecbe6bedcfa645\",\n            \"Type\": \"DISCO_Share\",\n            \"Style\": \"Information\",\n            \"DateAdded\": \"2026-05-12T12:28:38.237\",\n            \"RelationType\": \"Playlist\",\n            \"RelationID\": \"4d574935ca3d22c3\",\n            \"Message\": \"RecordSent\",\n            \"MessageDetail\": \"593624132\",\n            \"Status\": \"Success\",\n            \"ErrorMessage\": \"\"\n        }\n    ]\n}"}],"_postman_id":"e37cd9c6-d31f-45a0-bc6c-686621ee26b2"}],"id":"75f8de09-50f1-4ac2-9a04-9440c891de1d","description":"<p>This integration allows platforms to send curated playlists directly to Disco’s content system and monitor the status of these deliveries. The main use cases are:</p>\n<ul>\n<li><p>Pushing selected playlists from FLEX to Disco</p>\n</li>\n<li><p>Tracking which playlists have already been sent or are currently being processed</p>\n</li>\n</ul>\n","_postman_id":"75f8de09-50f1-4ac2-9a04-9440c891de1d"},{"name":"Get Categories","event":[{"listen":"test","script":{"id":"1b23b05d-01f9-470d-aa38-db2017489c1c","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"89e94486-6df1-46bc-b82c-0221914b8f9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"url":"{{HM_ServiceAPI_URL}}/getfeaturedplaylistcategories/{{HM_ServiceAPI_MemberToken}}?returnplaylistcount=false&skip=0&limit=99&sort=Alphabetic_Asc","urlObject":{"path":["getfeaturedplaylistcategories","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"returnplaylistcount","value":"false"},{"key":"skip","value":"0"},{"key":"limit","value":"99"},{"key":"sort","value":"Alphabetic_Asc"}],"variable":[]}},"response":[],"_postman_id":"89e94486-6df1-46bc-b82c-0221914b8f9c"},{"name":"Get Playlists (No Filter)","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"a8f60c67-c859-4590-af54-40df13c5a4b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"false\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"false\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"%\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Playlist\",\r\n            \"Sort_Predefined\": \"Custom_Asc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"15\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p><strong>GAP</strong></p>\n<p>It is not currently possible to search via <code>ST_PLAYLIST</code>, nor is it possible to get results <code>VIEW: PLAYLIST</code></p>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a8f60c67-c859-4590-af54-40df13c5a4b6"},{"name":"Get Playlists By Category","event":[{"listen":"test","script":{"id":"6b704484-eab1-4a56-8084-646d0128059c","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"ac529f59-220c-4685-8c7d-4e33ab7f0946","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getfeaturedplaylistcategoriesandplaylists/{{HM_ServiceAPI_MemberToken}}?returnplaylistcount=false&returntrackcount=true&returnrootobjectsonly=false&playlistcategoryid={CategoryID}&skip=0&limit=15&sort=Alphabetic_Asc","urlObject":{"path":["getfeaturedplaylistcategoriesandplaylists","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"returnplaylistcount","value":"false"},{"key":"returntrackcount","value":"true"},{"key":"returnrootobjectsonly","value":"false"},{"key":"playlistcategoryid","value":"{CategoryID}"},{"key":"skip","value":"0"},{"key":"limit","value":"15"},{"key":"sort","value":"Alphabetic_Asc"}],"variable":[]}},"response":[],"_postman_id":"ac529f59-220c-4685-8c7d-4e33ab7f0946"}],"id":"b42452a8-e2e2-4a15-9ffa-c2e2f65dc2fb","_postman_id":"b42452a8-e2e2-4a15-9ffa-c2e2f65dc2fb","description":""},{"name":"Playlist Page","item":[{"name":"Get Playlist","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"dc77610f-de36-42e8-a8d9-5648300f34f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"false\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Playlist\": {\r\n                \"Playlists\": \"g56ed5590ha8c7c34d\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Playlist\",\r\n            \"Sort_Predefined\": \"Alphabetic_Asc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"1\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p><strong>GAP</strong></p>\n<p>It is not currently possible to search via <code>ST_PLAYLIST</code>, nor is it possible to get results <code>VIEW: PLAYLIST</code></p>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dc77610f-de36-42e8-a8d9-5648300f34f4"},{"name":"Get Playlist Tracks","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"e9385839-eec3-4c01-8ea9-407bdd173f1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"false\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Playlist\": {\r\n                \"Playlists\": \"g56ed5590ha8c7c34d\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"Custom_Asc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"20\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p><strong>GAP</strong></p>\n<p>It is not currently possible to search via <code>ST_PLAYLIST</code>, nor is it possible to get results <code>VIEW: PLAYLIST</code></p>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e9385839-eec3-4c01-8ea9-407bdd173f1f"},{"name":"Get Track Details","event":[{"listen":"test","script":{"id":"d523a71a-0877-4323-8702-7b9060788951","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"0f47107c-a152-4c19-a9e1-b4e6ceb4bd94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"ReturnAlternateVersions\":\"true\",\r\n\t\"ReturnAttributes\":\"false\",\r\n\t\"ReturnCategories\":\"false\",\r\n\t\"ReturnCategoryFacet\":\"false\",\r\n\t\"ReturnCodes\":\"false\",\r\n\t\"ReturnComposers\":\"false\",\r\n\t\"ReturnRelatedTracks\":\"false\",\r\n\t\"ReturnRightHolders\":\"true\",\r\n    \"ReturnStems\": \"false\",\r\n\t\"GetMainVersionFromAlternate\":\"false\",\r\n\t\"CuesheetOnlyCodesAndAttribute\":\"false\",\r\n\t\"ReturnInactiveTracks\":\"false\",\r\n    \"ReturnRegionOnlyTracks\":\"false\",\r\n\t\"track\":[\"{{HM_ServiceAPI_TrackID}}\"]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/gettracks/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["gettracks","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0f47107c-a152-4c19-a9e1-b4e6ceb4bd94"},{"name":"Copy Playlist to Member Playlist","event":[{"listen":"test","script":{"id":"f8809cdc-a4ff-482c-a573-203f9f945f89","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"c5215131-6672-470d-915d-de256d648ec3","exec":[""],"type":"text/javascript"}}],"id":"e790bc58-534c-44d9-b2e2-fcbac26f1f31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"PlaylistID\": \"eed62e81a18a4cf0\",\r\n    \"PlaylistName\": \"new projectname\",\r\n    \"CopyTracks\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/copytomemberplaylist/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["copytomemberplaylist","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e790bc58-534c-44d9-b2e2-fcbac26f1f31"},{"name":"Get Related Playlists","event":[{"listen":"test","script":{"id":"6b704484-eab1-4a56-8084-646d0128059c","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"36d98ba3-f35e-47ad-8d73-c8e36ea610e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getrelatedplaylists/{{HM_ServiceAPI_MemberToken}}/{PlaylistID}","urlObject":{"path":["getrelatedplaylists","{{HM_ServiceAPI_MemberToken}}","{PlaylistID}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"36d98ba3-f35e-47ad-8d73-c8e36ea610e6"}],"id":"f14e4304-5a07-4118-ad75-f34aed253862","_postman_id":"f14e4304-5a07-4118-ad75-f34aed253862","description":""},{"name":"All Collections Page","item":[{"name":"Get Collections","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"c92b395e-7477-460a-a2e2-c782b4062c0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"false\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"%\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Style\",\r\n            \"View_Style_Album_Count\": \"true\",\r\n            \"View_Style_Playlist_Count\": \"true\",\r\n            \"Sort_Predefined\": \"Alphabetic_Asc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"5\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c92b395e-7477-460a-a2e2-c782b4062c0d"},{"name":"Get Collections By Style Group","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"8c9a16cd-d2f9-4eec-af65-683acf2ae05d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_StyleGroup\": {\r\n                \"Stylegroups\": \"92f5928c01147c4c\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Style\",\r\n            \"Sort_Predefined\": \"Alphabetic_Asc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"5\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8c9a16cd-d2f9-4eec-af65-683acf2ae05d"}],"id":"cdc668b4-2e78-4554-889f-181ad5422b29","_postman_id":"cdc668b4-2e78-4554-889f-181ad5422b29","description":""},{"name":"Collection Page","item":[{"name":"Get Albums","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"100f80d8-52c6-4937-b823-cdf0432ed476","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Style\": {\r\n                \"Styles\": \"{StyleID}\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Album\",\r\n            \"View_Album_Assigned_To_Style\": \"true\",\r\n            \"View_Playlist_Assigned_To_Style\": \"false\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"15\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"100f80d8-52c6-4937-b823-cdf0432ed476"},{"name":"Get Playlists","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"f9ef648e-6f91-47d9-8dc9-d55c31c55633","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Style\": {\r\n                \"Styles\": \"{StyleID}\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Playlist\",\r\n            \"View_Album_Assigned_To_Style\": \"false\",\r\n            \"View_Playlist_Assigned_To_Style\": \"true\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"15\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p><strong>GAP</strong></p>\n<p>It is not currently possible to search via <code>ST_PLAYLIST</code>, nor is it possible to get results <code>VIEW: PLAYLIST</code></p>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"77a7cbb1-4cce-4e48-85d8-547513ec8242","name":"Get Playlists","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Style\": {\r\n                \"Styles\": \"5fe5ba2859d9116f\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Playlist\",\r\n            \"View_Album_Assigned_To_Style\": \"false\",\r\n            \"View_Playlist_Assigned_To_Style\": \"true\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"15\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 04 Mar 2025 15:32:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalTracks\": 127,\n    \"TotalAlbums\": 0,\n    \"TotalLibraries\": 46,\n    \"TotalStyles\": 0,\n    \"TotalPlaylists\": 4,\n    \"SearchParameters\": {\n        \"searchtype\": \"Normal\",\n        \"memberaccount\": \"d50f14f9e96de63f\",\n        \"region\": \"aae768a739006d0f\",\n        \"includeinactive\": false,\n        \"mainonly\": true,\n        \"alternateonly\": false,\n        \"resultview\": {\n            \"view\": \"Playlist\",\n            \"sort_predefined\": \"ReleaseDate_Desc\",\n            \"rankexpression\": \"\",\n            \"skip\": 0,\n            \"limit\": 4,\n            \"saved\": false,\n            \"mincount\": 0,\n            \"returntrackcategoryid\": false,\n            \"facet_album\": false,\n            \"facet_albumskip\": 0,\n            \"facet_albumlimit\": 0,\n            \"facet_library\": false,\n            \"facet_libraryskip\": 0,\n            \"facet_librarylimit\": 0,\n            \"facet_style\": false,\n            \"facet_styleskip\": 0,\n            \"facet_stylelimit\": 0,\n            \"facet_category\": false,\n            \"facet_categoryskip\": 0,\n            \"facet_categorylimit\": 0,\n            \"facet_composer\": false,\n            \"facet_composerskip\": 0,\n            \"facet_composerlimit\": 0,\n            \"bpm_range\": false,\n            \"duration_range\": false,\n            \"include_alternates\": false,\n            \"include_rightholders\": false,\n            \"include_lyrics\": false,\n            \"include_keywords\": false,\n            \"tracks_per_album\": 0,\n            \"facet_bpm\": false,\n            \"facet_duration\": false,\n            \"facet_releaseyear\": false,\n            \"view_style_album_count\": false,\n            \"view_style_playlist_count\": false,\n            \"view_track_categories\": false,\n            \"evoke_prioritizebpm\": false,\n            \"evoke_suppressvocals\": false,\n            \"view_album_assigned_to_style\": false,\n            \"view_playlist_assigned_to_style\": false,\n            \"returnrates\": false\n        },\n        \"nearestduration\": false,\n        \"nearestbpm\": false,\n        \"nearestalternate\": false,\n        \"LibraryType\": \"\",\n        \"PreviousSearchTermBundles\": [\n            {\n                \"SearchHistoryID\": 0,\n                \"st_style\": {\n                    \"searchtermid\": 524288,\n                    \"Styles\": \"5fe5ba2859d9116f\",\n                    \"oroperation\": false,\n                    \"negative\": false\n                }\n            }\n        ]\n    },\n    \"Playlists\": [\n        {\n            \"Name\": \"Ambient relaxation\",\n            \"ID\": \"aec5edd219af69c4\",\n            \"Description\": \"El ambient se caracteriza por sus bases electrónicas suaves y sonidos que invitan a la reflexión y meditación. Esta playlist contiene en exclusiva temas compuestos por el creador del género, Brian Eno.\",\n            \"CreatedDate\": \"2025-01-08 21:53:29\",\n            \"TrackCount\": \"23\",\n            \"Tracks\": [],\n            \"RelatedPlaylists\": [],\n            \"HasImage\": true,\n            \"Tags\": \"\",\n            \"LanguageItems\": [],\n            \"AutoSave\": false,\n            \"Type\": \"Curated\",\n            \"HighlightTracks\": false,\n            \"IsEditable\": false,\n            \"IsCollaboration\": false,\n            \"HasCollaborator\": false,\n            \"IsOwner\": false,\n            \"IsPublishable\": false,\n            \"HasPublishMember\": false,\n            \"Keywords\": \"ambient, atmospheric, relax\",\n            \"EnableSchedule\": false\n        },\n        {\n            \"Name\": \"Beats for Cooking\",\n            \"ID\": \"29d6caeac2ed839c\",\n            \"Description\": \"Fondos musicales dinámicos y neutros para acompañar vídeos de recetas y chuparte los dedos.\",\n            \"CreatedDate\": \"2020-04-16 01:37:50\",\n            \"TrackCount\": \"27\",\n            \"Tracks\": [],\n            \"RelatedPlaylists\": [],\n            \"HasImage\": true,\n            \"Tags\": \"\",\n            \"LanguageItems\": [],\n            \"AutoSave\": false,\n            \"Type\": \"Curated\",\n            \"HighlightTracks\": false,\n            \"IsEditable\": false,\n            \"IsCollaboration\": false,\n            \"HasCollaborator\": false,\n            \"IsOwner\": false,\n            \"IsPublishable\": false,\n            \"HasPublishMember\": false,\n            \"Keywords\": \"\",\n            \"EnableSchedule\": false\n        },\n        {\n            \"Name\": \"Research & Investigation\",\n            \"ID\": \"d35ba8e907b1da12\",\n            \"Description\": \"Música perfecta para contenidos de investigación médica, científica y tecnológica.\",\n            \"CreatedDate\": \"2020-04-17 01:18:33\",\n            \"TrackCount\": \"33\",\n            \"Tracks\": [],\n            \"RelatedPlaylists\": [],\n            \"HasImage\": true,\n            \"Tags\": \"\",\n            \"LanguageItems\": [],\n            \"AutoSave\": false,\n            \"Type\": \"Curated\",\n            \"HighlightTracks\": false,\n            \"IsEditable\": false,\n            \"IsCollaboration\": false,\n            \"HasCollaborator\": false,\n            \"IsOwner\": false,\n            \"IsPublishable\": false,\n            \"HasPublishMember\": false,\n            \"Keywords\": \"\",\n            \"EnableSchedule\": false\n        },\n        {\n            \"Name\": \"Science & Technology\",\n            \"ID\": \"e0cc4f81b9f43382\",\n            \"Description\": \"Playlist para acompañar contenidos corporativos, médicos, de investigación e innovación.\",\n            \"CreatedDate\": \"2020-04-17 20:33:28\",\n            \"TrackCount\": \"46\",\n            \"Tracks\": [],\n            \"RelatedPlaylists\": [],\n            \"HasImage\": true,\n            \"Tags\": \"\",\n            \"LanguageItems\": [],\n            \"AutoSave\": false,\n            \"Type\": \"Curated\",\n            \"HighlightTracks\": false,\n            \"IsEditable\": false,\n            \"IsCollaboration\": false,\n            \"HasCollaborator\": false,\n            \"IsOwner\": false,\n            \"IsPublishable\": false,\n            \"HasPublishMember\": false,\n            \"Keywords\": \"\",\n            \"EnableSchedule\": false\n        }\n    ],\n    \"Facets\": {},\n    \"UseDatabase\": true,\n    \"CloudSearchUrls\": []\n}"}],"_postman_id":"f9ef648e-6f91-47d9-8dc9-d55c31c55633"}],"id":"912600a6-09ba-40a5-a68e-17db2b69098d","_postman_id":"912600a6-09ba-40a5-a68e-17db2b69098d","description":""},{"name":"Shared Playlist Page","item":[{"name":"Load a Share Url","id":"88a78ea6-f762-480a-b349-47382187b470","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{HM_ServiceAPI_URL}}/getsharemusic/{{HM_ServiceAPI_MemberToken}}/{ShareToken}","description":"<p><b>RESPONSE HANDLING</b></p>\n<p>There are a number of possible responses from this endpoint.</p>\n<p>(1) When the share has expired naturally</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"RequestEngageToken\": {\n        \"Value\": \"7ab502278d5a88e83156d15d221c0dee\",\n        \"Expiry\": \"2026-04-07T15:48:37.067\",\n        \"UTCOffset\": 10.0,\n        \"Type\": \"EngageToken\",\n        \"IsOfSingleUse\": false,\n        \"TokenUsageState\": \"Expired\"\n    }\n}\n\n</code></pre>\n<p>(2) When the underlying playlist has been removed by the Owner</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"Error\": {\n        \"Code\": \"40\",\n        \"Description\": \"Share Does Not Exist. The owner or recipient has since wtihdrawn from the share.\"\n    }\n}\n\n</code></pre>\n<p>(3) When the share is no longer active, because a recipient has already accepted the share. The ObjectID in the response is the playlistID in the recipients account.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"Error\": {\n        \"Code\": \"41\",\n        \"Description\": \"Share Accepted. The requested share has already been accepted.\"\n    },\n    \"ObjectID\": \"bb7d2ae62b832be853\"\n}\n\n</code></pre>\n<p>(4) For collaborative playlists; when the share was withdrawn by the Owner or the Recipient left</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"Error\": {\n        \"Code\": \"38\",\n        \"Description\": \"Shared Playlist Does Not Exist. The owner has removed the playlist.\"\n    }\n}\n\n</code></pre>\n<p><b>PLAYLIST COLLABORATION</b></p>\n<p>Existing <code>ReferredPermissions</code> object in the response will now contain additional properties:</p>\n<ul>\n<li><p><code>AllowEdit</code></p>\n</li>\n<li><p><code>AllowCollaboration</code></p>\n</li>\n<li><p><code>AllowPublish</code></p>\n</li>\n<li><p><code>LastPublishDate</code></p>\n</li>\n</ul>\n<p>You can use these to configure options to the user.</p>\n<ul>\n<li><p>If <code>AllowCollaboration = false</code> then show two saving options of <code>Save as New</code> and <code>Save as Publishable</code></p>\n<ul>\n<li><code>AllowPublish</code> will always be true, but if in the future we needed this to be flexible then you may need to hide the <code>Save as Publishable</code> option if <code>AllowPublish = false</code></li>\n</ul>\n</li>\n<li><p>If <code>AllowCollaboration = true</code> then show two saving options of <code>Save as New</code> and <code>Save as Collaboration</code></p>\n</li>\n</ul>\n","urlObject":{"path":["getsharemusic","{{HM_ServiceAPI_MemberToken}}","{ShareToken}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"88a78ea6-f762-480a-b349-47382187b470"},{"name":"Load Shared Playist","id":"b5d4fd0e-925c-4087-8786-494f0331fb06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{HM_ServiceAPI_URL}}/getsharedplaylistwithmembertoken/{{HM_ServiceAPI_MemberToken}}/{PlaylistID}?Skip=0&Limit=20","urlObject":{"path":["getsharedplaylistwithmembertoken","{{HM_ServiceAPI_MemberToken}}","{PlaylistID}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"Skip","value":"0"},{"key":"Limit","value":"20"}],"variable":[]}},"response":[],"_postman_id":"b5d4fd0e-925c-4087-8786-494f0331fb06"},{"name":"Download Shared Playlist","event":[{"listen":"test","script":{"id":"c0ce855e-ca28-46c1-8fb2-0fc2a5f88cf0","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"43da2e01-ca66-4699-ae4e-5230c2ba005a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"Identifier\":\"{PlaylistID}\",\r\n\t\"DownloadType\":\"playlist\",\r\n\t\"Format\":\"mp3\",\r\n\t\"TrimStartSecs\":0,\r\n\t\"TrimEndSecs\":0,\r\n\t\"Email\":\"peter@harvestthe.net\",\r\n\t\"IsShare\":false,\r\n\t\"Message\":\"\",\r\n\t\"SenderEmail\":\"\",\r\n\t\"ForceEmail\":false,\r\n\t\"IncludeVersions\":false,\r\n\t\"VersionFolderName\":\"\",\r\n\t\"DownloadFileName\":\"\",\r\n\t\"CuesheetFileName\":\"\"\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getmusicdownload/{{HM_ServiceAPI_MemberToken}}","description":"<p>Shared playlists allow downloading as guests or members.</p>\n","urlObject":{"path":["getmusicdownload","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"43da2e01-ca66-4699-ae4e-5230c2ba005a"},{"name":"Accept Shared Playlist (ShareURL only))","event":[{"listen":"test","script":{"exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","// var jsonData = null;","// var jsonDataToken = \"\";","","// if (responseBody.indexOf(\"<?xml\") >= 0) {","//     jsonData = xml2Json(responseBody);","    ","//     console.log(jsonData.responseengageshare.url.split(\"/\")[jsonData.responseengageshare.url].split(\"/\").length -1);","    ","//     jsonDataToken = jsonData.responseengageshare.url.split(\"/\")[jsonData.responseengageshare.url].split(\"/\").length -1;","// } else {","//     jsonData = JSON.parse(responseBody)","//     jsonDataToken = jsonData.Url.split(\"/\")[jsonData.Url.split(\"/\").length -1];","// }","","// console.log(\"HM_ServiceAPI_EnageAccessToken set to \" + jsonDataToken);","","// postman.setEnvironmentVariable(\"HM_ServiceAPI_EnageAccessToken\", jsonDataToken);","","// postman.setNextRequest(\"Get Shared Playlist By Engage\");"],"type":"text/javascript","id":"b4dafda2-a099-4e54-8d96-436809f96899"}}],"id":"bb0e30ab-0276-4be7-b6ba-bff1b9acde51","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/acceptsharemusic/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_EnageAccessToken}}?acceptType={acceptType}","description":"<p>Adds the shared PlaylistCategory or Playlist to your own Playlist collection.</p>\n<p>It's important to note that in order to utilise this feature you will need to receive a shared music token.</p>\n<ol>\n<li><p>To receive a Playlist Category share see</p>\n<p> <a href=\"https://developer.harvestmedia.net/#741b912e-fe33-4543-89d0-240dc349ec92\">Get Playlist Category Share URL</a></p>\n</li>\n<li><p>To receive a Playlist share see</p>\n<p> <a href=\"https://developer.harvestmedia.net/#16a83e3c-93f9-407b-8129-9d82b79069fc\">Get Playlist Share URL</a></p>\n</li>\n</ol>\n<p>The token present in the share URL will be required in order to accept the shared Playlist Category or Playlist.</p>\n<p><b>PLAYLIST COLLABORATION</b></p>\n<p><code>acceptType=true</code> will have 3 possible values;</p>\n<ul>\n<li><p>AsCopy</p>\n</li>\n<li><p>AsPublishable</p>\n</li>\n<li><p>AsCollaboration</p>\n</li>\n</ul>\n<p>When not provided, will default to AsCopy</p>\n<ul>\n<li><p><code>AsCopy</code> will work for sharing via Sync or Copy</p>\n</li>\n<li><p><code>AsPublishable</code> only works with Copy</p>\n</li>\n<li><p><code>AsCollaboration</code> only works with Sync</p>\n</li>\n</ul>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>EngageToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["acceptsharemusic","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_EnageAccessToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"acceptType","value":"{acceptType}"}],"variable":[]}},"response":[],"_postman_id":"bb0e30ab-0276-4be7-b6ba-bff1b9acde51"}],"id":"48a0ae0b-63f5-4191-81bb-4ad8b917f15c","_postman_id":"48a0ae0b-63f5-4191-81bb-4ad8b917f15c","description":""},{"name":"Shared Playlist Page By ID","item":[{"name":"Swap ID for Token Share","event":[{"listen":"test","script":{"id":"351cd360-8dda-411e-b4f5-c22a49ee2ca3","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","// var jsonData = null;","// var jsonDataToken = \"\";","","// if (responseBody.indexOf(\"<?xml\") >= 0) {","//     jsonData = xml2Json(responseBody);","    ","//     console.log(jsonData.responseengageshare.url.split(\"/\")[jsonData.responseengageshare.url].split(\"/\").length -1);","    ","//     jsonDataToken = jsonData.responseengageshare.url.split(\"/\")[jsonData.responseengageshare.url].split(\"/\").length -1;","// } else {","//     jsonData = JSON.parse(responseBody)","//     jsonDataToken = jsonData.Url.split(\"/\")[jsonData.Url.split(\"/\").length -1];","// }","","// console.log(\"HM_ServiceAPI_EnageAccessToken set to \" + jsonDataToken);","","// postman.setEnvironmentVariable(\"HM_ServiceAPI_EnageAccessToken\", jsonDataToken);","","// postman.setNextRequest(\"Get Shared Playlist By Engage\");"],"type":"text/javascript","packages":{}}}],"id":"3a11c9cb-66d4-4d2a-8378-b4a2a8961988","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"ObjectIdentifier\": \"3c1a4d9a911a916190\",\r\n    \"ObjectType\": \"Playlist\"\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getsharemusicurlbyid/{{HM_ServiceAPI_Token}}","urlObject":{"path":["getsharemusicurlbyid","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"e5ed8f2f-2bc0-49c4-b0d4-3bf14949d873","name":"Swap ID for Token Share","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"ObjectIdentifier\": \"3c1a4d9a911a916190\",\r\n    \"ObjectType\": \"Playlist\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getsharemusicurlbyid/{{HM_ServiceAPI_Token}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Aug 2024 12:51:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"ShareMusic\": [\n        {\n            \"Username\": \"guest\",\n            \"Status\": \"Success\",\n            \"Url\": \"http://<domain>/engage-playlist/d6b5714e9dc0774f1d2781b1e946e6b3\"\n        }\n    ]\n}"}],"_postman_id":"3a11c9cb-66d4-4d2a-8378-b4a2a8961988"}],"id":"ec9a4209-2ee3-4edf-9e5e-fc11fa228e5c","_postman_id":"ec9a4209-2ee3-4edf-9e5e-fc11fa228e5c","description":""},{"name":"Right Holders","item":[{"name":"Get Right Holders","id":"26f95886-4c40-43b4-973a-3e4bfde210a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getrightholders/{{HM_ServiceAPI_MemberToken}}?skip={{skip}}&limit={{limit}}&returntrackcount=1&sort=Alphabetic_Desc&capacity={{capacity}}","description":"<p>Capacity is an array of string, could have multiple values requested by comma. Accepts:</p>\n<ul>\n<li><p>Artist</p>\n</li>\n<li><p>Author</p>\n</li>\n<li><p>Composer</p>\n</li>\n<li><p>ComposerAuthor</p>\n</li>\n<li><p>Publisher</p>\n</li>\n<li><p>SubPublisher</p>\n</li>\n</ul>\n","urlObject":{"path":["getrightholders","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"skip","value":"{{skip}}"},{"key":"limit","value":"{{limit}}"},{"key":"returntrackcount","value":"1"},{"key":"sort","value":"Alphabetic_Desc"},{"key":"capacity","value":"{{capacity}}"}],"variable":[]}},"response":[{"id":"2c9b537b-9e08-4464-80a6-669b40d939cb","name":"Get Right Holders (JSON)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":{"raw":"{{HM_ServiceAPI_URL}}/getrightholders/{{HM_ServiceAPI_MemberToken}}?skip=0&limit=1000&returntrackcount=1&sort=Alphabetic_Asc&capacity=Composer,ComposerAuthor","host":["{{HM_ServiceAPI_URL}}"],"path":["getrightholders","{{HM_ServiceAPI_MemberToken}}"],"query":[{"key":"skip","value":"0"},{"key":"limit","value":"1000"},{"key":"returntrackcount","value":"1"},{"key":"sort","value":"Alphabetic_Asc"},{"key":"capacity","value":"Composer,ComposerAuthor"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 21 Aug 2024 06:30:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"RightHolders\": [\n        {\n            \"ID\": \"953a14c4b4207398\",\n            \"FirstName\": \"Adeniyi\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Adelekan\",\n            \"IPI\": \"345399728\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 8\n        },\n        {\n            \"ID\": \"d0979dc7ae21e253\",\n            \"FirstName\": \"Marko\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Ahtisaari\",\n            \"IPI\": \"338169347\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 62\n        },\n        {\n            \"ID\": \"2ea040086992cd10\",\n            \"FirstName\": \"Amy\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Aizhou\",\n            \"IPI\": \"01020455905\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 7\n        },\n        {\n            \"ID\": \"ef2ce1e9e430d0dc\",\n            \"FirstName\": \"Elik\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Alvarez\",\n            \"IPI\": \"404514987\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 6\n        },\n        {\n            \"ID\": \"5345a677c1e56080\",\n            \"FirstName\": \"Eino\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Anttila\",\n            \"IPI\": \"701972551\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"TEOSTO\",\n            \"TrackCount\": 4\n        },\n        {\n            \"ID\": \"164f582dfbb1c813\",\n            \"FirstName\": \"Brian\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Aumueller\",\n            \"IPI\": \"346397728\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 10\n        },\n        {\n            \"ID\": \"8eaf63292e4205d9\",\n            \"FirstName\": \"Jevonta\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Barginere\",\n            \"IPI\": \"650633950\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 3\n        },\n        {\n            \"ID\": \"7b7c1a140917edf8\",\n            \"FirstName\": \"James\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Barton\",\n            \"IPI\": \"436099736\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 14\n        },\n        {\n            \"ID\": \"92c2322a184c4adf\",\n            \"FirstName\": \"Thomas\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Bergersen\",\n            \"IPI\": \"483136355\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 29\n        },\n        {\n            \"ID\": \"9f80eea6dd88368c\",\n            \"FirstName\": \"Mike\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Bielenberg\",\n            \"IPI\": \"185918819\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 10\n        },\n        {\n            \"ID\": \"084e5cb54e2fb38c\",\n            \"FirstName\": \"Daniel\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Birczynski\",\n            \"IPI\": \"405018501\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 1\n        },\n        {\n            \"ID\": \"1cd233f92e1d8f8b\",\n            \"FirstName\": \"Ariel\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Blumenthal\",\n            \"IPI\": \"418972232\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 5\n        },\n        {\n            \"ID\": \"145f0db22d5417d9\",\n            \"FirstName\": \"Madison\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Bond\",\n            \"IPI\": \"407437271\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 6\n        },\n        {\n            \"ID\": \"1c1562567510ab39\",\n            \"FirstName\": \"Daniel\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Briceno\",\n            \"IPI\": \"363011699\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 2\n        },\n        {\n            \"ID\": \"aba7748290e7c0e0\",\n            \"FirstName\": \"Hannis\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Brown\",\n            \"IPI\": \"509561154\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 13\n        },\n        {\n            \"ID\": \"59a40772f09708e1\",\n            \"FirstName\": \"Brian\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Burrows\",\n            \"IPI\": \"251808375\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"PRS\",\n            \"TrackCount\": 10\n        },\n        {\n            \"ID\": \"7c8ac2025a20e9db\",\n            \"FirstName\": \"John\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Carta\",\n            \"IPI\": \"193891622\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"SESAC\",\n            \"TrackCount\": 2\n        },\n        {\n            \"ID\": \"c3db191bdb8b9933\",\n            \"FirstName\": \"\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Cato\",\n            \"IPI\": \"225122512\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 5\n        },\n        {\n            \"ID\": \"de8c0ad941f38335\",\n            \"FirstName\": \"Chris\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Child\",\n            \"IPI\": \"470617850\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 19\n        },\n        {\n            \"ID\": \"02b1069cbe4468b5\",\n            \"FirstName\": \"Oliver\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Codd\",\n            \"IPI\": \"457810343\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 3\n        },\n        {\n            \"ID\": \"054d1050285c05c9\",\n            \"FirstName\": \"Brandon\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Cordoba\",\n            \"IPI\": \"690982204\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 3\n        },\n        {\n            \"ID\": \"38ca4e23814df784\",\n            \"FirstName\": \"Billy\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Cote\",\n            \"IPI\": \"335335869\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 6\n        },\n        {\n            \"ID\": \"5400923b437f086d\",\n            \"FirstName\": \"Matt\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Couchois\",\n            \"IPI\": \"682184135\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 3\n        },\n        {\n            \"ID\": \"b7f25579e2c8cd8a\",\n            \"FirstName\": \"Matthew\",\n            \"MiddleName\": \"Julian\",\n            \"LastName\": \"Davis\",\n            \"IPI\": \"821514175\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 4\n        },\n        {\n            \"ID\": \"b6f0b0e15495e518\",\n            \"FirstName\": \"Michael\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Dillon\",\n            \"IPI\": \"559007542\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 1\n        },\n        {\n            \"ID\": \"05ec17305bb3c849\",\n            \"FirstName\": \"Amanzi\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Dolby\",\n            \"IPI\": \"01232492278\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"PRS\",\n            \"TrackCount\": 5\n        },\n        {\n            \"ID\": \"699d3d9cfed031de\",\n            \"FirstName\": \"Marc\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Dold\",\n            \"IPI\": \"341153894\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 15\n        },\n        {\n            \"ID\": \"d20bfca0f7a35e39\",\n            \"FirstName\": \"Adam\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Dorn\",\n            \"IPI\": \"340750585\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 93\n        },\n        {\n            \"ID\": \"cbd85fbf26e2f044\",\n            \"FirstName\": \"Bojan\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Dugic\",\n            \"IPI\": \"493789880\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 31\n        },\n        {\n            \"ID\": \"223ed51a5d9b625e\",\n            \"FirstName\": \"Laurent\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Dury\",\n            \"IPI\": \"152518584\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"SACEM\",\n            \"TrackCount\": 17\n        },\n        {\n            \"ID\": \"a43bd92269a76286\",\n            \"FirstName\": \"Charles\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Evans\",\n            \"IPI\": \"640117194\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 2\n        },\n        {\n            \"ID\": \"a78ab73bdd2a281a\",\n            \"FirstName\": \"JJ\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Farris\",\n            \"IPI\": \"334238283\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 41\n        },\n        {\n            \"ID\": \"bec2afdcb1dff17b\",\n            \"FirstName\": \"David\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Fisher\",\n            \"IPI\": \"421069197\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 2\n        },\n        {\n            \"ID\": \"1ff9aad2571eaa3c\",\n            \"FirstName\": \"Antwann\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Frost\",\n            \"IPI\": \"001648990\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 5\n        },\n        {\n            \"ID\": \"cdcbb04fb1448304\",\n            \"FirstName\": \"Randy\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Fuentes\",\n            \"IPI\": \"682942803\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 4\n        },\n        {\n            \"ID\": \"687f332e54b6b73a\",\n            \"FirstName\": \"Kian\",\n            \"MiddleName\": \"Mykal\",\n            \"LastName\": \"Fuertes\",\n            \"IPI\": \"873756099\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 11\n        },\n        {\n            \"ID\": \"a7c25d458e74eebb\",\n            \"FirstName\": \"George\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Gabriel\",\n            \"IPI\": \"353504186\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 72\n        },\n        {\n            \"ID\": \"0a8f3f882fd39686\",\n            \"FirstName\": \"Chris\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Gargani\",\n            \"IPI\": \"437822543\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 4\n        },\n        {\n            \"ID\": \"feab17905334c70b\",\n            \"FirstName\": \"Barry\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Gilbey\",\n            \"IPI\": \"280569740\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"PRS\",\n            \"TrackCount\": 8\n        },\n        {\n            \"ID\": \"e4c93e6ab815704d\",\n            \"FirstName\": \"Vincent\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Gillioz\",\n            \"IPI\": \"190080687\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 6\n        },\n        {\n            \"ID\": \"65e00601792e3566\",\n            \"FirstName\": \"Dan\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Goldberg\",\n            \"IPI\": \"337290559\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 16\n        },\n        {\n            \"ID\": \"721407bd0488899a\",\n            \"FirstName\": \"\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Goldi\",\n            \"IPI\": \"348429439\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 7\n        },\n        {\n            \"ID\": \"dd32c5f625f81a85\",\n            \"FirstName\": \"Josh\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Goode\",\n            \"IPI\": \"480836534\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 6\n        },\n        {\n            \"ID\": \"5faab47db2c00aee\",\n            \"FirstName\": \"Ethan\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Gouldbourne\",\n            \"IPI\": \"458655414\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 6\n        },\n        {\n            \"ID\": \"a5403cb44ce3d6d2\",\n            \"FirstName\": \"Adelekan\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Group\",\n            \"IPI\": \"594270919\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 34\n        },\n        {\n            \"ID\": \"dac578c5d4819632\",\n            \"FirstName\": \"Andre\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Gruber\",\n            \"IPI\": \"01005020838\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 14\n        },\n        {\n            \"ID\": \"de77dc1c610e06d0\",\n            \"FirstName\": \"Isabella\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Guanipa\",\n            \"IPI\": \"01161124896\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 16\n        },\n        {\n            \"ID\": \"bf64891c751567cf\",\n            \"FirstName\": \"Saul\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Guanipa\",\n            \"IPI\": \"768084995\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 786\n        },\n        {\n            \"ID\": \"ed78df43866db50a\",\n            \"FirstName\": \"James\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Guffee\",\n            \"IPI\": \"334238283\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 9\n        },\n        {\n            \"ID\": \"b59a953ab1d51a3f\",\n            \"FirstName\": \"Matt\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Haick\",\n            \"IPI\": \"558091236\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 1090\n        },\n        {\n            \"ID\": \"791bb36ab9343cc8\",\n            \"FirstName\": \"Andrew\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Halford\",\n            \"IPI\": \"651277838\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"PRS\",\n            \"TrackCount\": 19\n        },\n        {\n            \"ID\": \"4599dc9bb35ba221\",\n            \"FirstName\": \"Chris\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Hanson\",\n            \"IPI\": \"342787442\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 198\n        },\n        {\n            \"ID\": \"27d88f0b73af5f6f\",\n            \"FirstName\": \"Sean\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Hayden\",\n            \"IPI\": \"580193056\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"SOCAN\",\n            \"TrackCount\": 14\n        },\n        {\n            \"ID\": \"002c71cd6b3cf382\",\n            \"FirstName\": \"Frank\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Heiss\",\n            \"IPI\": \"340862472\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 9\n        },\n        {\n            \"ID\": \"766d5bb1f7d41f73\",\n            \"FirstName\": \"Niccolo\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Hilgendorf\",\n            \"IPI\": \"01072709658\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 16\n        },\n        {\n            \"ID\": \"c7636312cc51ba7e\",\n            \"FirstName\": \"Oshima\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Hiro\",\n            \"IPI\": \"349288716\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 5\n        },\n        {\n            \"ID\": \"456a58da4e872a6b\",\n            \"FirstName\": \"Daniel\",\n            \"MiddleName\": \"Carl\",\n            \"LastName\": \"Holter\",\n            \"IPI\": \"340379374\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 47\n        },\n        {\n            \"ID\": \"8a54d86dc36decc6\",\n            \"FirstName\": \"Bradford\",\n            \"MiddleName\": \"Allen\",\n            \"LastName\": \"Jerkins\",\n            \"IPI\": \"434969911\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 5\n        },\n        {\n            \"ID\": \"288b201c2e949736\",\n            \"FirstName\": \"Cheyenne\",\n            \"MiddleName\": \"Melton\",\n            \"LastName\": \"Jolene\",\n            \"IPI\": \"716296725\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 12\n        },\n        {\n            \"ID\": \"e2d521a074cbe848\",\n            \"FirstName\": \"Chris\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Jones\",\n            \"IPI\": \"426054676\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 571\n        },\n        {\n            \"ID\": \"a067b645289f11ec\",\n            \"FirstName\": \"Pete\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Jones\",\n            \"IPI\": \"419458829\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"APRA\",\n            \"TrackCount\": 2\n        },\n        {\n            \"ID\": \"00b2f64212cf2a6b\",\n            \"FirstName\": \"Madli\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Kents\",\n            \"IPI\": \"590565721\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 32\n        },\n        {\n            \"ID\": \"b41316ad06963a52\",\n            \"FirstName\": \"Yeghia\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Kibalian\",\n            \"IPI\": \"294180552\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"SOCAN\",\n            \"TrackCount\": 2\n        },\n        {\n            \"ID\": \"07e9ce46b6be2fcb\",\n            \"FirstName\": \"Nathan\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Kil\",\n            \"IPI\": \"524090480\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 2\n        },\n        {\n            \"ID\": \"3df8a5d79f2675dd\",\n            \"FirstName\": \"Bob\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Kroeger\",\n            \"IPI\": \"353601582\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 2\n        },\n        {\n            \"ID\": \"7914869ca797f4c0\",\n            \"FirstName\": \"Aidan\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Laverty\",\n            \"IPI\": \"655045940\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"PRS\",\n            \"TrackCount\": 19\n        },\n        {\n            \"ID\": \"f6f4fba8540c929c\",\n            \"FirstName\": \"Flavio\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Lemelle\",\n            \"IPI\": \"402625497\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 456\n        },\n        {\n            \"ID\": \"c9b4663da56fce17\",\n            \"FirstName\": \"Giovanni\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Lodigiani\",\n            \"IPI\": \"184312775\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 40\n        },\n        {\n            \"ID\": \"dd6d121052a2123d\",\n            \"FirstName\": \"Mary\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Lorson\",\n            \"IPI\": \"244447175\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 6\n        },\n        {\n            \"ID\": \"92f4ac2b9b972590\",\n            \"FirstName\": \"Isaac\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Lucas\",\n            \"IPI\": \"779878248\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 15\n        },\n        {\n            \"ID\": \"f53ee237d0157cc8\",\n            \"FirstName\": \"Candace\",\n            \"MiddleName\": \"Nicole\",\n            \"LastName\": \"Mabra\",\n            \"IPI\": \"755852309\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 16\n        },\n        {\n            \"ID\": \"4e0fcbdb3fa6521d\",\n            \"FirstName\": \"David\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Majzlin\",\n            \"IPI\": \"342715084\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 14\n        },\n        {\n            \"ID\": \"637d17101ca24b26\",\n            \"FirstName\": \"Tobias\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Marberger\",\n            \"IPI\": \"263812272\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 5\n        },\n        {\n            \"ID\": \"7d97bc39787cb784\",\n            \"FirstName\": \"Dominic\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Marsh\",\n            \"IPI\": \"419458829\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"PRS\",\n            \"TrackCount\": 2\n        },\n        {\n            \"ID\": \"5afe11e658aa90d6\",\n            \"FirstName\": \"Oliver\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Mason\",\n            \"IPI\": \"731906252\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"PRS\",\n            \"TrackCount\": 2\n        },\n        {\n            \"ID\": \"fbfb0f2bc80fba95\",\n            \"FirstName\": \"Kelly\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"McCollough\",\n            \"IPI\": \"687452895\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 99\n        },\n        {\n            \"ID\": \"fdcfd861534e5d6b\",\n            \"FirstName\": \"Gary\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Meister\",\n            \"IPI\": \"185979400\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 5\n        },\n        {\n            \"ID\": \"cced1a0ea4beb723\",\n            \"FirstName\": \"Gabriella\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Mejias\",\n            \"IPI\": \"01095539428\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 15\n        },\n        {\n            \"ID\": \"1ee458dd425b112f\",\n            \"FirstName\": \"Matt\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Miller\",\n            \"IPI\": \"349174051\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 46\n        },\n        {\n            \"ID\": \"63574ce1cc8421ee\",\n            \"FirstName\": \"Tony\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Morales\",\n            \"IPI\": \"339871522\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 15\n        },\n        {\n            \"ID\": \"62e188bcadc0c462\",\n            \"FirstName\": \"Jim\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Morgan\",\n            \"IPI\": \"01111111111\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 8\n        },\n        {\n            \"ID\": \"f4b5ee6c50f5da55\",\n            \"FirstName\": \"\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"None\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"NS\",\n            \"TrackCount\": 2\n        },\n        {\n            \"ID\": \"beda405e12d327b1\",\n            \"FirstName\": \"Dylan\",\n            \"MiddleName\": \"B\",\n            \"LastName\": \"Nowik\",\n            \"IPI\": \"761717724\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 155\n        },\n        {\n            \"ID\": \"9acd3639f4d07e08\",\n            \"FirstName\": \"Ali\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Ochoa\",\n            \"IPI\": \"364194843\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 12\n        },\n        {\n            \"ID\": \"1c39f70b5f58fcfc\",\n            \"FirstName\": \"Jordan\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Orvosh\",\n            \"IPI\": \"481050970\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 6\n        },\n        {\n            \"ID\": \"a9eb34a22be75c1e\",\n            \"FirstName\": \"Jason\",\n            \"MiddleName\": \"M\",\n            \"LastName\": \"Petrin\",\n            \"IPI\": \"504234692\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 34\n        },\n        {\n            \"ID\": \"e4dc12da5396df9c\",\n            \"FirstName\": \"Thomas\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Porter\",\n            \"IPI\": \"441714085\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 74\n        },\n        {\n            \"ID\": \"fc6ea90d886d9c87\",\n            \"FirstName\": \"Darren Leigh\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Purkiss\",\n            \"IPI\": \"295784899\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 5\n        },\n        {\n            \"ID\": \"ccd169b58c33e2ab\",\n            \"FirstName\": \"Didier\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Rachou\",\n            \"IPI\": \"338667132\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 3\n        },\n        {\n            \"ID\": \"78d6f09f1428177c\",\n            \"FirstName\": \"Matt\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Ragan\",\n            \"IPI\": \"431564768\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 14\n        },\n        {\n            \"ID\": \"782a34e887e65f29\",\n            \"FirstName\": \"Brian\",\n            \"MiddleName\": \"Michael\",\n            \"LastName\": \"Randazzo\",\n            \"IPI\": \"449053843\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 1149\n        },\n        {\n            \"ID\": \"d7b1c0c941a2315f\",\n            \"FirstName\": \"Raymon\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Reed\",\n            \"IPI\": \"643359732\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 9\n        },\n        {\n            \"ID\": \"d10508125f429545\",\n            \"FirstName\": \"Mauro\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Refosco\",\n            \"IPI\": \"337659528\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 62\n        },\n        {\n            \"ID\": \"0a4cd55691d84ff0\",\n            \"FirstName\": \"Nicholas\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Rodriguez\",\n            \"IPI\": \"541587246\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 31\n        },\n        {\n            \"ID\": \"49cd82781fe48cad\",\n            \"FirstName\": \"Edward\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Rogers\",\n            \"IPI\": \"193114974\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 1\n        },\n        {\n            \"ID\": \"a49d3f69a3488e60\",\n            \"FirstName\": \"John\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Ross\",\n            \"IPI\": \"593451920\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 123\n        },\n        {\n            \"ID\": \"063ad461f8be2aef\",\n            \"FirstName\": \"Dominique\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Rowland\",\n            \"IPI\": \"339314660\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 4\n        },\n        {\n            \"ID\": \"440354be6ab9d61c\",\n            \"FirstName\": \"Cynthia\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Russ\",\n            \"IPI\": \"355709443\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 15\n        },\n        {\n            \"ID\": \"14f4fdce012042f9\",\n            \"FirstName\": \"Joseph\",\n            \"MiddleName\": \"M\",\n            \"LastName\": \"Saba\",\n            \"IPI\": \"336945045\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 3700\n        },\n        {\n            \"ID\": \"902f4074fab85afb\",\n            \"FirstName\": \"Aaron\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Sapp\",\n            \"IPI\": \"457810343\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 390\n        },\n        {\n            \"ID\": \"7911562a04ac7beb\",\n            \"FirstName\": \"David\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Scheffler\",\n            \"IPI\": \"235052893\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 2\n        },\n        {\n            \"ID\": \"106c796fe0ab2029\",\n            \"FirstName\": \"Markus\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Schmidt\",\n            \"IPI\": \"658415032\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 8\n        },\n        {\n            \"ID\": \"c18ff1e608e6ae13\",\n            \"FirstName\": \"Florian\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Seraul\",\n            \"IPI\": \"658485791\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"SOCAN\",\n            \"TrackCount\": 26\n        },\n        {\n            \"ID\": \"cdc0865ceeb954c7\",\n            \"FirstName\": \"Aaron\",\n            \"MiddleName\": \"John\",\n            \"LastName\": \"Shapiro\",\n            \"IPI\": \"850729327\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 39\n        },\n        {\n            \"ID\": \"3b4e14850638747c\",\n            \"FirstName\": \"Scott\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Shapiro\",\n            \"IPI\": \"403968255\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 4\n        },\n        {\n            \"ID\": \"7d3beb538d239ad5\",\n            \"FirstName\": \"Freddy\",\n            \"MiddleName\": \"J\",\n            \"LastName\": \"Sheinfeld\",\n            \"IPI\": \"405018501\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 6\n        },\n        {\n            \"ID\": \"8255cb2b7a8ae939\",\n            \"FirstName\": \"Miranda\",\n            \"MiddleName\": \"Lee\",\n            \"LastName\": \"Siegersma\",\n            \"IPI\": \"699955058\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 4\n        },\n        {\n            \"ID\": \"888b5459f6907e57\",\n            \"FirstName\": \"Clifford\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Simms\",\n            \"IPI\": \"464462054\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"PRS\",\n            \"TrackCount\": 18\n        },\n        {\n            \"ID\": \"ef4a65a855d9518a\",\n            \"FirstName\": \"Matt\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Smith\",\n            \"IPI\": \"507919632\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 5\n        },\n        {\n            \"ID\": \"18013f6b8a559596\",\n            \"FirstName\": \"Eric\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Speier\",\n            \"IPI\": \"199600635\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 7\n        },\n        {\n            \"ID\": \"2dfea4d681764345\",\n            \"FirstName\": \"William\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Stankay\",\n            \"IPI\": \"604479349\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 4\n        },\n        {\n            \"ID\": \"c40662cc22cd645c\",\n            \"FirstName\": \"Adam\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Steiglitz\",\n            \"IPI\": \"429663137\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 6\n        },\n        {\n            \"ID\": \"95e8a0db9d3d7a49\",\n            \"FirstName\": \"Brandon\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Stewart\",\n            \"IPI\": \"678182700\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 3\n        },\n        {\n            \"ID\": \"8e0b85407e9e3a75\",\n            \"FirstName\": \"Michael\",\n            \"MiddleName\": \"Gray\",\n            \"LastName\": \"Stokes\",\n            \"IPI\": \"481651447\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 5\n        },\n        {\n            \"ID\": \"74046ca302bb3655\",\n            \"FirstName\": \"Pete\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Swanson\",\n            \"IPI\": \"335865048\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 1\n        },\n        {\n            \"ID\": \"9a0e8622e19c0f34\",\n            \"FirstName\": \"Maggie\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Szabo\",\n            \"IPI\": \"499280501\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 6\n        },\n        {\n            \"ID\": \"77ed9c0ad7c62d2e\",\n            \"FirstName\": \"Fred\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Szymanski\",\n            \"IPI\": \"339344844\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 29\n        },\n        {\n            \"ID\": \"a13e44a8ff51ea5a\",\n            \"FirstName\": \"Nic.\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"tenBroek\",\n            \"IPI\": \"192868129\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 35\n        },\n        {\n            \"ID\": \"54badc43473da20e\",\n            \"FirstName\": \"Adam\",\n            \"MiddleName\": \"Corey\",\n            \"LastName\": \"Tenenbaum\",\n            \"IPI\": \"357343159\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 14\n        },\n        {\n            \"ID\": \"89e362aae05abdcf\",\n            \"FirstName\": \"Luca\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Thomas d'Agiout\",\n            \"IPI\": \"559695289\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"SIAE\",\n            \"TrackCount\": 2\n        },\n        {\n            \"ID\": \"2bb7c6c1ad0d1c54\",\n            \"FirstName\": \"Lindsay\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Tomasic\",\n            \"IPI\": \"129985622\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 5\n        },\n        {\n            \"ID\": \"cdab9c273f8fabdc\",\n            \"FirstName\": \"Robert\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"ToTeras\",\n            \"IPI\": \"599254594\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 56\n        },\n        {\n            \"ID\": \"2d5f5b9397098bfc\",\n            \"FirstName\": \"Alexander\",\n            \"MiddleName\": \"Flynn\",\n            \"LastName\": \"Toth\",\n            \"IPI\": \"525043485\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 14\n        },\n        {\n            \"ID\": \"56bdf27d36417942\",\n            \"FirstName\": \"Bruce\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Upchurch\",\n            \"IPI\": \"214775567\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 8\n        },\n        {\n            \"ID\": \"eb341e169c7a2e50\",\n            \"FirstName\": \"Jorge\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Valera\",\n            \"IPI\": \"01126013511\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 11\n        },\n        {\n            \"ID\": \"7da5d6abf7148705\",\n            \"FirstName\": \"Ric\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Viers\",\n            \"IPI\": \"490138850\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 8\n        },\n        {\n            \"ID\": \"5d656c5524eee1e3\",\n            \"FirstName\": \"Charlie\",\n            \"MiddleName\": \"Bryce\",\n            \"LastName\": \"Wallace\",\n            \"IPI\": \"636450645\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"PRS\",\n            \"TrackCount\": 6\n        },\n        {\n            \"ID\": \"6756844bebaeaf57\",\n            \"FirstName\": \"Benjamin\",\n            \"MiddleName\": \"A\",\n            \"LastName\": \"Weinman\",\n            \"IPI\": \"419819332\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 2\n        },\n        {\n            \"ID\": \"05645267800aebbf\",\n            \"FirstName\": \"William\",\n            \"MiddleName\": \"Paul\",\n            \"LastName\": \"Werwath\",\n            \"IPI\": \"505229773\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 1579\n        },\n        {\n            \"ID\": \"4620fbd9bb0c0b75\",\n            \"FirstName\": \"Kyle\",\n            \"MiddleName\": \"William\",\n            \"LastName\": \"White\",\n            \"IPI\": \"463932243\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 52\n        },\n        {\n            \"ID\": \"736975c184236313\",\n            \"FirstName\": \"Leon\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Willett\",\n            \"IPI\": \"152518584\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 6\n        },\n        {\n            \"ID\": \"f919250b25a5a4ea\",\n            \"FirstName\": \"Chaz\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Windus\",\n            \"IPI\": \"440133998\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 2\n        },\n        {\n            \"ID\": \"80a41e86aeba140f\",\n            \"FirstName\": \"Michael\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Winter\",\n            \"IPI\": \"538875206\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 4\n        },\n        {\n            \"ID\": \"6858410f021d6d42\",\n            \"FirstName\": \"Stewart\",\n            \"MiddleName\": \"J\",\n            \"LastName\": \"Winter\",\n            \"IPI\": \"337973523\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 3700\n        },\n        {\n            \"ID\": \"fa483bcdd15d227c\",\n            \"FirstName\": \"Matthew\",\n            \"MiddleName\": \"Sperling\",\n            \"LastName\": \"Witte\",\n            \"IPI\": \"356691822\",\n            \"Capacity\": \"ComposerAuthor\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"BMI\",\n            \"TrackCount\": 43\n        },\n        {\n            \"ID\": \"33e3e5e433fe1b4b\",\n            \"FirstName\": \"Ben\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Xavier\",\n            \"IPI\": \"340509588\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 38\n        },\n        {\n            \"ID\": \"881d2a6124f14239\",\n            \"FirstName\": \"Krysta\",\n            \"MiddleName\": \"\",\n            \"LastName\": \"Youngs\",\n            \"IPI\": \"528053659\",\n            \"Capacity\": \"Composer\",\n            \"CapacityGroup\": \"WRITER\",\n            \"CollectingSocietyName\": \"ASCAP\",\n            \"TrackCount\": 3\n        }\n    ]\n}"},{"id":"7523cc74-3f62-4dad-94b7-3aed029789c2","name":"Get Right Holders (XML)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/xml"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":{"raw":"{{HM_ServiceAPI_URL}}/getrightholders/{{HM_ServiceAPI_MemberToken}}?skip=0&limit=1000&returntrackcount=1&sort=Alphabetic_Asc&capacity=Composer,ComposerAuthor","host":["{{HM_ServiceAPI_URL}}"],"path":["getrightholders","{{HM_ServiceAPI_MemberToken}}"],"query":[{"key":"skip","value":"0"},{"key":"limit","value":"1000"},{"key":"returntrackcount","value":"1"},{"key":"sort","value":"Alphabetic_Asc"},{"key":"capacity","value":"Composer,ComposerAuthor"}]}},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Wed, 21 Aug 2024 06:31:39 GMT"},{"key":"Content-Type","value":"application/xml"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<responserightholders xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <rightholders>\n        <rightholder id=\"953a14c4b4207398\" firstname=\"Adeniyi\" middlename=\"\" lastname=\"Adelekan\" ipi=\"345399728\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"8\" />\n        <rightholder id=\"d0979dc7ae21e253\" firstname=\"Marko\" middlename=\"\" lastname=\"Ahtisaari\" ipi=\"338169347\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"62\" />\n        <rightholder id=\"2ea040086992cd10\" firstname=\"Amy\" middlename=\"\" lastname=\"Aizhou\" ipi=\"01020455905\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"7\" />\n        <rightholder id=\"ef2ce1e9e430d0dc\" firstname=\"Elik\" middlename=\"\" lastname=\"Alvarez\" ipi=\"404514987\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"6\" />\n        <rightholder id=\"5345a677c1e56080\" firstname=\"Eino\" middlename=\"\" lastname=\"Anttila\" ipi=\"701972551\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"TEOSTO\" trackcount=\"4\" />\n        <rightholder id=\"164f582dfbb1c813\" firstname=\"Brian\" middlename=\"\" lastname=\"Aumueller\" ipi=\"346397728\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"10\" />\n        <rightholder id=\"8eaf63292e4205d9\" firstname=\"Jevonta\" middlename=\"\" lastname=\"Barginere\" ipi=\"650633950\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"3\" />\n        <rightholder id=\"7b7c1a140917edf8\" firstname=\"James\" middlename=\"\" lastname=\"Barton\" ipi=\"436099736\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"14\" />\n        <rightholder id=\"92c2322a184c4adf\" firstname=\"Thomas\" middlename=\"\" lastname=\"Bergersen\" ipi=\"483136355\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"29\" />\n        <rightholder id=\"9f80eea6dd88368c\" firstname=\"Mike\" middlename=\"\" lastname=\"Bielenberg\" ipi=\"185918819\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"10\" />\n        <rightholder id=\"084e5cb54e2fb38c\" firstname=\"Daniel\" middlename=\"\" lastname=\"Birczynski\" ipi=\"405018501\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"1\" />\n        <rightholder id=\"1cd233f92e1d8f8b\" firstname=\"Ariel\" middlename=\"\" lastname=\"Blumenthal\" ipi=\"418972232\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"5\" />\n        <rightholder id=\"145f0db22d5417d9\" firstname=\"Madison\" middlename=\"\" lastname=\"Bond\" ipi=\"407437271\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"6\" />\n        <rightholder id=\"1c1562567510ab39\" firstname=\"Daniel\" middlename=\"\" lastname=\"Briceno\" ipi=\"363011699\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"2\" />\n        <rightholder id=\"aba7748290e7c0e0\" firstname=\"Hannis\" middlename=\"\" lastname=\"Brown\" ipi=\"509561154\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"13\" />\n        <rightholder id=\"59a40772f09708e1\" firstname=\"Brian\" middlename=\"\" lastname=\"Burrows\" ipi=\"251808375\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"PRS\" trackcount=\"10\" />\n        <rightholder id=\"7c8ac2025a20e9db\" firstname=\"John\" middlename=\"\" lastname=\"Carta\" ipi=\"193891622\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"SESAC\" trackcount=\"2\" />\n        <rightholder id=\"c3db191bdb8b9933\" firstname=\"\" middlename=\"\" lastname=\"Cato\" ipi=\"225122512\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"5\" />\n        <rightholder id=\"de8c0ad941f38335\" firstname=\"Chris\" middlename=\"\" lastname=\"Child\" ipi=\"470617850\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"19\" />\n        <rightholder id=\"02b1069cbe4468b5\" firstname=\"Oliver\" middlename=\"\" lastname=\"Codd\" ipi=\"457810343\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"3\" />\n        <rightholder id=\"054d1050285c05c9\" firstname=\"Brandon\" middlename=\"\" lastname=\"Cordoba\" ipi=\"690982204\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"3\" />\n        <rightholder id=\"38ca4e23814df784\" firstname=\"Billy\" middlename=\"\" lastname=\"Cote\" ipi=\"335335869\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"6\" />\n        <rightholder id=\"5400923b437f086d\" firstname=\"Matt\" middlename=\"\" lastname=\"Couchois\" ipi=\"682184135\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"3\" />\n        <rightholder id=\"b7f25579e2c8cd8a\" firstname=\"Matthew\" middlename=\"Julian\" lastname=\"Davis\" ipi=\"821514175\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"4\" />\n        <rightholder id=\"b6f0b0e15495e518\" firstname=\"Michael\" middlename=\"\" lastname=\"Dillon\" ipi=\"559007542\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"1\" />\n        <rightholder id=\"05ec17305bb3c849\" firstname=\"Amanzi\" middlename=\"\" lastname=\"Dolby\" ipi=\"01232492278\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"PRS\" trackcount=\"5\" />\n        <rightholder id=\"699d3d9cfed031de\" firstname=\"Marc\" middlename=\"\" lastname=\"Dold\" ipi=\"341153894\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"15\" />\n        <rightholder id=\"d20bfca0f7a35e39\" firstname=\"Adam\" middlename=\"\" lastname=\"Dorn\" ipi=\"340750585\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"93\" />\n        <rightholder id=\"cbd85fbf26e2f044\" firstname=\"Bojan\" middlename=\"\" lastname=\"Dugic\" ipi=\"493789880\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"31\" />\n        <rightholder id=\"223ed51a5d9b625e\" firstname=\"Laurent\" middlename=\"\" lastname=\"Dury\" ipi=\"152518584\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"SACEM\" trackcount=\"17\" />\n        <rightholder id=\"a43bd92269a76286\" firstname=\"Charles\" middlename=\"\" lastname=\"Evans\" ipi=\"640117194\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"2\" />\n        <rightholder id=\"a78ab73bdd2a281a\" firstname=\"JJ\" middlename=\"\" lastname=\"Farris\" ipi=\"334238283\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"41\" />\n        <rightholder id=\"bec2afdcb1dff17b\" firstname=\"David\" middlename=\"\" lastname=\"Fisher\" ipi=\"421069197\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"2\" />\n        <rightholder id=\"1ff9aad2571eaa3c\" firstname=\"Antwann\" middlename=\"\" lastname=\"Frost\" ipi=\"001648990\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"5\" />\n        <rightholder id=\"cdcbb04fb1448304\" firstname=\"Randy\" middlename=\"\" lastname=\"Fuentes\" ipi=\"682942803\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"4\" />\n        <rightholder id=\"687f332e54b6b73a\" firstname=\"Kian\" middlename=\"Mykal\" lastname=\"Fuertes\" ipi=\"873756099\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"11\" />\n        <rightholder id=\"a7c25d458e74eebb\" firstname=\"George\" middlename=\"\" lastname=\"Gabriel\" ipi=\"353504186\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"72\" />\n        <rightholder id=\"0a8f3f882fd39686\" firstname=\"Chris\" middlename=\"\" lastname=\"Gargani\" ipi=\"437822543\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"4\" />\n        <rightholder id=\"feab17905334c70b\" firstname=\"Barry\" middlename=\"\" lastname=\"Gilbey\" ipi=\"280569740\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"PRS\" trackcount=\"8\" />\n        <rightholder id=\"e4c93e6ab815704d\" firstname=\"Vincent\" middlename=\"\" lastname=\"Gillioz\" ipi=\"190080687\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"6\" />\n        <rightholder id=\"65e00601792e3566\" firstname=\"Dan\" middlename=\"\" lastname=\"Goldberg\" ipi=\"337290559\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"16\" />\n        <rightholder id=\"721407bd0488899a\" firstname=\"\" middlename=\"\" lastname=\"Goldi\" ipi=\"348429439\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"7\" />\n        <rightholder id=\"dd32c5f625f81a85\" firstname=\"Josh\" middlename=\"\" lastname=\"Goode\" ipi=\"480836534\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"6\" />\n        <rightholder id=\"5faab47db2c00aee\" firstname=\"Ethan\" middlename=\"\" lastname=\"Gouldbourne\" ipi=\"458655414\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"6\" />\n        <rightholder id=\"a5403cb44ce3d6d2\" firstname=\"Adelekan\" middlename=\"\" lastname=\"Group\" ipi=\"594270919\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"34\" />\n        <rightholder id=\"dac578c5d4819632\" firstname=\"Andre\" middlename=\"\" lastname=\"Gruber\" ipi=\"01005020838\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"14\" />\n        <rightholder id=\"de77dc1c610e06d0\" firstname=\"Isabella\" middlename=\"\" lastname=\"Guanipa\" ipi=\"01161124896\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"16\" />\n        <rightholder id=\"bf64891c751567cf\" firstname=\"Saul\" middlename=\"\" lastname=\"Guanipa\" ipi=\"768084995\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"786\" />\n        <rightholder id=\"ed78df43866db50a\" firstname=\"James\" middlename=\"\" lastname=\"Guffee\" ipi=\"334238283\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"9\" />\n        <rightholder id=\"b59a953ab1d51a3f\" firstname=\"Matt\" middlename=\"\" lastname=\"Haick\" ipi=\"558091236\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"1090\" />\n        <rightholder id=\"791bb36ab9343cc8\" firstname=\"Andrew\" middlename=\"\" lastname=\"Halford\" ipi=\"651277838\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"PRS\" trackcount=\"19\" />\n        <rightholder id=\"4599dc9bb35ba221\" firstname=\"Chris\" middlename=\"\" lastname=\"Hanson\" ipi=\"342787442\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"198\" />\n        <rightholder id=\"27d88f0b73af5f6f\" firstname=\"Sean\" middlename=\"\" lastname=\"Hayden\" ipi=\"580193056\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"SOCAN\" trackcount=\"14\" />\n        <rightholder id=\"002c71cd6b3cf382\" firstname=\"Frank\" middlename=\"\" lastname=\"Heiss\" ipi=\"340862472\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"9\" />\n        <rightholder id=\"766d5bb1f7d41f73\" firstname=\"Niccolo\" middlename=\"\" lastname=\"Hilgendorf\" ipi=\"01072709658\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"16\" />\n        <rightholder id=\"c7636312cc51ba7e\" firstname=\"Oshima\" middlename=\"\" lastname=\"Hiro\" ipi=\"349288716\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"5\" />\n        <rightholder id=\"456a58da4e872a6b\" firstname=\"Daniel\" middlename=\"Carl\" lastname=\"Holter\" ipi=\"340379374\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"47\" />\n        <rightholder id=\"8a54d86dc36decc6\" firstname=\"Bradford\" middlename=\"Allen\" lastname=\"Jerkins\" ipi=\"434969911\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"5\" />\n        <rightholder id=\"288b201c2e949736\" firstname=\"Cheyenne\" middlename=\"Melton\" lastname=\"Jolene\" ipi=\"716296725\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"12\" />\n        <rightholder id=\"e2d521a074cbe848\" firstname=\"Chris\" middlename=\"\" lastname=\"Jones\" ipi=\"426054676\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"571\" />\n        <rightholder id=\"a067b645289f11ec\" firstname=\"Pete\" middlename=\"\" lastname=\"Jones\" ipi=\"419458829\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"APRA\" trackcount=\"2\" />\n        <rightholder id=\"00b2f64212cf2a6b\" firstname=\"Madli\" middlename=\"\" lastname=\"Kents\" ipi=\"590565721\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"32\" />\n        <rightholder id=\"b41316ad06963a52\" firstname=\"Yeghia\" middlename=\"\" lastname=\"Kibalian\" ipi=\"294180552\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"SOCAN\" trackcount=\"2\" />\n        <rightholder id=\"07e9ce46b6be2fcb\" firstname=\"Nathan\" middlename=\"\" lastname=\"Kil\" ipi=\"524090480\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"2\" />\n        <rightholder id=\"3df8a5d79f2675dd\" firstname=\"Bob\" middlename=\"\" lastname=\"Kroeger\" ipi=\"353601582\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"2\" />\n        <rightholder id=\"7914869ca797f4c0\" firstname=\"Aidan\" middlename=\"\" lastname=\"Laverty\" ipi=\"655045940\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"PRS\" trackcount=\"19\" />\n        <rightholder id=\"f6f4fba8540c929c\" firstname=\"Flavio\" middlename=\"\" lastname=\"Lemelle\" ipi=\"402625497\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"456\" />\n        <rightholder id=\"c9b4663da56fce17\" firstname=\"Giovanni\" middlename=\"\" lastname=\"Lodigiani\" ipi=\"184312775\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"40\" />\n        <rightholder id=\"dd6d121052a2123d\" firstname=\"Mary\" middlename=\"\" lastname=\"Lorson\" ipi=\"244447175\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"6\" />\n        <rightholder id=\"92f4ac2b9b972590\" firstname=\"Isaac\" middlename=\"\" lastname=\"Lucas\" ipi=\"779878248\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"15\" />\n        <rightholder id=\"f53ee237d0157cc8\" firstname=\"Candace\" middlename=\"Nicole\" lastname=\"Mabra\" ipi=\"755852309\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"16\" />\n        <rightholder id=\"4e0fcbdb3fa6521d\" firstname=\"David\" middlename=\"\" lastname=\"Majzlin\" ipi=\"342715084\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"14\" />\n        <rightholder id=\"637d17101ca24b26\" firstname=\"Tobias\" middlename=\"\" lastname=\"Marberger\" ipi=\"263812272\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"5\" />\n        <rightholder id=\"7d97bc39787cb784\" firstname=\"Dominic\" middlename=\"\" lastname=\"Marsh\" ipi=\"419458829\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"PRS\" trackcount=\"2\" />\n        <rightholder id=\"5afe11e658aa90d6\" firstname=\"Oliver\" middlename=\"\" lastname=\"Mason\" ipi=\"731906252\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"PRS\" trackcount=\"2\" />\n        <rightholder id=\"fbfb0f2bc80fba95\" firstname=\"Kelly\" middlename=\"\" lastname=\"McCollough\" ipi=\"687452895\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"99\" />\n        <rightholder id=\"fdcfd861534e5d6b\" firstname=\"Gary\" middlename=\"\" lastname=\"Meister\" ipi=\"185979400\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"5\" />\n        <rightholder id=\"cced1a0ea4beb723\" firstname=\"Gabriella\" middlename=\"\" lastname=\"Mejias\" ipi=\"01095539428\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"15\" />\n        <rightholder id=\"1ee458dd425b112f\" firstname=\"Matt\" middlename=\"\" lastname=\"Miller\" ipi=\"349174051\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"46\" />\n        <rightholder id=\"63574ce1cc8421ee\" firstname=\"Tony\" middlename=\"\" lastname=\"Morales\" ipi=\"339871522\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"15\" />\n        <rightholder id=\"62e188bcadc0c462\" firstname=\"Jim\" middlename=\"\" lastname=\"Morgan\" ipi=\"01111111111\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"8\" />\n        <rightholder id=\"f4b5ee6c50f5da55\" firstname=\"\" middlename=\"\" lastname=\"None\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"NS\" trackcount=\"2\" />\n        <rightholder id=\"beda405e12d327b1\" firstname=\"Dylan\" middlename=\"B\" lastname=\"Nowik\" ipi=\"761717724\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"155\" />\n        <rightholder id=\"9acd3639f4d07e08\" firstname=\"Ali\" middlename=\"\" lastname=\"Ochoa\" ipi=\"364194843\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"12\" />\n        <rightholder id=\"1c39f70b5f58fcfc\" firstname=\"Jordan\" middlename=\"\" lastname=\"Orvosh\" ipi=\"481050970\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"6\" />\n        <rightholder id=\"a9eb34a22be75c1e\" firstname=\"Jason\" middlename=\"M\" lastname=\"Petrin\" ipi=\"504234692\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"34\" />\n        <rightholder id=\"e4dc12da5396df9c\" firstname=\"Thomas\" middlename=\"\" lastname=\"Porter\" ipi=\"441714085\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"74\" />\n        <rightholder id=\"fc6ea90d886d9c87\" firstname=\"Darren Leigh\" middlename=\"\" lastname=\"Purkiss\" ipi=\"295784899\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"5\" />\n        <rightholder id=\"ccd169b58c33e2ab\" firstname=\"Didier\" middlename=\"\" lastname=\"Rachou\" ipi=\"338667132\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"3\" />\n        <rightholder id=\"78d6f09f1428177c\" firstname=\"Matt\" middlename=\"\" lastname=\"Ragan\" ipi=\"431564768\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"14\" />\n        <rightholder id=\"782a34e887e65f29\" firstname=\"Brian\" middlename=\"Michael\" lastname=\"Randazzo\" ipi=\"449053843\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"1149\" />\n        <rightholder id=\"d7b1c0c941a2315f\" firstname=\"Raymon\" middlename=\"\" lastname=\"Reed\" ipi=\"643359732\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"9\" />\n        <rightholder id=\"d10508125f429545\" firstname=\"Mauro\" middlename=\"\" lastname=\"Refosco\" ipi=\"337659528\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"62\" />\n        <rightholder id=\"0a4cd55691d84ff0\" firstname=\"Nicholas\" middlename=\"\" lastname=\"Rodriguez\" ipi=\"541587246\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"31\" />\n        <rightholder id=\"49cd82781fe48cad\" firstname=\"Edward\" middlename=\"\" lastname=\"Rogers\" ipi=\"193114974\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"1\" />\n        <rightholder id=\"a49d3f69a3488e60\" firstname=\"John\" middlename=\"\" lastname=\"Ross\" ipi=\"593451920\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"123\" />\n        <rightholder id=\"063ad461f8be2aef\" firstname=\"Dominique\" middlename=\"\" lastname=\"Rowland\" ipi=\"339314660\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"4\" />\n        <rightholder id=\"440354be6ab9d61c\" firstname=\"Cynthia\" middlename=\"\" lastname=\"Russ\" ipi=\"355709443\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"15\" />\n        <rightholder id=\"14f4fdce012042f9\" firstname=\"Joseph\" middlename=\"M\" lastname=\"Saba\" ipi=\"336945045\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"3700\" />\n        <rightholder id=\"902f4074fab85afb\" firstname=\"Aaron\" middlename=\"\" lastname=\"Sapp\" ipi=\"457810343\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"390\" />\n        <rightholder id=\"7911562a04ac7beb\" firstname=\"David\" middlename=\"\" lastname=\"Scheffler\" ipi=\"235052893\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"2\" />\n        <rightholder id=\"106c796fe0ab2029\" firstname=\"Markus\" middlename=\"\" lastname=\"Schmidt\" ipi=\"658415032\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"8\" />\n        <rightholder id=\"c18ff1e608e6ae13\" firstname=\"Florian\" middlename=\"\" lastname=\"Seraul\" ipi=\"658485791\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"SOCAN\" trackcount=\"26\" />\n        <rightholder id=\"cdc0865ceeb954c7\" firstname=\"Aaron\" middlename=\"John\" lastname=\"Shapiro\" ipi=\"850729327\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"39\" />\n        <rightholder id=\"3b4e14850638747c\" firstname=\"Scott\" middlename=\"\" lastname=\"Shapiro\" ipi=\"403968255\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"4\" />\n        <rightholder id=\"7d3beb538d239ad5\" firstname=\"Freddy\" middlename=\"J\" lastname=\"Sheinfeld\" ipi=\"405018501\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"6\" />\n        <rightholder id=\"8255cb2b7a8ae939\" firstname=\"Miranda\" middlename=\"Lee\" lastname=\"Siegersma\" ipi=\"699955058\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"4\" />\n        <rightholder id=\"888b5459f6907e57\" firstname=\"Clifford\" middlename=\"\" lastname=\"Simms\" ipi=\"464462054\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"PRS\" trackcount=\"18\" />\n        <rightholder id=\"ef4a65a855d9518a\" firstname=\"Matt\" middlename=\"\" lastname=\"Smith\" ipi=\"507919632\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"5\" />\n        <rightholder id=\"18013f6b8a559596\" firstname=\"Eric\" middlename=\"\" lastname=\"Speier\" ipi=\"199600635\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"7\" />\n        <rightholder id=\"2dfea4d681764345\" firstname=\"William\" middlename=\"\" lastname=\"Stankay\" ipi=\"604479349\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"4\" />\n        <rightholder id=\"c40662cc22cd645c\" firstname=\"Adam\" middlename=\"\" lastname=\"Steiglitz\" ipi=\"429663137\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"6\" />\n        <rightholder id=\"95e8a0db9d3d7a49\" firstname=\"Brandon\" middlename=\"\" lastname=\"Stewart\" ipi=\"678182700\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"3\" />\n        <rightholder id=\"8e0b85407e9e3a75\" firstname=\"Michael\" middlename=\"Gray\" lastname=\"Stokes\" ipi=\"481651447\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"5\" />\n        <rightholder id=\"74046ca302bb3655\" firstname=\"Pete\" middlename=\"\" lastname=\"Swanson\" ipi=\"335865048\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"1\" />\n        <rightholder id=\"9a0e8622e19c0f34\" firstname=\"Maggie\" middlename=\"\" lastname=\"Szabo\" ipi=\"499280501\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"6\" />\n        <rightholder id=\"77ed9c0ad7c62d2e\" firstname=\"Fred\" middlename=\"\" lastname=\"Szymanski\" ipi=\"339344844\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"29\" />\n        <rightholder id=\"a13e44a8ff51ea5a\" firstname=\"Nic.\" middlename=\"\" lastname=\"tenBroek\" ipi=\"192868129\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"35\" />\n        <rightholder id=\"54badc43473da20e\" firstname=\"Adam\" middlename=\"Corey\" lastname=\"Tenenbaum\" ipi=\"357343159\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"14\" />\n        <rightholder id=\"89e362aae05abdcf\" firstname=\"Luca\" middlename=\"\" lastname=\"Thomas d'Agiout\" ipi=\"559695289\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"SIAE\" trackcount=\"2\" />\n        <rightholder id=\"2bb7c6c1ad0d1c54\" firstname=\"Lindsay\" middlename=\"\" lastname=\"Tomasic\" ipi=\"129985622\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"5\" />\n        <rightholder id=\"cdab9c273f8fabdc\" firstname=\"Robert\" middlename=\"\" lastname=\"ToTeras\" ipi=\"599254594\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"56\" />\n        <rightholder id=\"2d5f5b9397098bfc\" firstname=\"Alexander\" middlename=\"Flynn\" lastname=\"Toth\" ipi=\"525043485\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"14\" />\n        <rightholder id=\"56bdf27d36417942\" firstname=\"Bruce\" middlename=\"\" lastname=\"Upchurch\" ipi=\"214775567\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"8\" />\n        <rightholder id=\"eb341e169c7a2e50\" firstname=\"Jorge\" middlename=\"\" lastname=\"Valera\" ipi=\"01126013511\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"11\" />\n        <rightholder id=\"7da5d6abf7148705\" firstname=\"Ric\" middlename=\"\" lastname=\"Viers\" ipi=\"490138850\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"8\" />\n        <rightholder id=\"5d656c5524eee1e3\" firstname=\"Charlie\" middlename=\"Bryce\" lastname=\"Wallace\" ipi=\"636450645\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"PRS\" trackcount=\"6\" />\n        <rightholder id=\"6756844bebaeaf57\" firstname=\"Benjamin\" middlename=\"A\" lastname=\"Weinman\" ipi=\"419819332\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"2\" />\n        <rightholder id=\"05645267800aebbf\" firstname=\"William\" middlename=\"Paul\" lastname=\"Werwath\" ipi=\"505229773\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"1579\" />\n        <rightholder id=\"4620fbd9bb0c0b75\" firstname=\"Kyle\" middlename=\"William\" lastname=\"White\" ipi=\"463932243\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"52\" />\n        <rightholder id=\"736975c184236313\" firstname=\"Leon\" middlename=\"\" lastname=\"Willett\" ipi=\"152518584\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"6\" />\n        <rightholder id=\"f919250b25a5a4ea\" firstname=\"Chaz\" middlename=\"\" lastname=\"Windus\" ipi=\"440133998\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"2\" />\n        <rightholder id=\"80a41e86aeba140f\" firstname=\"Michael\" middlename=\"\" lastname=\"Winter\" ipi=\"538875206\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"4\" />\n        <rightholder id=\"6858410f021d6d42\" firstname=\"Stewart\" middlename=\"J\" lastname=\"Winter\" ipi=\"337973523\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"3700\" />\n        <rightholder id=\"fa483bcdd15d227c\" firstname=\"Matthew\" middlename=\"Sperling\" lastname=\"Witte\" ipi=\"356691822\" capacity=\"ComposerAuthor\" capacitygroup=\"WRITER\" collectingsocietyname=\"BMI\" trackcount=\"43\" />\n        <rightholder id=\"33e3e5e433fe1b4b\" firstname=\"Ben\" middlename=\"\" lastname=\"Xavier\" ipi=\"340509588\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"38\" />\n        <rightholder id=\"881d2a6124f14239\" firstname=\"Krysta\" middlename=\"\" lastname=\"Youngs\" ipi=\"528053659\" capacity=\"Composer\" capacitygroup=\"WRITER\" collectingsocietyname=\"ASCAP\" trackcount=\"3\" />\n    </rightholders>\n</responserightholders>"}],"_postman_id":"26f95886-4c40-43b4-973a-3e4bfde210a3"}],"id":"26942bce-83ec-4090-8ec2-0a274f0fc7ab","_postman_id":"26942bce-83ec-4090-8ec2-0a274f0fc7ab","description":""},{"name":"Ecom","item":[{"name":"Ecom Licensing Model","item":[{"name":"Get Regions Setup","id":"f43fcf8e-5511-448a-aa6b-ab4489422cb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"{{HM_ServiceAPI_URL}}/getregions/{{HM_ServiceAPI_Token}}","urlObject":{"path":["getregions","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f43fcf8e-5511-448a-aa6b-ab4489422cb5"}],"id":"e2a2332c-5bd4-4be8-9c23-0abb30c52642","_postman_id":"e2a2332c-5bd4-4be8-9c23-0abb30c52642","description":""},{"name":"Ecom Subs Pages","item":[{"name":"View Plans Page","item":[{"name":"Get Subscription Plans","event":[{"listen":"test","script":{"id":"fd3c666b-341a-4d94-81a8-3702fd2d8abe","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;\r","\r",""],"type":"text/javascript"}}],"id":"d246f989-786d-4665-9432-b731d546739b","protocolProfileBehavior":{"disabledSystemHeaders":{},"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getsubscriptionplans/{{HM_IntegrationAPI_Token}}","description":"<ul>\n<li><p>Returns all featured plans available for a given account or</p>\n</li>\n<li><p>Returns one specific plan (featured or not) requested via param</p>\n</li>\n</ul>\n<p>*Note for Enterprise or any other \"requestquote=true\" plan, no subscription price is returned.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SubscriptionPlanID</td>\n<td>String</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["getsubscriptionplans","{{HM_IntegrationAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"eebbe21a-b4e3-4b80-a99c-7c8f907c800f","name":"Get Subscription Plans (JSON)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","disabled":true}],"url":"{{HM_ServiceAPI_URL}}/getsubscriptionplans/{{HM_IntegrationAPI_Token}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Dec 2023 00:50:54 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"SubscriptionPlans\": [\n        {\n            \"ID\": \"272f1d66c82967de\",\n            \"Name\": \"Individual\",\n            \"Description\": \"Individual plan for single user\",\n            \"Status\": \"Active\",\n            \"Featured\": true,\n            \"AllowBadges\": false,\n            \"BadgeDisplayTitle\": \"\",\n            \"PlatformHandleType\": \"Disabled\",\n            \"AllowTeam\": false,\n            \"TeamMembers\": 0,\n            \"DownloadLimit\": \"Unlimited\",\n            \"DateCreated\": \"2023-09-04T13:25:52\",\n            \"HasFreeTrial\": false,\n            \"RequestQuote\": false,\n            \"SubscriptionInclusions\": [],\n            \"Subscriptions\": [\n                {\n                    \"ID\": \"272f1d66c82967de\",\n                    \"Period\": \"Monthly\",\n                    \"PeriodDays\": 0,\n                    \"TrialDownloadLimit\": 0,\n                    \"RolloverSubscriptionID\": \"\",\n                    \"Status\": \"Active\",\n                    \"PriceBadge\": \"\",\n                    \"SubscriptionPrices\": [\n                        {\n                            \"ID\": \"e5153b3e6e5ba804\",\n                            \"Price\": 24.99,\n                            \"StartDate\": \"2023-11-23T00:00:00\",\n                            \"Status\": 1\n                        }\n                    ]\n                }\n            ]\n        },\n        {\n            \"ID\": \"4d3ddcd6da8eed45\",\n            \"Name\": \"Enterprise\",\n            \"Description\": \"Please contact us for pricing\",\n            \"Status\": \"Active\",\n            \"Featured\": true,\n            \"AllowBadges\": false,\n            \"BadgeDisplayTitle\": \"\",\n            \"PlatformHandleType\": \"Unlimited\",\n            \"AllowTeam\": true,\n            \"TeamMembers\": 15,\n            \"DownloadLimit\": \"Unlimited\",\n            \"DateCreated\": \"2023-09-04T13:26:30\",\n            \"HasFreeTrial\": false,\n            \"RequestQuote\": true,\n            \"SubscriptionInclusions\": [],\n            \"Subscriptions\": []\n        },\n        {\n            \"ID\": \"9e4d309244851779\",\n            \"Name\": \"Free-trial\",\n            \"Description\": \"\",\n            \"Status\": \"Active\",\n            \"Featured\": true,\n            \"AllowBadges\": false,\n            \"BadgeDisplayTitle\": \"\",\n            \"PlatformHandleType\": \"Disabled\",\n            \"AllowTeam\": false,\n            \"TeamMembers\": 0,\n            \"DownloadLimit\": \"Unlimited\",\n            \"DateCreated\": \"2023-10-10T11:13:04\",\n            \"HasFreeTrial\": true,\n            \"RequestQuote\": false,\n            \"SubscriptionInclusions\": [],\n            \"Subscriptions\": [\n                {\n                    \"ID\": \"19ecbe6bedcfa645\",\n                    \"Period\": \"Monthly\",\n                    \"PeriodDays\": 0,\n                    \"TrialDownloadLimit\": 0,\n                    \"RolloverSubscriptionID\": \"\",\n                    \"Status\": \"Active\",\n                    \"PriceBadge\": \"\",\n                    \"SubscriptionPrices\": [\n                        {\n                            \"ID\": \"19ecbe6bedcfa645\",\n                            \"Price\": 5,\n                            \"StartDate\": \"2023-10-10T00:00:00\",\n                            \"Status\": 1\n                        }\n                    ],\n                    \"FreeTrial\": {\n                        \"ID\": \"5a2f797f4a3d59a5\",\n                        \"Period\": \"Trial\",\n                        \"PeriodDays\": 14,\n                        \"TrialDownloadLimit\": 20,\n                        \"RolloverSubscriptionID\": \"19ecbe6bedcfa645\",\n                        \"Status\": \"Active\",\n                        \"PriceBadge\": \"\",\n                        \"SubscriptionPrices\": []\n                    }\n                }\n            ]\n        },\n        {\n            \"ID\": \"0dabdb1ee6f7b545\",\n            \"Name\": \"AllowTeam\",\n            \"Description\": \"\",\n            \"Status\": \"Active\",\n            \"Featured\": true,\n            \"AllowBadges\": false,\n            \"BadgeDisplayTitle\": \"\",\n            \"PlatformHandleType\": \"Disabled\",\n            \"AllowTeam\": true,\n            \"TeamMembers\": 2,\n            \"DownloadLimit\": \"Unlimited\",\n            \"DateCreated\": \"2023-10-10T14:11:35\",\n            \"HasFreeTrial\": false,\n            \"RequestQuote\": false,\n            \"SubscriptionInclusions\": [],\n            \"Subscriptions\": [\n                {\n                    \"ID\": \"bce3cac31bcb8576\",\n                    \"Period\": \"Monthly\",\n                    \"PeriodDays\": 0,\n                    \"TrialDownloadLimit\": 0,\n                    \"RolloverSubscriptionID\": \"\",\n                    \"Status\": \"Active\",\n                    \"PriceBadge\": \"\",\n                    \"SubscriptionPrices\": [\n                        {\n                            \"ID\": \"5a2f797f4a3d59a5\",\n                            \"Price\": 20,\n                            \"StartDate\": \"2023-10-10T00:00:00\",\n                            \"Status\": 1\n                        }\n                    ]\n                }\n            ]\n        },\n        {\n            \"ID\": \"f4df85b9b479ca70\",\n            \"Name\": \"Daily\",\n            \"Description\": \"Test for daily invoice check\",\n            \"Status\": \"Active\",\n            \"Featured\": true,\n            \"AllowBadges\": true,\n            \"BadgeDisplayTitle\": \"\",\n            \"PlatformHandleType\": \"Disabled\",\n            \"AllowTeam\": false,\n            \"TeamMembers\": 0,\n            \"DownloadLimit\": \"Unlimited\",\n            \"DateCreated\": \"2023-10-24T17:35:11\",\n            \"HasFreeTrial\": true,\n            \"RequestQuote\": false,\n            \"SubscriptionInclusions\": [\n                {\n                    \"ID\": \"d0b8ba29471595bf\",\n                    \"Description\": \"Test\",\n                    \"OrderID\": 0,\n                    \"IsHeader\": true,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"19b8f5935503adde\",\n                    \"Description\": \"Feature 1\",\n                    \"OrderID\": 1,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                }\n            ],\n            \"Subscriptions\": [\n                {\n                    \"ID\": \"0dabdb1ee6f7b545\",\n                    \"Period\": \"Monthly\",\n                    \"PeriodDays\": 0,\n                    \"TrialDownloadLimit\": 0,\n                    \"RolloverSubscriptionID\": \"\",\n                    \"Status\": \"Active\",\n                    \"PriceBadge\": \"\",\n                    \"SubscriptionPrices\": [\n                        {\n                            \"ID\": \"9e4d309244851779\",\n                            \"Price\": 5,\n                            \"StartDate\": \"2023-10-24T00:00:00\",\n                            \"Status\": 1\n                        }\n                    ],\n                    \"FreeTrial\": {\n                        \"ID\": \"82193ff640dd7d69\",\n                        \"Period\": \"Trial\",\n                        \"PeriodDays\": 1,\n                        \"TrialDownloadLimit\": 20,\n                        \"RolloverSubscriptionID\": \"0dabdb1ee6f7b545\",\n                        \"Status\": \"Active\",\n                        \"PriceBadge\": \"\",\n                        \"SubscriptionPrices\": []\n                    }\n                }\n            ]\n        },\n        {\n            \"ID\": \"96f153356899e5c5\",\n            \"Name\": \"Individual Upgrade\",\n            \"Description\": \"\",\n            \"Status\": \"Active\",\n            \"Featured\": true,\n            \"AllowBadges\": false,\n            \"BadgeDisplayTitle\": \"\",\n            \"PlatformHandleType\": \"Disabled\",\n            \"AllowTeam\": false,\n            \"TeamMembers\": 0,\n            \"DownloadLimit\": \"Unlimited\",\n            \"DateCreated\": \"2023-11-28T16:02:30\",\n            \"HasFreeTrial\": false,\n            \"RequestQuote\": false,\n            \"SubscriptionInclusions\": [],\n            \"Subscriptions\": [\n                {\n                    \"ID\": \"733cf072013be8c4\",\n                    \"Period\": \"Monthly\",\n                    \"PeriodDays\": 0,\n                    \"TrialDownloadLimit\": 0,\n                    \"RolloverSubscriptionID\": \"\",\n                    \"Status\": \"Active\",\n                    \"PriceBadge\": \"\",\n                    \"SubscriptionPrices\": [\n                        {\n                            \"ID\": \"3b7e990361490e50\",\n                            \"Price\": 38,\n                            \"StartDate\": \"2023-11-28T00:00:00\",\n                            \"Status\": 1\n                        }\n                    ]\n                }\n            ]\n        },\n        {\n            \"ID\": \"f005ea25ae1dd914\",\n            \"Name\": \"Price Badge Test\",\n            \"Description\": \"\",\n            \"Status\": \"Active\",\n            \"Featured\": true,\n            \"AllowBadges\": false,\n            \"BadgeDisplayTitle\": \"\",\n            \"PlatformHandleType\": \"Disabled\",\n            \"AllowTeam\": false,\n            \"TeamMembers\": 0,\n            \"DownloadLimit\": \"Unlimited\",\n            \"DateCreated\": \"2023-12-04T15:55:41\",\n            \"HasFreeTrial\": false,\n            \"RequestQuote\": false,\n            \"SubscriptionInclusions\": [],\n            \"Subscriptions\": [\n                {\n                    \"ID\": \"f005ea25ae1dd914\",\n                    \"Period\": \"Monthly\",\n                    \"PeriodDays\": 0,\n                    \"TrialDownloadLimit\": 0,\n                    \"RolloverSubscriptionID\": \"\",\n                    \"Status\": \"Active\",\n                    \"PriceBadge\": \"Monthly Badge Update\",\n                    \"SubscriptionPrices\": [\n                        {\n                            \"ID\": \"733cf072013be8c4\",\n                            \"Price\": 1.99,\n                            \"StartDate\": \"2023-12-04T00:00:00\",\n                            \"Status\": 1\n                        }\n                    ]\n                },\n                {\n                    \"ID\": \"ab2d1f4102e46d95\",\n                    \"Period\": \"Yearly\",\n                    \"PeriodDays\": 0,\n                    \"TrialDownloadLimit\": 0,\n                    \"RolloverSubscriptionID\": \"\",\n                    \"Status\": \"Active\",\n                    \"PriceBadge\": \"Yearly Badge Update\",\n                    \"SubscriptionPrices\": [\n                        {\n                            \"ID\": \"96f153356899e5c5\",\n                            \"Price\": 11.99,\n                            \"StartDate\": \"2023-12-04T00:00:00\",\n                            \"Status\": 1\n                        }\n                    ]\n                }\n            ]\n        }\n    ]\n}"},{"id":"c25f8e71-759b-4bf1-8296-1f4b9190aa57","name":"Get Subscription Plans (SPECIFIC PLAN)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":{"raw":"{{HM_ServiceAPI_URL}}/getsubscriptionplans/{{HM_IntegrationAPI_Token}}?subscriptionplanid=95f52ce24a2ca7e1","host":["{{HM_ServiceAPI_URL}}"],"path":["getsubscriptionplans","{{HM_IntegrationAPI_Token}}"],"query":[{"key":"subscriptionplanid","value":"95f52ce24a2ca7e1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 06 Sep 2023 05:50:23 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Set-Cookie","value":"AWSALBTG=GvzrYgvdFsxLmBZ4l82L/rwW5Xk28jjr857UxpT7LS2dYZtxQrWjtbfp8MDlaerEjExt7dymsREEyYgNJ+4iomdGGJJrU/LLTbxhIUMD1PDbrKC94jQrAt9eIOMWuVR9R4WJBRoAJkhdr/JnvUZMA8YhNlDn8OQkdTWXBvgkPXyqo8JALxw=; Expires=Wed, 13 Sep 2023 05:50:23 GMT; Path=/","enabled":true},{"key":"Set-Cookie","value":"AWSALBTGCORS=GvzrYgvdFsxLmBZ4l82L/rwW5Xk28jjr857UxpT7LS2dYZtxQrWjtbfp8MDlaerEjExt7dymsREEyYgNJ+4iomdGGJJrU/LLTbxhIUMD1PDbrKC94jQrAt9eIOMWuVR9R4WJBRoAJkhdr/JnvUZMA8YhNlDn8OQkdTWXBvgkPXyqo8JALxw=; Expires=Wed, 13 Sep 2023 05:50:23 GMT; Path=/; SameSite=None; Secure","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"SubscriptionPlans\": [\n        {\n            \"ID\": \"95f52ce24a2ca7e1\",\n            \"Name\": \"Individual\",\n            \"Description\": \"\",\n            \"Status\": \"Active\",\n            \"Featured\": true,\n            \"AllowBadges\": false,\n            \"BadgeDisplayTitle\": \"\",\n            \"PlatformHandleType\": \"Disabled\",\n            \"AllowTeam\": false,\n            \"TeamMembers\": 0,\n            \"DownloadLimit\": \"Unlimited\",\n            \"DateCreated\": \"2023-09-06T15:03:46\",\n            \"HasFreeTrial\": true,\n            \"RequestQuote\": false,\n            \"SubscriptionInclusions\": [],\n            \"Subscriptions\": [\n                {\n                    \"ID\": \"7026280a00766607\",\n                    \"Period\": \"Monthly\",\n                    \"PeriodDays\": 0,\n                    \"TrialDownloadLimit\": 0,\n                    \"RolloverSubscriptionID\": \"\",\n                    \"Status\": \"Active\",\n                    \"SubscriptionPrices\": [\n                        {\n                            \"ID\": \"47ec1487133769b9\",\n                            \"Price\": 10,\n                            \"StartDate\": \"2023-09-06T00:00:00\",\n                            \"Status\": 1\n                        }\n                    ],\n                    \"FreeTrial\": {\n                        \"ID\": \"99dc08a83ff1671e\",\n                        \"Period\": \"Trial\",\n                        \"PeriodDays\": 14,\n                        \"TrialDownloadLimit\": 20,\n                        \"RolloverSubscriptionID\": \"7026280a00766607\",\n                        \"Status\": \"Active\",\n                        \"SubscriptionPrices\": []\n                    }\n                },\n                {\n                    \"ID\": \"07a147a3be95f6f1\",\n                    \"Period\": \"Yearly\",\n                    \"PeriodDays\": 0,\n                    \"TrialDownloadLimit\": 0,\n                    \"RolloverSubscriptionID\": \"\",\n                    \"Status\": \"Active\",\n                    \"SubscriptionPrices\": [\n                        {\n                            \"ID\": \"3de9d6146c5f833b\",\n                            \"Price\": 100,\n                            \"StartDate\": \"2023-09-06T00:00:00\",\n                            \"Status\": 1\n                        }\n                    ]\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"d246f989-786d-4665-9432-b731d546739b"}],"id":"385d6ec5-4e82-4991-94e9-8a3789a34d4a","description":"<p>Returns all featured plans available for a given account or return one specific plan (featured or not) requested via param.</p>\n","_postman_id":"385d6ec5-4e82-4991-94e9-8a3789a34d4a"},{"name":"Member Log In Page","item":[{"name":"Authenticate Member & Generate Persistent Member Token","event":[{"listen":"test","script":{"id":"96bedff0-63bb-453c-a378-e0f65ab429a7","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","var jsonData = null;","var jsonDataToken = \"\";","var jsonDataPersistentToken = \"\";","","if (responseBody.indexOf(\"<?xml\") >= 0) {","    jsonData = xml2Json(responseBody);","    jsonDataToken = jsonData.responsemembertoken.membertoken.$.value;","    jsonDataPersistentToken = jsonData.responsemembertoken.persistentlogintoken.$.token;","} else {","    jsonData = JSON.parse(responseBody)","    jsonDataToken = jsonData.MemberToken.Value;","    jsonDataPersistentToken = jsonData.PersistentLoginToken.Token;","}","","console.log(\"HM_ServiceAPI_MemberToken set to \" + jsonDataToken);","console.log(\"HM_ServiceAPI_MemberPersistentToken set to \" + jsonDataPersistentToken);","console.log(\"HM_ServiceAPI_MemberTokenIsLoggedMember set to true\");","","postman.setEnvironmentVariable(\"HM_ServiceAPI_MemberToken\", jsonDataToken);","postman.setEnvironmentVariable(\"HM_ServiceAPI_MemberPersistentToken\", jsonDataPersistentToken);","postman.setEnvironmentVariable(\"HM_ServiceAPI_MemberTokenIsLoggedMember\", \"true\");","","postman.setNextRequest(\"Get Member Details\");"],"type":"text/javascript"}}],"id":"c8c6a1c0-6170-49fa-9f7c-8123633c69dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"UserName\":\"{{HM_ServiceAPI_MemberUsername}}\",\r\n\t\"Password\":\"{{HM_ServiceAPI_MemberPassword}}\",\r\n\t\"PersistentLogin\":true,\r\n\t\"ReturnMemberDetails\":false,\r\n    \"ReturnMemberSubscriptionDetails\":true\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getmembertoken/{{HM_IntegrationAPI_Token}}","description":"<p>The following method should be used for member login. </p>\n<p>It will return a member token as well as a persistent login token if if requested by passing 'true' to <code>&lt;persistentlogin&gt;</code> element in the request body.</p>\n<p>The persistent login token can be saved to member's cookie for reuse in future site accesses.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ServiceToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["getmembertoken","{{HM_IntegrationAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"2de16c90-4e50-4c05-ad03-aaaa18ca834d","name":"Authenticate Member & Generate Persistent Member Token (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"UserName\":\"UserName\",\r\n\t\"Password\":\"Password\",\r\n\t\"PersistentLogin\":true,\r\n\t\"ReturnMemberDetails\":false,\r\n    \"ReturnMemberSubscriptionDetails\":true\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getmembertoken/{{HM_ServiceAPI_Token}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Date","value":"Tue, 20 Aug 2019 04:29:52 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Content-Length","value":"298","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Token\": {\n        \"Value\": \"2f30cde70021a012fc1f575w3471eam7\",\n        \"Expiry\": \"2019-08-21T14:29:38\",\n        \"UTCOffset\": 10,\n        \"Type\": \"MemberToken\",\n        \"IsOfSingleUse\": false\n    },\n    \"PersistentLoginToken\": {\n        \"Value\": \"2f30cde70021a012fc1f575w3471eam7\",\n        \"Expiry\": \"2019-08-21T14:29:38\",\n        \"UTCOffset\": 10\n    }\n}"},{"id":"f2a0e9e1-f897-498b-bf31-40c37201b2b2","name":"Authenticate Member & Generate Persistent Member Token (XML)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/xml"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"<requestauthenticatemembergettoken>\r\n    <UserName>UserName</UserName>\r\n\t<Password>Password</Password>\r\n\t<PersistentLogin>true</PersistentLogin>\r\n\t<ReturnMemberDetails>false</ReturnMemberDetails>\r\n\t<ReturnMemberSubscriptionDetails>true</ReturnMemberSubscriptionDetails>\r\n</requestauthenticatemembergettoken>","options":{"raw":{"language":"xml"}}},"url":"{{HM_ServiceAPI_URL}}/getmembertoken/{{HM_ServiceAPI_Token}}"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Date","value":"Tue, 20 Aug 2019 04:31:45 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Content-Length","value":"320","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<responseservicetoken xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <token value=\"2f30cde70021a012fc1f575w3471eam7\" expiry=\"2019-08-21T14:31:31.003\" utcoffset=\"10\" type=\"MemberToken\" isofsingleuse=\"false\"/>\n    <persistentlogintoken value=\"2f30cde70021a012fc1f575w3471eam7\" expiry=\"2019-08-21T14:31:31.003\" utcoffset=\"10\"/>\n</responseservicetoken>"}],"_postman_id":"c8c6a1c0-6170-49fa-9f7c-8123633c69dd"}],"id":"d42ff4ce-1018-43af-bf53-e71739452a7c","_postman_id":"d42ff4ce-1018-43af-bf53-e71739452a7c","description":""},{"name":"Member Sign Up Page","item":[{"name":"Register Member","event":[{"listen":"test","script":{"exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","var jsonData = null;","var jsonDataMemberAccountID = \"\";","","if (responseBody.indexOf(\"<?xml\") >= 0) {","    jsonData = xml2Json(responseBody);","    jsonDataMemberAccountID = jsonData.responsemember.memberaccount.$.id;","} else {","    jsonData = JSON.parse(responseBody);","    if (jsonData.MemberAccount !== null) {","        jsonDataMemberAccountID = jsonData.MemberAccount.ID;","    }","}","","console.log(\"HM_ServiceAPI_NewMemberAccountID set to \" + jsonDataMemberAccountID);","","postman.setEnvironmentVariable(\"HM_ServiceAPI_NewMemberAccountID\", jsonDataMemberAccountID);","","postman.setNextRequest(\"Authenticate Member\");"],"type":"text/javascript","id":"968a9139-bfa5-4018-b0bc-956cabf437b6"}},{"listen":"prerequest","script":{"exec":["var newUsername = postman.getEnvironmentVariable(\"HM_ServiceAPI_Token\") + \"-user\";","var newPassword = \"st@ging-runn3r\";","var newEmail = postman.getEnvironmentVariable(\"HM_ServiceAPI_Token\") + \"@company.net\";","","postman.setEnvironmentVariable(\"HM_ServiceAPI_NewMemberUsername\", newUsername);","postman.setEnvironmentVariable(\"HM_ServiceAPI_NewMemberPassword\", newPassword);","postman.setEnvironmentVariable(\"HM_ServiceAPI_NewMemberEmail\", newEmail);"],"type":"text/javascript","id":"8791740d-149a-4ab1-9f09-9e5c38a995e3"}}],"id":"99e48e09-ee2e-44cc-90d4-da0a1913c832","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"MemberAccount\":{\r\n\t\t\"FirstName\":\"First\",\r\n\t\t\"LastName\":\"Last\",\r\n\t\t\"Email\":\"{{HM_ServiceAPI_MemberUsername}}\",\r\n\t\t\"Company\":\"Company\",\r\n\t\t\"Production\":\"Production\",\r\n        \"SubProduction\":\"Sub Production\",\r\n\t\t\"Position\":\"Position\",\r\n\t\t\"Address1\":\"Address Line 1\",\r\n\t\t\"Address2\":\"Address Line 2\",\r\n\t\t\"Suburb\":\"Suburb\",\r\n\t\t\"State\":\"State\",\r\n\t\t\"Postcode\":\"Postcode\",\r\n\t\t\"Country\":\"AU\",\r\n\t\t\"Phone\":\"Phone\",\r\n\t\t\"Username\":\"{{HM_ServiceAPI_MemberUsername}}\",\r\n\t\t\"Password\":\"{{HM_ServiceAPI_MemberPassword}}\",\r\n\t\t\"TermsAccept\":\"true\",\r\n\t\t\"PrivacyAccept\":\"true\",\r\n\t\t\"Subscribe\":\"true\",\r\n\t\t\"FileFormat\":\"mp3\",\r\n\t\t\"SearchFormat\":\"Track\",\r\n\t\t\"SearchSort\":\"New\",\r\n\t\t\"IP\":\"192.168.10.20\",\r\n\t\t\"ExternalMemberID\": \"\",\r\n\t\t\"ExternalVerifyToken\": \"\"\r\n\t},\r\n\t\"NoMemberEmail\":false,\r\n    \"VerifierEmail\": \"\"\r\n}"},"url":"{{HM_ServiceAPI_URL}}/registermember//{{HM_IntegrationAPI_Token}}","description":"<p>Registers a new member.</p>\n<p>This method will return an error if the request data is not valid or the member already exists based on email address uniqueness.</p>\n<p>Upon a successful registration, the API will send email notifications to the Member and Administrator according to settings configured within the account.</p>\n<p>Default file format can be set using the <code>fileformat</code> property. Please use the trackformat identifier which can be located in Filefomats.</p>\n<p>It is also possible to define a file format for each type (WAV, MP3, AIFF) in the <code>fileformats</code> element, however do not attempt to add more than one <code>memberfileformat</code> for each type.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ServiceToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<p>These parameters will be shared between “first search” and “search within results”.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FirstName</td>\n<td>Required, first name of the member.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>Required, last name of the member.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>Required, email of the member.</td>\n</tr>\n<tr>\n<td>Company</td>\n<td>Required, company of the member.</td>\n</tr>\n<tr>\n<td>Production</td>\n<td>Optional, production of the member.</td>\n</tr>\n<tr>\n<td>Sub Production</td>\n<td>Optional, sub production of the member.</td>\n</tr>\n<tr>\n<td>Position</td>\n<td>Optional, position of the member.</td>\n</tr>\n<tr>\n<td>Address1</td>\n<td>Optional, address 1 of the member</td>\n</tr>\n<tr>\n<td>Address2</td>\n<td>Optional, address 2 of the member.</td>\n</tr>\n<tr>\n<td>Suburb</td>\n<td>Optional, suburb of the member.</td>\n</tr>\n<tr>\n<td>State</td>\n<td>Optional, state of the member.</td>\n</tr>\n<tr>\n<td>Postcode</td>\n<td>Optional, post code of the member.</td>\n</tr>\n<tr>\n<td>Country</td>\n<td>Required, country of the member.</td>\n</tr>\n<tr>\n<td>Phone</td>\n<td>Optional, phone contact of the member.</td>\n</tr>\n<tr>\n<td>Username</td>\n<td>Required, username of the member.</td>\n</tr>\n<tr>\n<td>Password</td>\n<td>Optional, password of the member. If not provided, a random password will be assigned</td>\n</tr>\n<tr>\n<td>TermsAccept</td>\n<td>Required, agreement to the terms &amp; conditions for the member.</td>\n</tr>\n<tr>\n<td>PrivacyAccept</td>\n<td>Optional, agreement to the privacy policy for the member.</td>\n</tr>\n<tr>\n<td>Subscribe</td>\n<td>Optional, subscription to newsletters for the member.</td>\n</tr>\n<tr>\n<td>FileFormat</td>\n<td>Optional, default download file format. Possible values include MP3, WAV, AIFF or a file format ID</td>\n</tr>\n<tr>\n<td>SearchFormat</td>\n<td>Optional, default search format. Possible values include Track, Album and Playlist</td>\n</tr>\n<tr>\n<td>SearchSort</td>\n<td>Optional, default search sorting. Possible values include New and Random, where New is release date descending</td>\n</tr>\n<tr>\n<td>VerifierEmail</td>\n<td>Optional, default false. This is only used if the user has registered into a Member Group that is setup to verify approvals. This email address is the inbox of the user who will approve or decline the registration.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["registermember","","{{HM_IntegrationAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"9b29c7ee-289a-4b2f-9180-87a9cae04ea1","name":"Register Member (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"MemberAccount\":{\r\n\t\t\"FirstName\":\"First\",\r\n\t\t\"LastName\":\"Last\",\r\n\t\t\"Email\":\"first.last@company.net\",\r\n\t\t\"Company\":\"Company\",\r\n\t\t\"Production\":\"Production\",\r\n        \"SubProduction\":\"Sub Production\",\r\n\t\t\"Position\":\"Position\",\r\n\t\t\"Address1\":\"Address Line 1\",\r\n\t\t\"Address2\":\"Address Line 2\",\r\n\t\t\"Suburb\":\"Suburb\",\r\n\t\t\"State\":\"State\",\r\n\t\t\"Postcode\":\"Postcode\",\r\n\t\t\"Country\":\"AU\",\r\n\t\t\"Phone\":\"Phone\",\r\n\t\t\"Username\":\"Username\",\r\n\t\t\"Password\":\"Password\",\r\n\t\t\"TermsAccept\":\"true\",\r\n\t\t\"PrivacyAccept\":\"true\",\r\n\t\t\"Subscribe\":\"true\",\r\n\t\t\"FileFormat\":\"0cd2dbhf8c4cd66e21\",\r\n\t\t\"SearchFormat\":\"Track\",\r\n\t\t\"SearchSort\":\"New\",\r\n        \"PositionType\":\"Manager\",\r\n        \"Freelancer\":\"false\",\r\n\t\t\"IP\":\"123.45.648.90\",\r\n\t\t\"ExternalMemberID\": \"\",\r\n\t\t\"ExternalVerifyLink\": \"\"\r\n\t},\r\n\t\"NoMemberEmail\":false,\r\n    \"VerifierEmail\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/registermember/{{HM_ServiceAPI_Token}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Date","value":"Tue, 20 Aug 2019 05:37:09 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Content-Length","value":"3641","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"MemberAccount\": {\n        \"ID\": \"z7fa7d1f4d30g6d1ab\",\n        \"FirstName\": \"First\",\n        \"LastName\": \"Last\",\n        \"Email\": \"first.last@company.net\",\n        \"Company\": \"HarvestCompany\",\n        \"Production\": \"Production\",\n        \"SubProduction\": \"Sub Production\",\n        \"Position\": \"Position\",\n        \"Address1\": \"Address Line 1\",\n        \"Address2\": \"Address Line 2\",\n        \"Suburb\": \"Suburb\",\n        \"State\": \"State\",\n        \"Postcode\": \"Postcode\",\n        \"Country\": \"AU\",\n        \"Phone\": \"+61293577888\",\n        \"Username\": \"Username\",\n        \"TermsAccept\": \"true\",\n        \"PrivacyAccept\": \"true\",\n        \"Subscribe\": \"false\",\n        \"FileFormat\": \"0cd2dbhf8c4cd66e21\",\n        \"SearchFormat\": \"track\",\n        \"SearchSort\": \"fav\",\n        \"SampleEnabled\": \"true\",\n        \"DownloadEnabled\": \"false\",\n        \"DownloadEnabledType\": \"Member\",\n        \"DownloadLimit\": \"\",\n        \"DownloadsUsed\": \"\",\n        \"DownloadsRemaining\": \"\",\n        \"DownloadStem\": false,\n        \"MemberGroups\": [],\n        \"Status\": \"pending\",\n        \"RegionID\": \"betcc9d0555atb0r83\",\n        \"ServiceInfoURLs\": {\n            \"DirectDownloadURL\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/downloads/{downloadtoken}\",\n            \"TrackStreamURL\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/samples/21adae2ca240224eh484f1572592fa27678we397cb/{id}\",\n            \"ProfileImageURL\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/memberprofile/21adae2ca240224eh484f1572592fa27678we397cb/{id}/{width}/{height}\",\n            \"AlbumMontageDownloadURL\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/samples/montage/21adae2ca240224eh484f1572592fa27678we397cb/{id}\",\n            \"AlbumArtURL\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/albumart/d3s22e900704dd54450c48d660e0b6cu5da89072e3/{id}/{width}/{height}\",\n            \"WaveformURL\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/waveforms/d3s22e900704dd54450c48d660e0b6cu5da89072e3/{id}/{width}/{height}\",\n            \"MontageWaveformURL\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/waveforms/montage/d3s22e900704dd54450c48d660e0b6cu5da89072e3/{id}/{width}/{height}\",\n            \"LibraryLogoUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/librarylogo/d3s22e900704dd54450c48d660e0b6cu5da89072e3/{id}/{width}/{height}\",\n            \"PlaylistArtUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/playlistart/d3s22e900704dd54450c48d660e0b6cu5da89072e3/{id}/{width}/{height}\",\n            \"PlaylistCategoryArtUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/playlistcategoryart/d3s22e900704dd54450c48d660e0b6cu5da89072e3/{id}/{width}/{height}\",\n            \"RightHolderProfileUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/rightholderprofile/d3s22e900704dd54450c48d660e0b6cu5da89072e3/{id}/{width}/{height}\",\n            \"WaveformDataPointUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/waveform_data/d3s22e900704dd54450c48d660e0b6cu5da89072e3/{id}/{samplesperpixel}/{dataformat}\",\n            \"StyleArtUrl\": \"https://elb-beta.harvestmedia.net/assets/styleart/d3s22e900704dd54450c48d660e0b6cu5da89072e3/{id}/{width}/{height}\",\n            \"MemberGroupLogoUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/membergrouplogo/d3s22e900704dd54450c48d660e0b6cu5da89072e3/{id}/{width}/{height}\",\n            \"MemberGroupArtUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/membergroupart/d3s22e900704dd54450c48d660e0b6cu5da89072e3/{id}/{width}/{height}\",\n            \"MemberGroupProductionArtUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/membergroupproductionart/d3s22e900704dd54450c48d660e0b6cu5da89072e3/{id}/{width}/{height}\"\n        },\n        \"LanguageCode\": \"\",\n        \"Salutation\": \"\",\n        \"MemberTypeID\": \"\",\n        \"PositionType\": \"Manager\",\n        \"Freelancer\": \"false\",\n        \"ManagedBy\": {\n            \"Name\": \"\",\n            \"Email\": \"\",\n            \"Phone\": \"\"\n        },\n        \"FileFormats\": [],\n        \"HasProfileImage\": false\n    }\n}"}],"_postman_id":"99e48e09-ee2e-44cc-90d4-da0a1913c832"}],"id":"1110a3a0-4e69-42be-899f-861a106d53aa","_postman_id":"1110a3a0-4e69-42be-899f-861a106d53aa","description":""},{"name":"Subscription Member Checkout Page","item":[{"name":"Create Invoice","event":[{"listen":"test","script":{"id":"07931462-9b4b-4220-bf48-fe6cb6749f7e","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","var jsonData = null;","var jsonDataInvoiceID = \"\";","var jsonDataInvoiceTotal = \"\";","","if (responseBody.indexOf(\"<?xml\") >= 0) {","    jsonData = xml2Json(responseBody);","    jsonDataInvoiceID = jsonData.responseinvoice.invoice.id;","    jsonDataInvoiceTotal = jsonData.responseinvoice.invoice.total;","} else {","    jsonData = JSON.parse(responseBody)","    if (jsonData.invoice !== null) {","        jsonDataInvoiceID = jsonData.invoice.id;","        jsonDataInvoiceTotal = jsonData.invoice.total;","    }","}","","console.log(\"HM_ServiceAPI_InvoiceID set to \" + jsonDataInvoiceID);","","postman.setEnvironmentVariable(\"HM_ServiceAPI_InvoiceID\", jsonDataInvoiceID);","postman.setEnvironmentVariable(\"HM_ServiceAPI_InvoiceTotal\", jsonDataInvoiceTotal);","","postman.setNextRequest(\"Get Invoice\");"],"type":"text/javascript"}}],"id":"7b7eae5c-dba6-466f-9e89-5526275b1d2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\": [\r\n                    {\r\n                        \"referenceid\": \"9e9c86da42e2b4d6\",\r\n                        \"referencetype\": \"Subscription\"\r\n                    },\r\n                    {\r\n                        \"referenceid\": \"95f52ce24a2ca7e1\",\r\n                        \"referencetype\": \"SubscriptionDiscount\"\r\n                    }\r\n                ]\r\n            }\r\n        ],\r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\": \"CS-TEST-SUB\",\r\n            \"productiondate\": \"2023-12-15T00:00:00\",\r\n            \"producer\": \"CS TEST SUB\",\r\n            \"length\": \"TEST SUB Length\",\r\n            \"po\": \"Purchase Order Number SUB\"\r\n        },\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-12-15T23:59:59\",\r\n        \"issuedate\": \"2023-12-15T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}"},"url":"{{HM_ServiceAPI_URL}}/addinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p>Creates an invoice based on the associated invoice line items.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CurrencyCode</td>\n<td>Required, the currency for which payment will be taken in</td>\n</tr>\n<tr>\n<td>DueDate</td>\n<td>Required, the date the invoice is due. This should always be set to the current date</td>\n</tr>\n<tr>\n<td>IssueDate</td>\n<td>Optional, this date the invoice was generated. This should always be set to the current date</td>\n</tr>\n<tr>\n<td>DiscountID</td>\n<td>Optional, the ID of the applied discount. This should only be used when a discount applies to an entire invoice. *Not applicable for Subscriptions. See below reference line to get to know more.</td>\n</tr>\n<tr>\n<td>Discount</td>\n<td>Optional, the amount of the applied discount.</td>\n</tr>\n<tr>\n<td>SubTotal</td>\n<td>Optional, the total amount of all line items (excluding any applicable tax or discount amounts). *Not applicable for subscriptions, the SubTotal will be filled based on the Invoice Line Item ReferenceID (SubscriptionPlanID) in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>TotalTax</td>\n<td>Optional, the total tax amount of all line items (including any applicable tax reductions based on discount amounts). *Not applicable for subscriptions, the TotalTax will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>Total</td>\n<td>Optional, the total amount of all line items (including any applicable tax or discount amounts). *Not applicable for subscriptions, the Total sum will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td>Optional, possible values are; \"CreditCard\", or \"PayPal\". This should only be set if payment is taken in advance of creating an invoice</td>\n</tr>\n<tr>\n<td>PaymentReferenceNumber</td>\n<td>Optional, this should only be set if payment is taken in advance of creating an invoice and should be the unique payment reference number returned from the payment gateway</td>\n</tr>\n<tr>\n<td>InvoiceLineItems</td>\n<td>Required, these are the items that make up in the invoice</td>\n</tr>\n<tr>\n<td>InvoiceProduction</td>\n<td>Required, this is the production that the invoice covers</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice Line Items</strong></p>\n<p>There should be one of these for every unique item on the invoice.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Quantity</td>\n<td>Required, the quantity of the line item</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>Optional, the amount of the line item (excluding any applicable tax or discount amounts). *Not applicable for subscriptions, the Line Item Amount will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>AmountTax</td>\n<td>Optional, the tax amount of the line item (including any applicable tax reductions based on discount amounts). *Not applicable for subscriptions, the item AmountTax will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>Required, the description of the line item. A good example to be used here would be the track display title.  <br />*For Subscriptions, empty is accepted.</td>\n</tr>\n<tr>\n<td>DiscountID</td>\n<td>Optional, the ID of the applied discount. This should only be used when a discount applies to this specific line item.  <br />*For subscriptions,  <br />- 1. If a plan has an automatic voucher discount (no voucher code needed from the member) it will be automatically applied to the invoice total and returned on the response.  <br />- 2. Now, to apply discount using a voucher code previously validated, refer below to Invoice Line Items References.</td>\n</tr>\n<tr>\n<td>Discount</td>\n<td>Optional, the amount of the applied discount</td>\n</tr>\n<tr>\n<td>InvoiceItemReferences</td>\n<td>Required, hese are the items that make up the line item</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice Line Items - References</strong></p>\n<p>Each unique item on the invoice will have 2 of these; one of type \"Track\" and another of type \"Rate\".</p>\n<p>For Subscription, it could either have only one reference line item of type \"Subscription\" or another type \"SubscriptionDiscount\" when voucher code applies.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceType</td>\n<td>Required, possible values are; \"Track\", \"Rate\", \"Subscription\", or \"SubscriptionDiscount\".</td>\n</tr>\n<tr>\n<td>ReferenceID</td>\n<td>Required, the ID to be used here will depend on the value selected for the ReferenceType. So it will either be a TrackID, RateID, SubscriptionID or SubscriptionDiscountID (this last one will be returned via ValidateCoupon()).</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>Optional, the Value to be used here should depend on the value selected for the ReferenceType. For example, when \"Track\" then the value should be the track display title. When \"Rate\" then the value should be the code of that Rate.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Production</strong></p>\n<p>Optional. This is not an array and will only ever be a single production. This does not need to be provided and should only be used when a production is to be specified as part of the invoice creation. If a production is provided then there are specific fields (listed below) that need to be provided as part of the production object.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Client</td>\n<td>Required, this should be the email associated with against the invoice. If it is a guest purchase then it will be the guests email, otherwise it will be the members email</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>Required, the name of the production. This would typically be the name given to the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>ProductionDate</td>\n<td>Optional, the date of the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>Producer</td>\n<td>Optional, the producer associated with the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>Length</td>\n<td>Optional, the total length of the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>PO</td>\n<td>Optional, the purchase order number associated with the production as provided by the invoicee</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<p>On invoice creation success, the response will be the invoice that was created. This will contain the relevant InvoiceID that will be needed to mark the invoice as paid or to retrieve it.</p>\n","urlObject":{"path":["addinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"2c0d0b35-70e8-4cb4-9686-4daa552c1065","name":"Create Invoice (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\": [\r\n                    {\r\n                        \"referenceid\": \"b20aada17ffad8f7\",\r\n                        \"referencetype\": \"Subscription\"\r\n                    }\r\n                ]\r\n            }\r\n        ],\r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\": \"CS-TEST-SUB\",\r\n            \"productiondate\": \"2023-08-14T00:00:00\",\r\n            \"producer\": \"CS TEST SUB\",\r\n            \"length\": \"TEST SUB Length\",\r\n            \"po\": \"Purchase Order Number SUB\"\r\n        },\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-11-16T23:59:59\",\r\n        \"issuedate\": \"2023-11-16T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}"},"url":"{{HM_ServiceAPI_URL}}/addinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 14 Dec 2023 10:11:31 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"67577f49b74d0253\",\n        \"memberaccountid\": \"92662dfe696a497f\",\n        \"issuedate\": \"2023-12-14T21:11:30.533\",\n        \"duedate\": \"2023-12-14T21:11:31.413\",\n        \"discount\": 0,\n        \"totaltax\": 0,\n        \"subtotal\": 20,\n        \"total\": 20,\n        \"invoicenumber\": 192,\n        \"status\": \"Pending\",\n        \"currencycode\": \"AUD\"\n    },\n    \"checkoutkeys\": {\n        \"StripeAPIKey\": \"pk_test_51MjXTGINFIsu1VM9coCRmwphHaoHWhsKVYzGOqNCwNg7EArDLkFlO9bMQIbB6leGxZ8kvrhfha6dTwy8NLxR0CIg00KKMvSCPT\",\n        \"ConnectedAccountID\": \"acct_1Nseu6IGENCfkRK2\",\n        \"AccountCurrency\": \"AUD\"\n    }\n}"}],"_postman_id":"7b7eae5c-dba6-466f-9e89-5526275b1d2e"},{"name":"Validate Coupon","id":"c7d91670-7280-4b7c-bed1-5af8e8abd993","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true},"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SubscriptionPlanID\":\"145e2b8d68c4a0b6\",\r\n    \"CouponCode\":\"XMAS23\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/validatecoupon/{{HM_IntegrationAPI_Token}}","urlObject":{"path":["validatecoupon","{{HM_IntegrationAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"24c9de6e-9e8a-4f28-8f2d-75a05879d1f8","name":"Validate Coupon (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SubscriptionPlanID\":\"90e8e7e17896333a\",\r\n    \"CouponCode\":\"IND50\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/validatecoupon{{HM_IntegrationAPI_Token}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 17 Aug 2023 01:05:43 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Result\": \"Valid\",\n    \"Coupon\": {\n        \"ID\": \"3de9d6146c5f833b\",\n        \"Description\": \"Individual Discount\",\n        \"Percentage\": 50,\n        \"CodeRequired\": true,\n        \"Code\": \"IND50\",\n        \"PeriodCycle\": 3,\n        \"EndDate\": \"2023-08-19T00:00:00\",\n        \"Status\": 1\n    }\n}"}],"_postman_id":"c7d91670-7280-4b7c-bed1-5af8e8abd993"},{"name":"Update Invoice","id":"61d5d953-79e4-434f-af9e-00c503c8a78b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"id\": \"67577f49b74d0253\",\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-12-14T23:59:59\",\r\n        \"issuedate\": \"2023-12-14T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"amount\": 0,\r\n                \"amounttax\": 0,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\": [\r\n                    {\r\n                        \"referenceid\": \"b20aada17ffad8f7\",\r\n                        \"referencetype\": \"Subscription\"\r\n                    }\r\n                ]\r\n            }\r\n        ],\r\n        \"BillingDetails\": {\r\n            \"FullName\": \"cs-test-card-update\",\r\n            \"CompanyName\": \"company-update\",\r\n            \"Address1\": \"addr 1 update\",\r\n            \"Address2\": \"addr 2 update\",\r\n            \"City\": \"city update\",\r\n            \"State\": \"state update\",\r\n            \"PostalCode\": \"postal update\",\r\n            \"Country\": \"AU\"\r\n        },\r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\": \"CS-TEST-SUB\",\r\n            \"productiondate\": \"2023-08-15T00:00:00\",\r\n            \"producer\": \"CS TEST SUB\",\r\n            \"length\": \"TEST SUB Length\",\r\n            \"po\": \"Purchase Order Number SUB\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updateinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p>Updates an invoice based on the associated invoice line items.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CurrencyCode</td>\n<td>Required, the currency for which payment will be taken in</td>\n</tr>\n<tr>\n<td>DueDate</td>\n<td>Required, the date the invoice is due. This should always be set to the current date</td>\n</tr>\n<tr>\n<td>IssueDate</td>\n<td>Optional, this date the invoice was generated. This should always be set to the current date</td>\n</tr>\n<tr>\n<td>DiscountID</td>\n<td>Optional, the ID of the applied discount. This should only be used when a discount applies to an entire invoice. *Not applicable for Subscriptions. See below reference line to get to know more.</td>\n</tr>\n<tr>\n<td>Discount</td>\n<td>Optional, the amount of the applied discount</td>\n</tr>\n<tr>\n<td>SubTotal</td>\n<td>Optional, the total amount of all line items (excluding any applicable tax or discount amounts). *Not applicable for subscriptions, the SubTotal will be filled based on the Invoice Line Item ReferenceID (SubscriptionPlanID) in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>TotalTax</td>\n<td>Optional, the total tax amount of all line items (including any applicable tax reductions based on discount amounts). *Not applicable for subscriptions, the TotalTax will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>Total</td>\n<td>Optional, the total amount of all line items (including any applicable tax or discount amounts). *Not applicable for subscriptions, the Total sum will be calculated in the background and returned on the response</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td>Optional, case sensitive, possible values are; \"CreditCard\", or \"Paypal\". This should only be set if payment is taken in advance of creating an invoice</td>\n</tr>\n<tr>\n<td>PaymentReferenceNumber</td>\n<td>Optional, this should only be set if payment is taken in advance of creating an invoice and should be the unique payment reference number returned from the payment gateway</td>\n</tr>\n<tr>\n<td>InvoiceLineItems</td>\n<td>Required, these are the items that make up in the invoice</td>\n</tr>\n<tr>\n<td>InvoiceProduction</td>\n<td>Required, this is the production that the invoice covers</td>\n</tr>\n<tr>\n<td>BillingDetails</td>\n<td>PostalCode only is required for US country</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice Line Items</strong></p>\n<p>There should be one of these for every unique item on the invoice.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Quantity</td>\n<td>Required, the quantity of the line item</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>Optional, the amount of the line item (excluding any applicable tax or discount amounts). *Not applicable for subscriptions, the Line Item Amount will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>AmountTax</td>\n<td>Optional, the tax amount of the line item (including any applicable tax reductions based on discount amounts). *Not applicable for subscriptions, the item AmountTax will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>Required, the description of the line item. A good example to be used here would be the track display title</td>\n</tr>\n<tr>\n<td>DiscountID</td>\n<td>Optional, the ID of the applied discount. This should only be used when a discount applies to this specific line item.  <br /><strong>*For subscriptions,</strong>  <br />- 1. If a plan has an automatic voucher discount (no voucher code needed from the member) it will be automatically applied to the invoice total and returned on the response.  <br />- 2. Now, to apply discount using a voucher code previously validated, refer below to Invoice Line Items References.</td>\n</tr>\n<tr>\n<td>Discount</td>\n<td>Optional, the amount of the applied discount</td>\n</tr>\n<tr>\n<td>InvoiceItemReferences</td>\n<td>Required, hese are the items that make up the line item</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice Line Items - References</strong></p>\n<p>Each unique item on the invoice will have 2 of these; one of type \"Track\" and another of type \"Rate\".</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceType</td>\n<td>Required, possible values are; \"Track\", \"Rate\", \"Subscription\", or \"SubscriptionDiscount\".</td>\n</tr>\n<tr>\n<td>ReferenceID</td>\n<td>Required, the ID to be used here will depend on the value selected for the ReferenceType. So it will either be a TrackID, RateID, SubscriptionID or SubscriptionDiscountID (this last one will be returned via ValidateCoupon()).</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>Optional, the Value to be used here should depend on the value selected for the ReferenceType. For example, when \"Track\" then the value should be the track display title. When \"Rate\" then the value should be the code of that Rate</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Production</strong></p>\n<p>Optional. This is not an array and will only ever be a single production. This does not need to be provided and should only be used when a production is to be specified as part of the invoice creation. If a production is provided then there are specific fields (listed below) that need to be provided as part of the production object.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Client</td>\n<td>Required, this should be the email associated with against the invoice. If it is a guest purchase then it will be the guests email, otherwise it will be the members email</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>Required, the name of the production. This would typically be the name given to the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>ProductionDate</td>\n<td>Optional, the date of the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>Producer</td>\n<td>Optional, the producer associated with the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>Length</td>\n<td>Optional, the total length of the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>PO</td>\n<td>Optional, the purchase order number associated with the production as provided by the invoicee</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: BillingDetails</strong></p>\n<p>PostalCode only is required to run payments for members located in US.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FullName</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CompanyName</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Address1</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Address2</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>City</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PostalCode</td>\n<td>Required only for members located in US country</td>\n</tr>\n<tr>\n<td>Country</td>\n<td>Required</td>\n</tr>\n</tbody>\n</table>\n</div><p>**<br />Response Notes**</p>\n<p>On invoice creation success, the response will be the invoice that was created. This will contain the relevant InvoiceID that will be needed to mark the invoice as paid or to retrieve it.</p>\n","urlObject":{"path":["updateinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"6553d78c-7d01-4b0f-9f80-5c670ed57aae","name":"Update Invoice (JSON)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"id\": \"eb4efc5cbc9a5b00\",\r\n        \"currencycode\": \"USD\",\r\n        \"duedate\": \"2024-01-27T23:59:59\",\r\n        \"issuedate\": \"2024-01-24T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"amount\": 0,\r\n                \"amounttax\": 0,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\": [\r\n                    {\r\n                        \"referenceid\": \"07615de0da9a3d50\",\r\n                        \"referencetype\": \"Subscription\"\r\n                    }\r\n                ]\r\n            }\r\n        ],\r\n        \"BillingDetails\": {\r\n            \"FullName\": \"cs-test-card-update\",\r\n            \"CompanyName\": \"company-update\",\r\n            \"Address1\": \"addr 1 update usa\",\r\n            \"Address2\": \"addr 2 update usa\",\r\n            \"City\": \"city update usa\",\r\n            \"State\": \"state update usa\",\r\n            \"PostalCode\": \"29636\",\r\n            \"Country\": \"US\"\r\n        },\r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\": \"CS-TEST-SUB\",\r\n            \"productiondate\": \"2023-08-15T00:00:00\",\r\n            \"producer\": \"CS TEST SUB\",\r\n            \"length\": \"TEST SUB Length\",\r\n            \"po\": \"Purchase Order Number SUB\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updateinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jan 2024 06:36:16 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"eb4efc5cbc9a5b00\",\n        \"memberaccountid\": \"cd0adf2adba2011c\",\n        \"issuedate\": \"2024-01-24T17:36:14.907\",\n        \"duedate\": \"2024-01-24T17:36:15.633\",\n        \"discount\": 0,\n        \"totaltax\": 0,\n        \"subtotal\": 10,\n        \"total\": 10,\n        \"invoicenumber\": 142,\n        \"status\": \"Pending\",\n        \"currencycode\": \"USD\"\n    },\n    \"checkoutkeys\": {\n        \"StripeAPIKey\": \"pk_live_51MjXTGINFIsu1VM9JVHrWU3kxWokmJKXrNX7mF7exPdByryYVziz2BnWXBNa8vFPbDVKab5KKbfWtIRAumtgwAWn00juQFO095\",\n        \"ConnectedAccountID\": \"acct_1ONSQvITn8N7IvCC\",\n        \"AccountCurrency\": \"AUD\"\n    }\n}"}],"_postman_id":"61d5d953-79e4-434f-af9e-00c503c8a78b"}],"id":"5fbae50f-3c2b-452a-9900-f376c9037729","description":"<p>AddInvoice is the starting point for subscription checkouts. The response will provide details of the just added invoice as well as,</p>\n<ul>\n<li>To be used to load Stripe.js components,<ul>\n<li><strong>APIKey</strong></li>\n<li><strong>ConnectedAccountID</strong></li>\n<li><strong>Total</strong></li>\n<li><strong>AccountCurrency</strong></li>\n</ul>\n</li>\n</ul>\n","_postman_id":"5fbae50f-3c2b-452a-9900-f376c9037729"},{"name":"Member Checkout Confirmation Page","item":[{"name":"Pay Invoice","event":[{"listen":"test","script":{"id":"daa1a982-c9f6-47a9-a621-51b142d6ae5f","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Search Invoice\");"],"type":"text/javascript"}}],"id":"89697de6-ceed-47f6-b8a2-9f9cb807b3b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoicepayment\": {\r\n        \"invoiceid\": \"4901a3654d2089e7\",\r\n        \"amount\": 0.22,\r\n        \"contactname\": \"camila@harvestmedia.net\",\r\n        \"date\": \"2023-12-15T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"paymentreferencenumber\": \"\",\r\n        \"paymentstatus\": \"Processing\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/payinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p>Pays a pending state invoice.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Payment</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvoiceID</td>\n<td>Required, the unique ID of the invoice that is moving to a paid status</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>Required, the amount of the associated invoice that was paid</td>\n</tr>\n<tr>\n<td>ContactName</td>\n<td>Required, the name to be associated against the payment</td>\n</tr>\n<tr>\n<td>Date</td>\n<td>Required, the date payment was made</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td>Required, possible values are; \"CreditCard\", or \"PayPal\"</td>\n</tr>\n<tr>\n<td>PaymentReferenceNumber</td>\n<td>Required, possible values are; \"CreditCard\", or \"PayPal\"</td>\n</tr>\n<tr>\n<td>PaymentStatus</td>\n<td>Required, the unique payment reference number returned from the payment gateway</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Misc</strong></p>\n<p>There should be one of these for every unique item on the invoice.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SendEmail</td>\n<td>Optional, default value is false. If true an email will be sent with an associated PDF invoice attached to it</td>\n</tr>\n<tr>\n<td>BCCEmail</td>\n<td>Optional, email address to be BCC'd. This is not a comma-separated list of email addresses, but rather a single email address</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<p>On invoice creation success, the response will be the invoice that was paid. This will contain the relevant InvoiceID that will be needed to mark the invoice as paid or to retrieve it.</p>\n","urlObject":{"path":["payinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"849bb759-ac45-4406-98fe-13751051b525","name":"Pay Invoice (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"invoicepayment\": {\r\n        \"invoiceid\": \"{{HM_ServiceAPI_InvoiceID}}\",\r\n        \"amount\": \"{{HM_ServiceAPI_InvoiceTotal}}\",\r\n        \"contactname\": \"camila@harvestmedia.net\",\r\n        \"date\": \"2023-11-16T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"paymentreferencenumber\": \"\",\r\n        \"paymentstatus\": \"Processing\"\r\n    }\r\n}"},"url":"{{HM_ServiceAPI_URL}}/payinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Nov 2023 04:06:57 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"f2f337ec56f5c1b1\",\n        \"memberaccountid\": \"3a519b04c8a54ab8\",\n        \"issuedate\": \"2023-11-16T15:05:08.64\",\n        \"duedate\": \"2023-11-16T15:05:08.64\",\n        \"totaltax\": 2,\n        \"subtotal\": 19.99,\n        \"total\": 21.99,\n        \"invoicenumber\": 164,\n        \"status\": \"Processing\",\n        \"currencycode\": \"AUD\"\n    },\n    \"checkoutdetail\": {\n        \"clientsecret\": \"pi_3OCwqyRDQDq9d3Yk0lmKRrfw_secret_ZfsYXGC6Ni4BwtnPKU1qV3INl\",\n        \"checkoutconfirmtype\": \"Payment\"\n    }\n}"},{"id":"cafcd138-76a8-4275-b0be-d28c62e9836f","name":"Pay Invoice (XML)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/xml"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","disabled":true}],"body":{"mode":"raw","raw":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<root>\r\n   <invoicepayment>\r\n      <amount>{{HM_ServiceAPI_InvoiceTotal}}</amount>\r\n      <invoiceid>{{HM_ServiceAPI_InvoiceID}}</invoiceid>\r\n      <contactname>camila@harvestmedia.net</contactname>\r\n      <date>2023-11-16T00:00:00</date>\r\n      <paymentreferencenumber />\r\n      <paymentstatus>Processing</paymentstatus>\r\n      <paymenttype>CreditCard</paymenttype>\r\n   </invoicepayment>\r\n</root>","options":{"raw":{"language":"xml"}}},"url":"{{HM_ServiceAPI_URL}}/payinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Thu, 16 Nov 2023 04:07:41 GMT","enabled":true},{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<responseinvoice xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <invoice>\n        <id>f2f337ec56f5c1b1</id>\n        <memberaccountid>3a519b04c8a54ab8</memberaccountid>\n        <issuedate>2023-11-16T15:05:08.64</issuedate>\n        <duedate>2023-11-16T15:05:08.64</duedate>\n        <totaltax>2.00</totaltax>\n        <subtotal>19.99</subtotal>\n        <total>21.99</total>\n        <invoicenumber>164</invoicenumber>\n        <status>Processing</status>\n        <currencycode>AUD</currencycode>\n    </invoice>\n    <error>\n        <code>4</code>\n        <description>Unable to process Paid Invoice</description>\n    </error>\n</responseinvoice>"},{"id":"23560508-5b88-482a-b6ce-47d9c0add059","name":"Pay Invoice","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoicepayment\": {\r\n        \"invoiceid\": \"087b009513be8236\",\r\n        \"amount\": 1.00,\r\n        \"contactname\": \"camila@harvestmedia.net\",\r\n        \"date\": \"2024-06-13T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"paymentreferencenumber\": \"\",\r\n        \"paymentstatus\": \"Processing\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/payinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Jun 2024 00:42:47 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"087b009513be8236\",\n        \"memberaccountid\": \"e72516d73b468267\",\n        \"issuedate\": \"2024-06-13T04:48:46.55\",\n        \"duedate\": \"2024-06-13T04:48:46.607\",\n        \"UTCOffset\": 10,\n        \"discount\": 0,\n        \"totaltax\": 0,\n        \"subtotal\": 1,\n        \"total\": 1,\n        \"invoicenumber\": 1411,\n        \"status\": \"Processing\",\n        \"currencycode\": \"USD\",\n        \"blanketdiscount\": false\n    },\n    \"checkoutdetail\": {\n        \"clientsecret\": \"pi_3PR1kYREHvfJoFKj1Nq28TbP_secret_AEWGEZ034iUDcCDBBGVr3Lxwy\",\n        \"checkoutconfirmtype\": \"Payment\"\n    }\n}"}],"_postman_id":"89697de6-ceed-47f6-b8a2-9f9cb807b3b5"},{"name":"Pay Invoice Free Trial","event":[{"listen":"test","script":{"id":"daa1a982-c9f6-47a9-a621-51b142d6ae5f","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Search Invoice\");"],"type":"text/javascript"}}],"id":"eacf4e53-7e92-46f8-b1bc-2128ffacbdbf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"invoicepayment\": {\r\n        \"invoiceid\": \"{{HM_ServiceAPI_InvoiceID}}\",\r\n        \"amount\": \"{{HM_ServiceAPI_InvoiceTotal}}\",\r\n        \"contactname\": \"camila@harvestmedia.net\",\r\n        \"date\": \"2023-11-16T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"paymentreferencenumber\": \"\",\r\n        \"paymentstatus\": \"Processing\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/payinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p>The endpoint is the same, what differs a payment for Free Trial subscriptions is the object response attribute <strong>checkoutconfirmtype:</strong></p>\n<p><strong>When = Setup</strong> then call <a href=\"https://stripe.com/docs/js/setup_intents/confirm_setup\">stripe.confirmSetup()</a></p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Payment</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvoiceID</td>\n<td>Required, the unique ID of the invoice that is moving to a paid status</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>Required, the amount of the associated invoice that was paid</td>\n</tr>\n<tr>\n<td>ContactName</td>\n<td>Required, the name to be associated against the payment</td>\n</tr>\n<tr>\n<td>Date</td>\n<td>Required, the date payment was made</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td>Required, possible values are; \"CreditCard\", or \"PayPal\"</td>\n</tr>\n<tr>\n<td>PaymentReferenceNumber</td>\n<td>Required, possible values are; \"CreditCard\", or \"PayPal\"</td>\n</tr>\n<tr>\n<td>PaymentStatus</td>\n<td>Required, the unique payment reference number returned from the payment gateway</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Misc</strong></p>\n<p>There should be one of these for every unique item on the invoice.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SendEmail</td>\n<td>Optional, default value is false. If true an email will be sent with an associated PDF invoice attached to it</td>\n</tr>\n<tr>\n<td>BCCEmail</td>\n<td>Optional, email address to be BCC'd. This is not a comma-separated list of email addresses, but rather a single email address</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<p>On invoice creation success, the response will be the invoice that was paid. This will contain the relevant InvoiceID that will be needed to mark the invoice as paid or to retrieve it.</p>\n","urlObject":{"path":["payinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"c8794386-7d67-431c-a3b6-e6b47c4ab148","name":"Pay Invoice (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"invoicepayment\": {\r\n        \"invoiceid\": \"{{HM_ServiceAPI_InvoiceID}}\",\r\n        \"amount\": \"{{HM_ServiceAPI_InvoiceTotal}}\",\r\n        \"contactname\": \"camila@harvestmedia.net\",\r\n        \"date\": \"2023-11-16T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"paymentreferencenumber\": \"\",\r\n        \"paymentstatus\": \"Processing\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/payinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Nov 2023 04:47:56 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"0e6c504b61e6424d\",\n        \"memberaccountid\": \"3a519b04c8a54ab8\",\n        \"issuedate\": \"2023-11-16T15:47:47.987\",\n        \"duedate\": \"2023-11-16T15:47:47.987\",\n        \"totaltax\": 0,\n        \"subtotal\": 0,\n        \"total\": 0,\n        \"invoicenumber\": 168,\n        \"status\": \"Processing\",\n        \"currencycode\": \"AUD\"\n    },\n    \"checkoutdetail\": {\n        \"clientsecret\": \"seti_1OCxUcRDQDq9d3YkmqMMZakx_secret_P0zTmiYuYSIy634WeVhKy3nU3cEuZiK\",\n        \"checkoutconfirmtype\": \"Setup\"\n    }\n}"}],"_postman_id":"eacf4e53-7e92-46f8-b1bc-2128ffacbdbf"}],"id":"4be2bf21-5240-4772-8097-65779a086959","description":"<p>After mounting the checkout, validating a promotion code (when applies) and the user is ready to hit \"Subscribe\", StartFragmentcall the API PayInvoice() with a <strong>processing</strong> status invoice to get the invoice object response back, the <strong>clientSecret</strong> to securely complete the payment process and the <strong>checkoutconfirmtype (= Payment)</strong> to call <a href=\"https://stripe.com/docs/js/payment_intents/confirm_payment\">Stripe.confirmPayment.</a></p>\n<p><a href=\"https://stripe.com/docs/payments/accept-a-payment-deferred?platform=web&amp;type=subscription\">https://stripe.com/docs/payments/accept-a-payment-deferred?platform=web&amp;type=subscription</a></p>\n","_postman_id":"4be2bf21-5240-4772-8097-65779a086959"},{"name":"Member Active and Expired Subscriptions Page","item":[{"name":"Get Member Details","event":[{"listen":"test","script":{"id":"5a81b195-83be-49dd-949f-ff70baf3a087","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","var jsonData = null;","var jsonDataMemberAccountID = \"\";","var jsonDataMemberGroupID = \"\";","var jsonDataMemberGroupRegionID = \"\";","","if (responseBody.indexOf(\"<?xml\") >= 0) {","    jsonData = xml2Json(responseBody);","    jsonDataMemberAccountID = jsonData.responsemember.member.$.id;","    jsonDataMemberGroupID = jsonData.responsemember.member.$.membergroupid;","    jsonDataMemberGroupRegionID = jsonData.responsemember.member.$.membergroupregionid;","} else {","    jsonData = JSON.parse(responseBody);","    if (jsonData.Member !== null) {","        jsonDataMemberAccountID = jsonData.Member.ID;","        jsonDataMemberGroupID = jsonData.Member.MemberGroupID;","        jsonDataMemberGroupRegionID = jsonData.Member.MemberGroupRegionID;","    }","}","","console.log(\"HM_ServiceAPI_MemberAccountID set to \" + jsonDataMemberAccountID);","console.log(\"HM_ServiceAPI_MemberGroupID set to \" + jsonDataMemberGroupID);","console.log(\"HM_ServiceAPI_MemberGroupRegionID set to \" + jsonDataMemberGroupRegionID);","console.log(postman.getEnvironmentVariable(\"HM_ServiceAPI_MemberTokenIsLoggedMember\"));","","postman.setEnvironmentVariable(\"HM_ServiceAPI_MemberAccountID\", jsonDataMemberAccountID);","postman.setEnvironmentVariable(\"HM_ServiceAPI_MemberGroupID\", jsonDataMemberGroupID);","postman.setEnvironmentVariable(\"HM_ServiceAPI_MemberGroupRegionID\", jsonDataMemberGroupRegionID);","","if (postman.getEnvironmentVariable(\"HM_ServiceAPI_MemberTokenIsLoggedMember\") == \"true\") {","    postman.setNextRequest(\"Get Signle Sign-on Token\");","} else {","    postman.setNextRequest(\"Get Style Groups\");","}","",""],"type":"text/javascript"}}],"id":"82436f24-aed7-4d67-a0c5-f84d1a16bee5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"}],"url":"{{HM_ServiceAPI_URL}}/getmember/{{HM_ServiceAPI_MemberToken}}","description":"<p>Returns the member details if a valid MemberToken is provided. Returns an error message/code if the MemberToken is invalid.</p>\n<p>Member tokens can retrieved via either:</p>\n<ul>\n<li>Authenticate Member for a member that is logging in</li>\n<li>Guest Member Authenticate for a guest member</li>\n</ul>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["getmember","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"b5816977-18e5-4d23-a09a-9b730ea5ab7b","name":"Get Member Details (JSON)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","disabled":true},{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"}],"url":"{{HM_ServiceAPI_URL}}/getmember/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 17 Aug 2023 05:47:50 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Member\": {\n        \"ID\": \"3a519b04c8a54ab8\",\n        \"FirstName\": \"Camila\",\n        \"LastName\": \"Silva\",\n        \"Email\": \"camila@harvestmedia.net\",\n        \"Username\": \"camila@harvestmedia.net\",\n        \"TermsAccept\": 0,\n        \"DownloadFormat\": \"19b8f5935503adde\",\n        \"SearchFormat\": 1,\n        \"SearchSort\": 3,\n        \"Company\": \"\",\n        \"Production\": \"\",\n        \"SubProduction\": \"\",\n        \"Position\": \"\",\n        \"Address1\": \"\",\n        \"Address2\": \"\",\n        \"Suburb\": \"\",\n        \"State\": \"\",\n        \"Postcode\": \"\",\n        \"Country\": \"AU\",\n        \"Phone\": \"\",\n        \"SampleEnabled\": true,\n        \"DownloadEnabled\": true,\n        \"DownloadsRemaining\": \"NULL\",\n        \"Status\": \"active\",\n        \"RegionID\": \"96dba324ca1754fd\",\n        \"PasswordType\": \"hmphashed_temporary\",\n        \"ServiceInfoURLs\": {\n            \"DirectDownloadURL\": \"http://elb-download-beta.harvestmedia.net/assets/downloads/{downloadtoken}\",\n            \"TrackStreamURL\": \"https://elb-beta.harvestmedia.net/assets/samples/1faa1f7ec9fda97c20645796e0ddcb156b386b57/{id}\",\n            \"ProfileImageURL\": \"https://elb-beta.harvestmedia.net/assets/memberprofile/1faa1f7ec9fda97c20645796e0ddcb156b386b57/3a519b04c8a54ab8/{width}/{height}\",\n            \"AlbumMontageSampleURL\": \"https://elb-beta.harvestmedia.net/assets/samples/montage/1faa1f7ec9fda97c20645796e0ddcb156b386b57/{id}\",\n            \"AlbumArtURL\": \"https://elb-beta.harvestmedia.net/assets/albumart/4602844410e877df7af7e52203e5fc2729cd68a2/{id}/{width}/{height}\",\n            \"WaveformURL\": \"https://elb-beta.harvestmedia.net/assets/waveforms/4602844410e877df7af7e52203e5fc2729cd68a2/{id}/{width}/{height}\",\n            \"MontageWaveformURL\": \"https://elb-beta.harvestmedia.net/assets/waveforms/montage/4602844410e877df7af7e52203e5fc2729cd68a2/{id}/{width}/{height}\",\n            \"LibraryLogoUrl\": \"https://elb-beta.harvestmedia.net/assets/librarylogo/4602844410e877df7af7e52203e5fc2729cd68a2/{id}/{width}/{height}\",\n            \"PlaylistArtUrl\": \"https://elb-beta.harvestmedia.net/assets/playlistart/4602844410e877df7af7e52203e5fc2729cd68a2/{id}/{width}/{height}\",\n            \"PlaylistCategoryArtUrl\": \"https://elb-beta.harvestmedia.net/assets/playlistcategoryart/4602844410e877df7af7e52203e5fc2729cd68a2/{id}/{width}/{height}\",\n            \"RightHolderProfileUrl\": \"https://elb-beta.harvestmedia.net/assets/rightholderprofile/4602844410e877df7af7e52203e5fc2729cd68a2/{id}/{width}/{height}\",\n            \"WaveformDataPointUrl\": \"https://elb-beta.harvestmedia.net/assets/waveform_data/1faa1f7ec9fda97c20645796e0ddcb156b386b57/{id}/{dataformat}\",\n            \"StyleArtUrl\": \"https://elb-beta.harvestmedia.net/assets/styleart/4602844410e877df7af7e52203e5fc2729cd68a2/{id}/{width}/{height}\",\n            \"MemberGroupLogoUrl\": \"https://elb-beta.harvestmedia.net/assets/membergrouplogo/1faa1f7ec9fda97c20645796e0ddcb156b386b57/{id}/{width}/{height}\",\n            \"MemberGroupArtUrl\": \"https://elb-beta.harvestmedia.net/assets/membergroupart/1faa1f7ec9fda97c20645796e0ddcb156b386b57/{id}/{width}/{height}\",\n            \"MemberGroupProductionArtUrl\": \"https://elb-beta.harvestmedia.net/assets/membergroupproductionart/1faa1f7ec9fda97c20645796e0ddcb156b386b57/{id}/{width}/{height}\"\n        },\n        \"FileFormats\": [\n            {\n                \"ID\": \"19b8f5935503adde\"\n            },\n            {\n                \"ID\": \"99dc08a83ff1671e\"\n            }\n        ],\n        \"HasProfileImage\": false,\n        \"DownloadEnabledType\": \"MemberGroup\",\n        \"DownloadLimit\": \"NULL\",\n        \"DownloadsUsed\": \"NULL\",\n        \"DownloadStem\": false,\n        \"MemberGroups\": [\n            {\n                \"ID\": \"615c8b956d8b558a\",\n                \"Name\": \"Camila Silva - Commercial\",\n                \"AssignedRegionID\": \"96dba324ca1754fd\",\n                \"AssignedRegionChangeEnabled\": false,\n                \"Type\": \"Primary\",\n                \"ProductionsCount\": 0,\n                \"HasLogoArtWork\": false,\n                \"HasArtWork\": false\n            }\n        ]\n    },\n    \"MemberSubscription\": {\n        \"SubscriptionID\": \"dc15e27d90cd9441\",\n        \"Name\": \"Commercial\",\n        \"Period\": \"Monthly\",\n        \"Description\": \"\",\n        \"IsFeatured\": true,\n        \"AllowBadges\": false,\n        \"BadgeDisplayTitle\": \"\",\n        \"Channels\": \"\",\n        \"DownloadLimit\": \"Unlimited\",\n        \"AllowTeam\": true,\n        \"AllowedTeamMembers\": 6,\n        \"SignUpDate\": \"2023-08-17T15:40:21.14\",\n        \"ExpiryDate\": \"2023-09-17T15:40:21.14\",\n        \"Status\": \"Active\",\n        \"PaymentMethod\": {\n            \"FullName\": \"cs-test-card\",\n            \"CardNumber\": \"**** **** **** 4242\",\n            \"Expiry\": \"12/2025\",\n            \"PromoCode\": \"\",\n            \"TaxInfo\": \"\"\n        },\n        \"BillingDetails\": {\n            \"FullName\": \"cs-test-card\",\n            \"CompanyName\": \"company\",\n            \"Address1\": \"addr 1\",\n            \"Address2\": \"addr 2\",\n            \"City\": \"city\",\n            \"State\": \"state\",\n            \"PostalCode\": \"postal\",\n            \"Country\": \"AU\"\n        }\n    },\n    \"ExpiredSubscriptions\": [\n        {\n            \"SubscriptionID\": \"a949ea2c90c5a683\",\n            \"Name\": \"Individual\",\n            \"Period\": \"Monthly\",\n            \"Description\": \"\",\n            \"IsFeatured\": true,\n            \"AllowBadges\": false,\n            \"BadgeDisplayTitle\": \"\",\n            \"Channels\": \"\",\n            \"DownloadLimit\": \"Unlimited\",\n            \"AllowTeam\": false,\n            \"AllowedTeamMembers\": 0,\n            \"SignUpDate\": \"2023-08-17T11:19:06.873\",\n            \"ExpiryDate\": \"2023-09-17T11:19:06.873\",\n            \"CancellationRequestDate\": \"2023-08-17T15:37:16.097\",\n            \"Status\": \"Cancelled\"\n        }\n    ],\n    \"MemberChannels\": []\n}"}],"_postman_id":"82436f24-aed7-4d67-a0c5-f84d1a16bee5"},{"name":"Update Payment Method","id":"7755d25d-b79c-4070-9223-ba5cb06ad437","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"BillingDetails\": {\r\n        \"FullName\": \"Camila Change Payment Method\",\r\n        \"CompanyName\": \"Test\",\r\n        \"Address1\": \"test\",\r\n        \"Address2\": \"testt\",\r\n        \"City\": \"sao paulo\",\r\n        \"State\": \"SP\",\r\n        \"PostalCode\": \"12900000\",\r\n        \"Country\": \"BR\"\r\n    },\r\n        \"cardinfo\": {\r\n            \"number\": \"8b083425ba9e71a134a6ccfac3434493\",\r\n            \"month\": \"99dc08a83ff1671e\",\r\n            \"year\": \"fa24bebee2409643\",\r\n            \"cvc\": \"813dc7a31b5f6b4e\"\r\n        }\r\n    }","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updatepaymentmethod/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["updatepaymentmethod","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"100547a5-eb2f-4b94-99bc-048f73bde772","name":"Update Payment Method (JSON)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"BillingDetails\": {\r\n        \"FullName\": \"Camila Change Payment Method\",\r\n        \"CompanyName\": \"Test\",\r\n        \"Address1\": \"test\",\r\n        \"Address2\": \"testt\",\r\n        \"City\": \"sao paulo\",\r\n        \"State\": \"SP\",\r\n        \"PostalCode\": \"12900000\",\r\n        \"Country\": \"BR\"\r\n    },\r\n        \"cardinfo\": {\r\n            \"number\": \"8b083425ba9e71a134a6ccfac3434493\",\r\n            \"month\": \"99dc08a83ff1671e\",\r\n            \"year\": \"fa24bebee2409643\",\r\n            \"cvc\": \"813dc7a31b5f6b4e\"\r\n        }\r\n    }","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updatepaymentmethod/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Tue, 15 Aug 2023 08:08:02 GMT","enabled":true},{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<responsecode xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <code>OK</code>\n</responsecode>"}],"_postman_id":"7755d25d-b79c-4070-9223-ba5cb06ad437"}],"id":"174d4606-7e81-4d7e-a375-44a597de8eb9","_postman_id":"174d4606-7e81-4d7e-a375-44a597de8eb9","description":""},{"name":"Member Whitelisting Page","item":[{"name":"Update Member Details","event":[{"listen":"test","script":{"id":"db08cb3a-d0e9-471c-9df7-fe14c569fb7d","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Update Member Details (MT)\");"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"ab8a07bc-ff4a-4233-b418-2859e84cde11","exec":["var newUsername = postman.getEnvironmentVariable(\"HM_ServiceAPI_Token\") + \"-user-u\";","","postman.setEnvironmentVariable(\"HM_ServiceAPI_NewMemberUsername\", newUsername);"],"type":"text/javascript"}}],"id":"9b5be1de-dea4-4ed7-a342-799b8ceae422","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"MemberAccount\":{\r\n\t\t\"ID\":\"{{HM_ServiceAPI_MemberAccountID}}\",\r\n\t\t\"FirstName\":\"First\",\r\n\t\t\"LastName\":\"Last\",\r\n\t\t\"Email\":\"camila@harvestmedia.net\",\r\n\t\t\"Company\":\"Company\",\r\n\t\t\"Production\":\"Production\",\r\n        \"SubProduction\":\"Sub Production\",\r\n\t\t\"Position\":\"Position\",\r\n\t\t\"Address1\":\"Address Line 1\",\r\n\t\t\"Address2\":\"Address Line 2\",\r\n\t\t\"Suburb\":\"Suburb\",\r\n\t\t\"State\":\"State\",\r\n\t\t\"Postcode\":\"Postcode\",\r\n\t\t\"Country\":\"AU\",\r\n\t\t\"Phone\":\"Phone\",\r\n\t\t\"UserName\":\"{{HM_ServiceAPI_MemberUsername}}\",\r\n\t    \"Password\":\"{{HM_ServiceAPI_MemberPassword}}\",\r\n\t\t\"TermsAccept\":\"true\",\r\n\t\t\"PrivacyAccept\":\"true\",\r\n\t\t\"Subscribe\":\"true\",\r\n\t\t\"FileFormat\":\"mp3\",\r\n\t\t\"SearchFormat\":\"Track\",\r\n\t\t\"SearchSort\":\"New\"\r\n\t},\r\n        \"Channels\": [\r\n            {\r\n                \"platform\": \"youtube\",\r\n                \"value\": \"youtube.com/cs-youtube-changed\"\r\n            },\r\n            {\r\n                \"platform\": \"facebook\",\r\n                \"value\": \"facebook.com/cs-test-new-facebook-changed\"\r\n            }\r\n        ]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/updatemember/{{HM_ServiceAPI_MemberToken}}","description":"<p>Updates an existing member account.</p>\n<p>Will return an error if the request data is not valid.</p>\n<p>Upon a successful update, no email notifications will be sent to the Member or Administrator.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ServiceToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<p>These parameters will be shared between “first search” and “search within results”.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FirstName</td>\n<td>Required, first name of the member.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>Required, last name of the member.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>Required, email of the member.</td>\n</tr>\n<tr>\n<td>Company</td>\n<td>Required, company of the member.</td>\n</tr>\n<tr>\n<td>Production</td>\n<td>Optional, production of the member.</td>\n</tr>\n<tr>\n<td>SubProduction</td>\n<td>Optional, sub production of the member.</td>\n</tr>\n<tr>\n<td>Position</td>\n<td>Optional, position of the member.</td>\n</tr>\n<tr>\n<td>Address1</td>\n<td>Optional, address 1 of the member</td>\n</tr>\n<tr>\n<td>Address2</td>\n<td>Optional, address 2 of the member.</td>\n</tr>\n<tr>\n<td>Suburb</td>\n<td>Optional, suburb of the member.</td>\n</tr>\n<tr>\n<td>State</td>\n<td>Optional, state of the member.</td>\n</tr>\n<tr>\n<td>Postcode</td>\n<td>Optional, post code of the member.</td>\n</tr>\n<tr>\n<td>Country</td>\n<td>Required, country of the member.</td>\n</tr>\n<tr>\n<td>Phone</td>\n<td>Optional, phone contact of the member.</td>\n</tr>\n<tr>\n<td>Username</td>\n<td>Required, username of the member.</td>\n</tr>\n<tr>\n<td>Password</td>\n<td>Optional, password of the member. If not provided, a random password will be assigned</td>\n</tr>\n<tr>\n<td>TermsAccept</td>\n<td>Required, agreement to the terms &amp; conditions for the member.</td>\n</tr>\n<tr>\n<td>PrivacyAccept</td>\n<td>Optional, agreement to the privacy policy for the member.</td>\n</tr>\n<tr>\n<td>Subscribe</td>\n<td>Optional, subscription to newsletters for the member.  <br />Recommended to use getRegionByIP to obtain the correct Subscribe default value for the user's region.</td>\n</tr>\n<tr>\n<td>FileFormat</td>\n<td>Optional, default download file format. Possible values include MP3, WAV, AIFF or a file format ID</td>\n</tr>\n<tr>\n<td>SearchFormat</td>\n<td>Optional, default search format. Possible values include Track, Album and Playlist</td>\n</tr>\n<tr>\n<td>SearchSort</td>\n<td>Optional, default search sorting. Possible values include New and Random, where New is release date descending</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Member Channels</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Platform</td>\n<td>Required, the Platform of the channel. Accepted values: \"Facebook\", \"Instagram\", \"TikTok\", \"Youtube\", \"Twitter\", \"Twitch\", \"Others\".</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>The URL of the social media</td>\n</tr>\n<tr>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["updatemember","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"32a6c297-5442-4f69-9870-bf1bb1034eda","name":"Update Member Details","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"MemberAccount\":{\r\n\t\t\"ID\":\"{{HM_ServiceAPI_MemberAccountID}}\",\r\n\t\t\"FirstName\":\"First\",\r\n\t\t\"LastName\":\"Last\",\r\n\t\t\"Email\":\"camila@harvestmedia.net\",\r\n\t\t\"Company\":\"Company\",\r\n\t\t\"Production\":\"Production\",\r\n        \"SubProduction\":\"Sub Production\",\r\n\t\t\"Position\":\"Position\",\r\n\t\t\"Address1\":\"Address Line 1\",\r\n\t\t\"Address2\":\"Address Line 2\",\r\n\t\t\"Suburb\":\"Suburb\",\r\n\t\t\"State\":\"State\",\r\n\t\t\"Postcode\":\"Postcode\",\r\n\t\t\"Country\":\"AU\",\r\n\t\t\"Phone\":\"Phone\",\r\n\t\t\"UserName\":\"{{HM_ServiceAPI_MemberUsername}}\",\r\n\t    \"Password\":\"{{HM_ServiceAPI_MemberPassword}}\",\r\n\t\t\"TermsAccept\":\"true\",\r\n\t\t\"PrivacyAccept\":\"true\",\r\n\t\t\"Subscribe\":\"true\",\r\n\t\t\"FileFormat\":\"mp3\",\r\n\t\t\"SearchFormat\":\"Track\",\r\n\t\t\"SearchSort\":\"New\"\r\n\t},\r\n        \"Channels\": [\r\n            {\r\n                \"platform\": \"youtube\",\r\n                \"value\": \"youtube.com/cs-youtube-changed\"\r\n            },\r\n            {\r\n                \"platform\": \"facebook\",\r\n                \"value\": \"facebook.com/cs-test-new-facebook-changed\"\r\n            }\r\n        ]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/updatemember/{{HM_IntegrationAPI_Token}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 06 Sep 2023 07:29:06 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Set-Cookie","value":"AWSALBTG=eHJ12Gnmk7cnEUrqcKclmDf5RhcaYRynO+tpV0D0Q4+emYeH/wxj1i9djpencdCfLJGT/m9uBSl0kMswbuFsWX1QGYB5rL4iUHAGLMT5l1cpm5m/nLgNQA7QQEaiNfpsM+sbYZi+X/DOLorqsr6Kt0jjCGvhOrjH7hSYsJnNMLR/YQEsR70=; Expires=Wed, 13 Sep 2023 07:29:06 GMT; Path=/","enabled":true},{"key":"Set-Cookie","value":"AWSALBTGCORS=eHJ12Gnmk7cnEUrqcKclmDf5RhcaYRynO+tpV0D0Q4+emYeH/wxj1i9djpencdCfLJGT/m9uBSl0kMswbuFsWX1QGYB5rL4iUHAGLMT5l1cpm5m/nLgNQA7QQEaiNfpsM+sbYZi+X/DOLorqsr6Kt0jjCGvhOrjH7hSYsJnNMLR/YQEsR70=; Expires=Wed, 13 Sep 2023 07:29:06 GMT; Path=/; SameSite=None; Secure","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"MemberAccount\": {\n        \"ID\": \"9a007f669be92e14\",\n        \"FirstName\": \"First\",\n        \"LastName\": \"Last\",\n        \"Email\": \"camila@harvestmedia.net\",\n        \"Company\": \"Company\",\n        \"Production\": \"Production\",\n        \"SubProduction\": \"Sub Production\",\n        \"Position\": \"Position\",\n        \"Address1\": \"Address Line 1\",\n        \"Address2\": \"Address Line 2\",\n        \"Suburb\": \"Suburb\",\n        \"State\": \"State\",\n        \"Postcode\": \"Postcode\",\n        \"Country\": \"AU\",\n        \"Phone\": \"Phone\",\n        \"Username\": \"camila@harvestmedia.net\",\n        \"TermsAccept\": \"true\",\n        \"Subscribe\": \"true\",\n        \"FileFormat\": \"19b8f5935503adde\",\n        \"SearchFormat\": \"track\",\n        \"SearchSort\": \"fav\",\n        \"SampleEnabled\": \"true\",\n        \"Status\": \"active\",\n        \"RegionID\": \"e616f53a01ddd9e3\",\n        \"ServiceInfoURLs\": {\n            \"DirectDownloadURL\": \"https://cf.harvestmedia.net/assets/downloads/{downloadtoken}\",\n            \"TrackStreamURL\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/samples/ac6373252926edf5e433024cb2571902fc6a8dda/{id}\",\n            \"ProfileImageURL\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/memberprofile/ac6373252926edf5e433024cb2571902fc6a8dda/{id}/{width}/{height}\",\n            \"AlbumMontageSampleURL\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/samples/montage/ac6373252926edf5e433024cb2571902fc6a8dda/{id}\",\n            \"AlbumArtURL\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/albumart/21765449be9e4e8c3ea8fe97997f7e5d9e8c8ec9/{id}/{width}/{height}\",\n            \"WaveformURL\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/waveforms/21765449be9e4e8c3ea8fe97997f7e5d9e8c8ec9/{id}/{width}/{height}\",\n            \"MontageWaveformURL\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/waveforms/montage/21765449be9e4e8c3ea8fe97997f7e5d9e8c8ec9/{id}/{width}/{height}\",\n            \"LibraryLogoUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/librarylogo/21765449be9e4e8c3ea8fe97997f7e5d9e8c8ec9/{id}/{width}/{height}\",\n            \"PlaylistArtUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/playlistart/21765449be9e4e8c3ea8fe97997f7e5d9e8c8ec9/{id}/{width}/{height}\",\n            \"PlaylistCategoryArtUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/playlistcategoryart/21765449be9e4e8c3ea8fe97997f7e5d9e8c8ec9/{id}/{width}/{height}\",\n            \"RightHolderProfileUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/rightholderprofile/21765449be9e4e8c3ea8fe97997f7e5d9e8c8ec9/{id}/{width}/{height}\",\n            \"WaveformDataPointUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/waveform_data/ac6373252926edf5e433024cb2571902fc6a8dda/{id}/{dataformat}\",\n            \"StyleArtUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/styleart/21765449be9e4e8c3ea8fe97997f7e5d9e8c8ec9/{id}/{width}/{height}\",\n            \"MemberGroupLogoUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/membergrouplogo/ac6373252926edf5e433024cb2571902fc6a8dda/{id}/{width}/{height}\",\n            \"MemberGroupArtUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/membergroupart/ac6373252926edf5e433024cb2571902fc6a8dda/{id}/{width}/{height}\",\n            \"MemberGroupProductionArtUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/membergroupproductionart/ac6373252926edf5e433024cb2571902fc6a8dda/{id}/{width}/{height}\"\n        },\n        \"LanguageCode\": \"EN\",\n        \"Salutation\": \"\",\n        \"MemberTypeID\": \"\",\n        \"FileFormats\": [],\n        \"HasProfileImage\": false,\n        \"PrivacyAccept\": \"true\",\n        \"DownloadEnabled\": \"true\",\n        \"DownloadsRemaining\": \"NULL\",\n        \"DownloadEnabledType\": \"Member\",\n        \"DownloadLimit\": \"NULL\",\n        \"DownloadsUsed\": \"NULL\",\n        \"DownloadStem\": false\n    },\n    \"MemberChannels\": [\n        {\n            \"Platform\": \"Youtube\",\n            \"Value\": \"youtube.com/cs-youtube-changed\"\n        },\n        {\n            \"Platform\": \"Facebook\",\n            \"Value\": \"facebook.com/cs-test-new-facebook-changed\"\n        }\n    ]\n}"}],"_postman_id":"9b5be1de-dea4-4ed7-a342-799b8ceae422"}],"id":"fd2c6922-cb3e-4fc3-80ef-a4281802a02c","_postman_id":"fd2c6922-cb3e-4fc3-80ef-a4281802a02c","description":""},{"name":"Member Shopping Cart Page","item":[{"name":"Get Invoice","event":[{"listen":"test","script":{"id":"401a9ee5-4c3e-47de-bd82-db6f0d3edb75","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Pay Invoice\");"],"type":"text/javascript"}}],"id":"15e8b4a9-6e01-4140-ba76-46f71e7ca3b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"invoiceid\":\"{{HM_ServiceAPI_InvoiceID}}\",\r\n\t\"returntracks\":true,\r\n\t\"returnrates\": true,\r\n    \"returnalbums\": true,\r\n\t\"returndiscounts\": false,\r\n    \"returnsubscriptions\": true\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p>Gets an invoice.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<p><strong>Response Notes</strong></p>\n<p>Invoices of any status can be retrieved.</p>\n","urlObject":{"path":["getinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"df865f83-8ed3-478d-9bb9-04b37289a4cb","name":"Get Invoice (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"invoiceid\":\"{{HM_ServiceAPI_InvoiceID}}\",\r\n\t\"returntracks\":true,\r\n\t\"returnrates\": true,\r\n    \"returnalbums\": true,\r\n\t\"returndiscounts\": false,\r\n    \"returnsubscriptions\": true\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/10.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Date","value":"Thu, 25 Jan 2024 02:05:19 GMT","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"70365ef81c68245d\",\n        \"memberaccountid\": \"c8c0e81091a77f09\",\n        \"issuedate\": \"2024-01-25T12:56:30.663\",\n        \"duedate\": \"2024-01-25T12:56:30.81\",\n        \"totaltax\": 0,\n        \"subtotal\": 41,\n        \"total\": 41,\n        \"invoicelineitems\": [\n            {\n                \"amount\": 1,\n                \"description\": \"Track Purchase - Telemetry Alert Accept Riser Stereo Communications\",\n                \"quantity\": 1,\n                \"track\": {\n                    \"trackid\": \"23bd9bc58e66b9f5c755c3313943a2d2\",\n                    \"albumid\": \"895034c175b0423c\",\n                    \"originalfilename\": \"COMTelm_Telemetry_Alert_Accept_Riser_Stereo_Communications_AMPLAR.wav\",\n                    \"filename\": \"TLT1_001_COMTelm_Telemetry_Alert_Accept_Riser_Stereo_Communications_AMPLAR.wav.wav\",\n                    \"title\": \"COMTelm_Telemetry_Alert_Accept_Riser_Stereo_Communications_AMPLAR.wav\",\n                    \"displaytitle\": \"Telemetry Alert Accept Riser Stereo Communications\",\n                    \"tracknumber\": \"001\",\n                    \"duration\": 1,\n                    \"bitrate\": 1,\n                    \"frequency\": 0,\n                    \"description\": \"Telemetry Alert Accept Riser Stereo Communications\"\n                },\n                \"rate\": {\n                    \"id\": \"50c7165591e2efc7\",\n                    \"style\": 2,\n                    \"code\": \"TRK001\",\n                    \"description\": \"TRK001\",\n                    \"duration\": 0,\n                    \"fee\": 1\n                }\n            },\n            {\n                \"amount\": 40,\n                \"description\": \"Album Purchase - Telemetry Pack\",\n                \"quantity\": 1,\n                \"rate\": {\n                    \"id\": \"ba9387a8592a698e\",\n                    \"style\": 2,\n                    \"code\": \"ABM001\",\n                    \"description\": \"ABM001\",\n                    \"duration\": 0,\n                    \"fee\": 40\n                },\n                \"album\": {\n                    \"albumid\": \"895034c175b0423c\",\n                    \"title\": \"Telemetry\",\n                    \"displaytitle\": \"Telemetry Pack\",\n                    \"albumcode\": \"\",\n                    \"cdtitle\": \"Telemetry\",\n                    \"description\": \"A variety of synthesised Telemetry sounds ranging in pitch, modulation and notation.\"\n                }\n            }\n        ],\n        \"invoicenumber\": 54,\n        \"status\": \"Pending\",\n        \"invoiceproduction\": {\n            \"client\": \"camila@harvestmedia.net\",\n            \"title\": \"Production Name\",\n            \"producer\": \"Producer Name\",\n            \"productiondate\": \"2020-01-08T00:00:00\",\n            \"length\": \"Total Production Length\",\n            \"po\": \"Purchase Order Number\"\n        },\n        \"currencycode\": \"AUD\",\n        \"billingdetails\": {\n            \"FullName\": \"\",\n            \"CompanyName\": \"\",\n            \"Address1\": \"\",\n            \"Address2\": \"\",\n            \"City\": \"\",\n            \"State\": \"\",\n            \"PostalCode\": \"\",\n            \"Country\": \"\"\n        }\n    },\n    \"checkoutkeys\": {\n        \"ConnectedAccountID\": \"acct_1OGxoVIYSStuzdEx\",\n        \"AccountCurrency\": \"AUD\"\n    }\n}"}],"_postman_id":"15e8b4a9-6e01-4140-ba76-46f71e7ca3b2"},{"name":"Void Invoice","event":[{"listen":"test","script":{"exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Expire Member Token\");"],"type":"text/javascript","id":"94fd20a7-af7f-4630-856c-e195687b4c2e"}}],"id":"1c9757d6-8f4f-4d28-a194-f4a6cde56581","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"invoiceid\":\"1566j98a142a09625v\",\r\n\t\"reason\":\"Reason\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/voidinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p>Voids an invoice.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvoiceID</td>\n<td>Required, the unique ID of the invoice that is to be voided</td>\n</tr>\n<tr>\n<td>Reason</td>\n<td>Optional, the reason the invoice is to be voided. An example may be the error response from a payment gateway</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<p>Only invoices of Pending status can be voided.</p>\n","urlObject":{"path":["voidinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"2dc73517-73fe-4625-87ab-41291440ae25","name":"Void Invoice (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"invoiceid\":\"1566j98a142a09625v\",\r\n\t\"reason\":\"Reason\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/voidinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 03 Jun 2020 04:59:41 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Code\": \"OK\"\n}"}],"_postman_id":"1c9757d6-8f4f-4d28-a194-f4a6cde56581"}],"id":"819b58e5-04ef-4d2a-ba8b-8df5527a3d36","_postman_id":"819b58e5-04ef-4d2a-ba8b-8df5527a3d36","description":""},{"name":"Member Cancel Subscription","item":[{"name":"Cancel Member Subscription","id":"c0bb0dad-2423-43e9-b5ca-f36f94e7867f","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true},"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/cancelmembersubscription/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cancelmembersubscription","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"ef41282f-b667-4d44-829a-ecf2d9200f3d","name":"Cancel Member Subscription (JSON)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/cancelmembersubscription/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 14 Aug 2023 06:00:48 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Code\": \"OK\"\n}"}],"_postman_id":"c0bb0dad-2423-43e9-b5ca-f36f94e7867f"}],"id":"3f196b94-60ed-493b-b108-860f56091093","_postman_id":"3f196b94-60ed-493b-b108-860f56091093","description":""},{"name":"Member Manage Plan Users Page","item":[{"name":"Get Member Group Members","id":"8e2aef77-6726-4b63-9f80-dd86d2e2443c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getmembergroupmembers/{{HM_ServiceAPI_MemberToken}}","description":"<p>This endpoint returns all the members who's part of the member group for the subscription plan of the logged in member.</p>\n","urlObject":{"path":["getmembergroupmembers","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"8da9185b-1bd9-4e6d-b083-736fcb1baf48","name":"Get Member Group Members (JSON)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","disabled":true}],"url":"{{HM_ServiceAPI_URL}}/getmembergroupmembers/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 17 Aug 2023 06:00:01 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Members\": [\n        {\n            \"ID\": \"71c50a6bf6b69915\",\n            \"MemberGroupID\": \"615c8b956d8b558a\",\n            \"MemberAccountID\": \"3f615bda047521e2\",\n            \"Username\": \"camila.schevenin@gmail.com\",\n            \"FirstName\": \"Camila\",\n            \"Surname\": \"Gmail\",\n            \"FullName\": \"Camila Gmail\",\n            \"Email\": \"camila.schevenin@gmail.com\",\n            \"Address1\": \"\",\n            \"Address2\": \"\",\n            \"Suburb\": \"\",\n            \"State\": \"\",\n            \"Country\": \"AU\",\n            \"Phone\": \"\",\n            \"Status\": \"Active\",\n            \"VerifiedEmail\": \"\",\n            \"IsOwner\": false\n        },\n        {\n            \"ID\": \"c238b6c4ed75c42f\",\n            \"MemberGroupID\": \"615c8b956d8b558a\",\n            \"MemberAccountID\": \"3a519b04c8a54ab8\",\n            \"Username\": \"camila@harvestmedia.net\",\n            \"FirstName\": \"First\",\n            \"Surname\": \"Last\",\n            \"FullName\": \"First Last\",\n            \"Email\": \"camila@harvestmedia.net\",\n            \"Address1\": \"Address Line 1\",\n            \"Address2\": \"Address Line 2\",\n            \"Suburb\": \"Suburb\",\n            \"State\": \"State\",\n            \"Country\": \"AU\",\n            \"Phone\": \"Phone\",\n            \"Status\": \"Active\",\n            \"VerifiedEmail\": \"\",\n            \"IsOwner\": true\n        }\n    ]\n}"}],"_postman_id":"8e2aef77-6726-4b63-9f80-dd86d2e2443c"},{"name":"Invite Member Subscription","event":[{"listen":"test","script":{"id":"0a513f1c-9154-434c-9899-236e75a70447","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Get Invoice Document\");"],"type":"text/javascript"}}],"id":"a6f52d4e-c10d-4d71-b50b-66bbafd97aee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"email\":\"camila.schevenin+2@gmail.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/invitemembersubscription/{{HM_ServiceAPI_MemberToken}}","description":"<p>Invites a user to be part of a team for plans that allows team members.</p>\n<ol>\n<li><p>If the invited user is already registered on Harvest, they will receive a Login welcome email notifying they're now part of the team with a Login link.</p>\n</li>\n<li><p>In case the invited user is not registered on Harvest, they will receive a Signup welcome email with a registration link notifying they need to finilize registration to be part of the team.</p>\n</li>\n</ol>\n","urlObject":{"path":["invitemembersubscription","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"56af27d2-5746-41b3-a4c9-1767a5386f62","name":"Invite Member Subscription (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"email\":\"camila.schevenin+2@gmail.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/invitemembersubscription/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 26 Oct 2023 05:16:41 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Code\": \"OK\"\n}"}],"_postman_id":"a6f52d4e-c10d-4d71-b50b-66bbafd97aee"},{"name":"Update Member Invitation","event":[{"listen":"test","script":{"id":"0a513f1c-9154-434c-9899-236e75a70447","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Get Invoice Document\");"],"type":"text/javascript"}}],"id":"028278f9-1e8e-41cf-821b-be14a36136e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"MemberAccountID\":\"4cb25c3dce07d543\",\r\n    \"email\":\"camila.schevenin+50@gmail.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updatesubscriptionmemberinvitation/{{HM_ServiceAPI_MemberToken}}","description":"<p>Updates the invitation of a user</p>\n<ol>\n<li><p>In case the invited user is an active member on Harvest it is not possible to revoke the invitation. In this case, the most suitable endpoint is <strong>removesubscriptionmember</strong>/ to effectivelly remove the member from the team to open up room to a new invitation.</p>\n</li>\n<li><p>In case the invited user is NOT an active member on Harvest, then it is possible to revoke the invitation via <strong>updatememberinvitation/</strong> passing the invited <strong>memberaccountID</strong> (returned by <strong>getmembergroupmembers/</strong>) along with the email address of the new user to be invited.</p>\n</li>\n</ol>\n","urlObject":{"path":["updatesubscriptionmemberinvitation","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"19fe3b5e-0fbf-461e-b492-ce3499ef0b18","name":"Update Member Invitation (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"MemberAccountID\":\"4cb25c3dce07d543\",\r\n    \"email\":\"camila.schevenin+50@gmail.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updatesubscriptionmemberinvitation/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 26 Oct 2023 05:17:24 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Code\": \"OK\"\n}"}],"_postman_id":"028278f9-1e8e-41cf-821b-be14a36136e4"},{"name":"Remove Subscription Member","event":[{"listen":"test","script":{"id":"0a513f1c-9154-434c-9899-236e75a70447","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Get Invoice Document\");"],"type":"text/javascript"}}],"id":"03b84231-f53e-4828-a849-4d5e061366f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"MemberGroupID\":\"3ee3c00341ce20f3\",\r\n    \"MemberAccountID\":\"05ba9870203be6f5\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/removesubscriptionmember/{{HM_ServiceAPI_MemberToken}}","description":"<p>Deletes an active member from the team informing the memberGroupID and the memberAccountID (both returned by <strong>getmembergroupmembers/</strong>) from the member to be removed.</p>\n","urlObject":{"path":["removesubscriptionmember","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"12689bbf-d43f-4ea3-a492-2b1efd0732a5","name":"Remove Subscription Member (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"MemberGroupID\":\"3ee3c00341ce20f3\",\r\n    \"MemberAccountID\":\"4dbb7f92a86867a2\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/removesubscriptionmember/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 26 Oct 2023 05:19:00 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Code\": \"OK\"\n}"}],"_postman_id":"03b84231-f53e-4828-a849-4d5e061366f1"},{"name":"Add Checkout Session","event":[{"listen":"test","script":{"id":"0a513f1c-9154-434c-9899-236e75a70447","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Get Invoice Document\");"],"type":"text/javascript","packages":{}}}],"id":"6ae870d7-5889-4ebb-8af6-6bbdc458ad3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL_Local}}/addcheckoutsession/{{HM_ServiceAPI_MemberToken}}","description":"<p>Return all keys needed to load a checkout session using Stripe components:</p>\n<ul>\n<li><p>Stripe API Key</p>\n</li>\n<li><p>Stripe Connected Account ID</p>\n</li>\n<li><p>ClientSecret</p>\n</li>\n</ul>\n<p>Refer to following documentation to learn how to load a checkout session with the keys provided: <a href=\"https://docs.stripe.com/payments/checkout/subscriptions/update-payment-details\">https://docs.stripe.com/payments/checkout/subscriptions/update-payment-details</a></p>\n","urlObject":{"path":["addcheckoutsession","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL_Local}}"],"query":[],"variable":[]}},"response":[{"id":"7a03680f-57f7-4d22-9a65-01469c2f3b63","name":"Add Checkout Session (JSON)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/addcheckoutsession/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 03 May 2024 07:30:11 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"checkoutkeys\": {\n        \"StripeAPIKey\": \"pk_live_51MjXTGINFIsu1VM9JVHrWU3kxWokmJKXrNX7mF7exPdByryYVziz2BnWXBNa8vFPbDVKab5KKbfWtIRAumtgwAWn00juQFO095\",\n        \"ConnectedAccountID\": \"acct_1NstsnREHvfJoFKj\",\n        \"AccountCurrency\": \"USD\"\n    },\n    \"checkoutdetail\": {\n        \"clientsecret\": \"cs_live_c1nobuMsAxXUzd7qOFGDpJ0k9jAjTVI80AfXNdCyroJeyJdcJfHVhprImz_secret_fidwbEhqYWAnPydgaGdgYWFgYScpJ2lkfGpwcVF8dWAnPyd2bGtiaWBaZmppcGhrJyknd2BhbHdgZnFKa0ZqaHVpYHFsamsnPydrYHNgdyd4JSUl\",\n        \"checkoutconfirmtype\": \"Setup\"\n    }\n}"}],"_postman_id":"6ae870d7-5889-4ebb-8af6-6bbdc458ad3d"}],"id":"7393328b-3ab6-4d1f-b0f4-9ac6840a91bb","description":"<p>This section provides endpoints to manage the group members of the subscription plan owner.</p>\n<ol>\n<li>Call <strong>getmembergroupmembers</strong>/ to return all active members of a plan</li>\n<li>Call <strong>invitemembersubscription</strong>/ with an email to invite a user to be part of a subscription plan.<ol>\n<li>If the invited user is already registered on Harvest, they will receive a Login welcome email notifying they're now part of the team with a Login link.</li>\n<li>In case the invited user is not registered on Harvest, they will receive a Signup welcome email with a registration link notifying they need to finilize registration to be part of the team.</li>\n</ol>\n</li>\n<li>Call <strong>updatememberinvitation</strong>/ to update the invitation of a user<ol>\n<li>In case the invited user is an active member on Harvest it is not possible to revoke the invitation. In this case, the most suitable endpoint is <strong>removesubscriptionmember</strong>/ to effectivelly remove the member from the team to open up room to a new invitation.</li>\n<li>In case the invited user is NOT an active member on Harvest, then it is possible to revoke the invitation via <strong>updatememberinvitation/</strong> passing the invited <strong>memberaccountID</strong> (returned by <strong>getmembergroupmembers/</strong>) along with the email address of the new user to be invited.</li>\n</ol>\n</li>\n<li>Call <strong>removesubscriptionmember/</strong> to delete an active member from the team informing the memberGroupID and the memberAccountID (both returned by <strong>getmembergroupmembers/</strong>) from the member to be removed.</li>\n</ol>\n","_postman_id":"7393328b-3ab6-4d1f-b0f4-9ac6840a91bb"},{"name":"Invited Members - Continuing Registration","item":[{"name":"Update Invited Member","id":"19672049-eac2-42d2-8f45-369f88aee6e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\t\"MemberAccount\":{\r\n\t\t\"ID\":\"41fca792ce84af9d\",\r\n\t\t\"FirstName\":\"First\",\r\n\t\t\"LastName\":\"Last\",\r\n\t\t\"Email\":\"camila@harvestmedia.net\",\r\n\t\t\"Company\":\"Company\",\r\n\t\t\"Production\":\"Production\",\r\n        \"SubProduction\":\"Sub Production\",\r\n\t\t\"Position\":\"Position\",\r\n\t\t\"Address1\":\"Address Line 1\",\r\n\t\t\"Address2\":\"Address Line 2\",\r\n\t\t\"Suburb\":\"Suburb\",\r\n\t\t\"State\":\"State\",\r\n\t\t\"Postcode\":\"Postcode\",\r\n\t\t\"Country\":\"AU\",\r\n\t\t\"Phone\":\"Phone\",\r\n\t\t\"UserName\":\"camila.schevenin@gmail.com\",\r\n\t    \"Password\":\"123456\",\r\n\t\t\"TermsAccept\":\"true\",\r\n\t\t\"PrivacyAccept\":\"true\",\r\n\t\t\"Subscribe\":\"true\",\r\n\t\t\"FileFormat\":\"mp3\",\r\n\t\t\"SearchFormat\":\"Track\",\r\n\t\t\"SearchSort\":\"New\",\r\n        \"Status\": \"Active\"\r\n\t},\r\n        \"Channels\": []\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updatemember/{{HM_IntegrationAPI_Token}}","urlObject":{"path":["updatemember","{{HM_IntegrationAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"e6931529-0174-4bcd-a8d8-155176a14c00","name":"Update Invited Member (JSON)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\t\"MemberAccount\":{\r\n\t\t\"ID\":\"41fca792ce84af9d\",\r\n\t\t\"FirstName\":\"Camila\",\r\n\t\t\"LastName\":\"Gmail\",\r\n\t\t\"Email\":\"camila.schevenin@gmail.com\",\r\n\t\t\"Company\":\"Company\",\r\n\t\t\"Production\":\"Production\",\r\n        \"SubProduction\":\"Sub Production\",\r\n\t\t\"Position\":\"Position\",\r\n\t\t\"Address1\":\"Address Line 1\",\r\n\t\t\"Address2\":\"Address Line 2\",\r\n\t\t\"Suburb\":\"Suburb\",\r\n\t\t\"State\":\"State\",\r\n\t\t\"Postcode\":\"Postcode\",\r\n\t\t\"Country\":\"AU\",\r\n\t\t\"Phone\":\"Phone\",\r\n\t\t\"UserName\":\"camila.schevenin@gmail.com\",\r\n\t    \"Password\":\"123456\",\r\n\t\t\"TermsAccept\":\"true\",\r\n\t\t\"PrivacyAccept\":\"true\",\r\n\t\t\"Subscribe\":\"true\",\r\n\t\t\"FileFormat\":\"mp3\",\r\n\t\t\"SearchFormat\":\"Track\",\r\n\t\t\"SearchSort\":\"New\",\r\n        \"Status\": \"Active\"\r\n\t},\r\n        \"Channels\": []\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updatemember/{{HM_IntegrationAPI_Token}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/10.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Date","value":"Tue, 24 Oct 2023 06:37:56 GMT","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"MemberAccount\": {\n        \"ID\": \"41fca792ce84af9d\",\n        \"FirstName\": \"Camila\",\n        \"LastName\": \"Gmail\",\n        \"Email\": \"camila.schevenin@gmail.com\",\n        \"Company\": \"Company\",\n        \"Production\": \"Production\",\n        \"SubProduction\": \"Sub Production\",\n        \"Position\": \"Position\",\n        \"Address1\": \"Address Line 1\",\n        \"Address2\": \"Address Line 2\",\n        \"Suburb\": \"Suburb\",\n        \"State\": \"State\",\n        \"Postcode\": \"Postcode\",\n        \"Country\": \"AU\",\n        \"Phone\": \"Phone\",\n        \"Username\": \"camila.schevenin@gmail.com\",\n        \"TermsAccept\": \"true\",\n        \"Subscribe\": \"true\",\n        \"FileFormat\": \"19b8f5935503adde\",\n        \"SearchFormat\": \"track\",\n        \"SearchSort\": \"fav\",\n        \"SampleEnabled\": \"true\",\n        \"Status\": \"active\",\n        \"RegionID\": \"88f8791e732f07e1\",\n        \"ServiceInfoURLs\": {\n            \"DirectDownloadURL\": \"https://elb-download-staging.harvestmedia.net/hmpdownload.php/{downloadtoken}\",\n            \"TrackStreamURL\": \"https://elb-staging.harvestmedia.net/assets/samples/ab597cc93b51db6c4bb340f8994ff9c522bc697c/{id}\",\n            \"ProfileImageURL\": \"https://elb-staging.harvestmedia.net/assets/memberprofile/ab597cc93b51db6c4bb340f8994ff9c522bc697c/{id}/{width}/{height}\",\n            \"AlbumMontageSampleURL\": \"https://elb-staging.harvestmedia.net/assets/samples/montage/ab597cc93b51db6c4bb340f8994ff9c522bc697c/{id}\",\n            \"AlbumArtURL\": \"https://elb-staging.harvestmedia.net/assets/albumart/037ca15b2f249c01d66620dc5003444ea3216710/{id}/{width}/{height}\",\n            \"WaveformURL\": \"https://elb-staging.harvestmedia.net/assets/waveforms/037ca15b2f249c01d66620dc5003444ea3216710/{id}/{width}/{height}\",\n            \"MontageWaveformURL\": \"https://elb-staging.harvestmedia.net/assets/waveforms/montage/037ca15b2f249c01d66620dc5003444ea3216710/{id}/{width}/{height}\",\n            \"LibraryLogoUrl\": \"https://elb-staging.harvestmedia.net/assets/librarylogo/037ca15b2f249c01d66620dc5003444ea3216710/{id}/{width}/{height}\",\n            \"PlaylistArtUrl\": \"https://elb-staging.harvestmedia.net/assets/playlistart/037ca15b2f249c01d66620dc5003444ea3216710/{id}/{width}/{height}\",\n            \"PlaylistCategoryArtUrl\": \"https://elb-staging.harvestmedia.net/assets/playlistcategoryart/037ca15b2f249c01d66620dc5003444ea3216710/{id}/{width}/{height}\",\n            \"RightHolderProfileUrl\": \"https://elb-staging.harvestmedia.net/assets/rightholderprofile/037ca15b2f249c01d66620dc5003444ea3216710/{id}/{width}/{height}\",\n            \"WaveformDataPointUrl\": \"https://elb-staging.harvestmedia.net/assets/waveform_data/ab597cc93b51db6c4bb340f8994ff9c522bc697c/{id}/{dataformat}\",\n            \"StyleArtUrl\": \"https://elb-staging.harvestmedia.net/assets/styleart/037ca15b2f249c01d66620dc5003444ea3216710/{id}/{width}/{height}\",\n            \"MemberGroupLogoUrl\": \"https://elb-staging.harvestmedia.net/assets/membergrouplogo/ab597cc93b51db6c4bb340f8994ff9c522bc697c/{id}/{width}/{height}\",\n            \"MemberGroupArtUrl\": \"https://elb-staging.harvestmedia.net/assets/membergroupart/ab597cc93b51db6c4bb340f8994ff9c522bc697c/{id}/{width}/{height}\",\n            \"MemberGroupProductionArtUrl\": \"https://elb-staging.harvestmedia.net/assets/membergroupproductionart/ab597cc93b51db6c4bb340f8994ff9c522bc697c/{id}/{width}/{height}\"\n        },\n        \"LanguageCode\": \"\",\n        \"Salutation\": \"\",\n        \"MemberTypeID\": \"\",\n        \"FileFormats\": [],\n        \"HasProfileImage\": false,\n        \"PrivacyAccept\": \"true\",\n        \"DownloadEnabled\": \"true\",\n        \"DownloadsRemaining\": \"NULL\",\n        \"DownloadEnabledType\": \"MemberGroup\",\n        \"DownloadLimit\": \"NULL\",\n        \"DownloadsUsed\": \"NULL\",\n        \"DownloadStem\": false,\n        \"MemberGroups\": [\n            {\n                \"ID\": \"3ee3c00341ce20f3\",\n                \"Name\": \"Camila Schevenin - Teams\",\n                \"AssignedRegionID\": \"88f8791e732f07e1\",\n                \"AssignedRegionChangeEnabled\": false,\n                \"Type\": \"Primary\",\n                \"ProductionsCount\": 0,\n                \"HasLogoArtWork\": false,\n                \"HasArtWork\": false\n            }\n        ]\n    },\n    \"MemberChannels\": []\n}"}],"_postman_id":"19672049-eac2-42d2-8f45-369f88aee6e1"}],"id":"c14892f7-09ec-43ac-b160-a03f1e23207b","description":"<p>An invited member will receive a link with either,</p>\n<ol>\n<li>Login redirect page, in case they're an active member on Harvest</li>\n<li>Registration redirect page, in case they're NOT an active member on Harvest</li>\n</ol>\n<p>For registrations scenarios that requires a user to continue their registration process, use the following update member endpoint with the memberaccountid received by the email URL route sending the status of the new member as \"Active\".</p>\n","_postman_id":"c14892f7-09ec-43ac-b160-a03f1e23207b"},{"name":"Member All Orders Page","item":[{"name":"Search Invoice","event":[{"listen":"test","script":{"id":"0a513f1c-9154-434c-9899-236e75a70447","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Get Invoice Document\");"],"type":"text/javascript"}}],"id":"e5e532ed-1362-430a-ace7-2d7a082f73f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"fromamount\":0,\r\n\t\"fromdate\":\"2023-01-01T22:19:27.95\",\r\n\t\"toamount\":1000,\r\n\t\"todate\":\"2024-03-16T22:19:27.95\",\r\n\t\"limit\":10,\r\n\t\"skip\":0,\r\n    \"ReturnInvoiceItems\": \"true\",\r\n    \"ReferenceLineItemType\": \"\",\r\n    \"Status\": \"Pending\"\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/searchinvoices/{{HM_ServiceAPI_MemberToken}}","description":"<p>Search invoices by amounts and dates.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FromAmount</td>\n<td>Optional, default value is 0. The lower invoice amount for which to filter by</td>\n</tr>\n<tr>\n<td>FromDate</td>\n<td>Optional, the lower due date for which to filter by</td>\n</tr>\n<tr>\n<td>ToAmount</td>\n<td>Optional, the upper invoice amount for which to filter by</td>\n</tr>\n<tr>\n<td>ToDate</td>\n<td>Optional, the upper due date for which to filter by</td>\n</tr>\n<tr>\n<td>Skip</td>\n<td>Optional, the number of results to skip</td>\n</tr>\n<tr>\n<td>Limit</td>\n<td>Required, the number of results to return</td>\n</tr>\n<tr>\n<td>ReferenceLineItemType</td>\n<td>Optional, the type of reference line item to be filtered; possible values are: Album, Track or Subscription</td>\n</tr>\n<tr>\n<td>Status</td>\n<td>Optional, the invoice status to return; possible values are: Pending, Void, Paid, Draft, Processing or Deleted</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["searchinvoices","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"f1842ce9-7f42-4a47-9dbe-634a88955513","name":"Search Invoice (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"fromamount\":0,\r\n\t\"fromdate\":\"2022-01-01T22:19:27.95\",\r\n\t\"toamount\":1000,\r\n\t\"todate\":\"2024-03-16T22:19:27.95\",\r\n\t\"limit\":2,\r\n\t\"skip\":0,\r\n    \"ReturnInvoiceItems\": \"true\",\r\n    \"ReferenceLineItemType\": \"Subscription\",\r\n    \"Status\": \"\"\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/searchinvoices/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 04 Mar 2024 10:07:23 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoices\": [\n        {\n            \"id\": \"c6046f703d69aadb\",\n            \"memberaccountid\": \"3ba56309c1506b53\",\n            \"issuedate\": \"2024-02-14T18:20:43.17\",\n            \"duedate\": \"2024-02-14T18:20:43.58\",\n            \"UTCOffset\": 11,\n            \"totaltax\": 0,\n            \"subtotal\": 1,\n            \"total\": 1,\n            \"invoicelineitems\": [\n                {\n                    \"amount\": 1,\n                    \"description\": \"Member Subscription - Company (Monthly)\",\n                    \"quantity\": 1,\n                    \"amounttax\": 0,\n                    \"subscription\": {\n                        \"id\": \"5a2f797f4a3d59a5\",\n                        \"planname\": \"Company\",\n                        \"period\": \"Monthly\",\n                        \"downloadlimit\": \"Unlimited\",\n                        \"allowteam\": true,\n                        \"teammembers\": 4,\n                        \"channellimitsetting\": \"Unlimited\"\n                    }\n                }\n            ],\n            \"invoicenumber\": 428,\n            \"paidamount\": 0,\n            \"status\": \"Pending\",\n            \"membername\": \"Company - First Last (camila+1@harvestmedia.net)\",\n            \"currencycode\": \"USD\",\n            \"billingdetails\": {\n                \"FullName\": \"Camila Schevenin da Silva\",\n                \"CompanyName\": \"Harvest\",\n                \"Address1\": \"\",\n                \"Address2\": \"\",\n                \"City\": \"\",\n                \"State\": \"\",\n                \"PostalCode\": \"GU16 7HF\",\n                \"Country\": \"AU\"\n            }\n        },\n        {\n            \"id\": \"05e60ee0f23c38ce\",\n            \"memberaccountid\": \"3ba56309c1506b53\",\n            \"issuedate\": \"2024-02-13T19:20:45.33\",\n            \"duedate\": \"2024-02-13T19:20:46.05\",\n            \"UTCOffset\": 11,\n            \"totaltax\": 0,\n            \"subtotal\": 1,\n            \"total\": 1,\n            \"invoicelineitems\": [\n                {\n                    \"amount\": 1,\n                    \"description\": \"Member Subscription - Company (Monthly)\",\n                    \"quantity\": 1,\n                    \"amounttax\": 0,\n                    \"subscription\": {\n                        \"id\": \"5a2f797f4a3d59a5\",\n                        \"planname\": \"Company\",\n                        \"period\": \"Monthly\",\n                        \"downloadlimit\": \"Unlimited\",\n                        \"allowteam\": true,\n                        \"teammembers\": 4,\n                        \"channellimitsetting\": \"Unlimited\"\n                    }\n                }\n            ],\n            \"invoicenumber\": 417,\n            \"paidamount\": 0,\n            \"status\": \"Pending\",\n            \"membername\": \"Company - First Last (camila+1@harvestmedia.net)\",\n            \"currencycode\": \"USD\",\n            \"billingdetails\": {\n                \"FullName\": \"Camila Schevenin da Silva\",\n                \"CompanyName\": \"Harvest\",\n                \"Address1\": \"\",\n                \"Address2\": \"\",\n                \"City\": \"\",\n                \"State\": \"\",\n                \"PostalCode\": \"2017\",\n                \"Country\": \"AU\"\n            }\n        }\n    ],\n    \"total\": 2\n}"}],"_postman_id":"e5e532ed-1362-430a-ace7-2d7a082f73f2"},{"name":"Get Invoice Download URL","event":[{"listen":"test","script":{"id":"0a513f1c-9154-434c-9899-236e75a70447","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Get Invoice Document\");"],"type":"text/javascript"}}],"id":"cf75a66c-b9a3-4156-8e7a-0d07580d553b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getinvoicedownloadurl/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_InvoiceID}}","description":"<p>Search invoices by amounts and dates.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FromAmount</td>\n<td>Optional, default value is 0. The lower invoice amount for which to filter by</td>\n</tr>\n<tr>\n<td>FromDate</td>\n<td>Optional, the lower due date for which to filter by</td>\n</tr>\n<tr>\n<td>ToAmount</td>\n<td>Optional, the upper invoice amount for which to filter by</td>\n</tr>\n<tr>\n<td>ToDate</td>\n<td>Optional, the upper due date for which to filter by</td>\n</tr>\n<tr>\n<td>Skip</td>\n<td>Optional, the number of results to skip</td>\n</tr>\n<tr>\n<td>Limit</td>\n<td>Required, the number of results to return</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["getinvoicedownloadurl","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_InvoiceID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"6b95f751-89c5-4c00-8490-97eb04092153","name":"Get Invoice Download URL","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getinvoicedownloadurl/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_InvoiceID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 29 Feb 2024 05:34:09 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Url\": \"https://d2zsljmk3mm9kv.cloudfront.net/CDN/downloads/invoices/e072a9105fd2f362/bd394687-3f7f-4c09-80e6-56a9393f6202/CAMILA_SCHEVENIN DA SILVA_HTN-INV137.pdf\"\n}"}],"_postman_id":"cf75a66c-b9a3-4156-8e7a-0d07580d553b"}],"id":"facaac6a-14d5-4338-8d06-d75acf6c3c03","_postman_id":"facaac6a-14d5-4338-8d06-d75acf6c3c03","description":""},{"name":"Enterprise","item":[{"name":"Authenticate Member, Generate Persistent Member Token & Check Pending Invoices","event":[{"listen":"test","script":{"id":"96bedff0-63bb-453c-a378-e0f65ab429a7","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","var jsonData = null;","var jsonDataToken = \"\";","var jsonDataPersistentToken = \"\";","","var jsonInvoiceData = null;","var jsonDataInvoiceID = \"\";","var jsonDataInvoiceTotal = \"\";","","if (responseBody.indexOf(\"<?xml\") >= 0) {","    jsonData = xml2Json(responseBody);","    jsonDataToken = jsonData.responsemembertoken.membertoken.$.value;","    jsonDataPersistentToken = jsonData.responsemembertoken.persistentlogintoken.$.token;","","    jsonInvoiceData = jsonData.invoices","    jsonDataInvoiceID = jsonInvoiceData.id;","    jsonDataInvoiceTotal = jsonInvoiceData.total;","} else {","    jsonData = JSON.parse(responseBody)","    jsonDataToken = jsonData.MemberToken.Value;","    jsonDataPersistentToken = jsonData.PersistentLoginToken.Token;","","    jsonInvoiceData = jsonData.Invoices[0];","    jsonDataInvoiceID = jsonInvoiceData.id;","    jsonDataInvoiceTotal = jsonInvoiceData.total;","}","","postman.setEnvironmentVariable(\"HM_ServiceAPI_MemberToken\", jsonDataToken);","postman.setEnvironmentVariable(\"HM_ServiceAPI_MemberPersistentToken\", jsonDataPersistentToken);","postman.setEnvironmentVariable(\"HM_ServiceAPI_MemberTokenIsLoggedMember\", \"true\");","postman.setEnvironmentVariable(\"HM_ServiceAPI_EnterpriseInvoiceID\", jsonDataInvoiceID);","postman.setEnvironmentVariable(\"HM_ServiceAPI_EnterpriseInvoiceTotal\", jsonDataInvoiceTotal);","","","console.log(\"HM_ServiceAPI_MemberToken set to \" + jsonDataToken);","console.log(\"HM_ServiceAPI_MemberPersistentToken set to \" + jsonDataPersistentToken);","console.log(\"HM_ServiceAPI_MemberTokenIsLoggedMember set to true\");","","console.log(\"HM_ServiceAPI_EnterpriseInvoiceID set to \" + jsonDataInvoiceID);","console.log(\"HM_ServiceAPI_EnterpriseInvoiceTotal set to \" + jsonDataInvoiceTotal);","","postman.setNextRequest(\"Get Member Details\");",""],"type":"text/javascript"}}],"id":"b74c0dfd-6331-4a0f-9f87-dfa33836b5f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"UserName\":\"{{HM_ServiceAPI_MemberUsername}}\",\r\n\t\"Password\":\"{{HM_ServiceAPI_MemberPassword}}\",\r\n\t\"PersistentLogin\":true,\r\n\t\"ReturnMemberDetails\":false,\r\n    \"ReturnMemberSubscriptionDetails\":true\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getmembertoken/{{HM_IntegrationAPI_Token}}","description":"<p>The following method should be used for member login. </p>\n<p>It will return a member token as well as a persistent login token if if requested by passing 'true' to <code>&lt;persistentlogin&gt;</code> element in the request body.</p>\n<p>The persistent login token can be saved to member's cookie for reuse in future site accesses.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ServiceToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["getmembertoken","{{HM_IntegrationAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"3ec1da7f-0c87-4f85-99c2-955f71e35816","name":"Authenticate Member, Generate Persistent Member Token & Check Pending Invoices (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"UserName\":\"{{HM_ServiceAPI_MemberUsername}}\",\r\n\t\"Password\":\"{{HM_ServiceAPI_MemberPassword}}\",\r\n\t\"PersistentLogin\":true,\r\n\t\"ReturnMemberDetails\":false,\r\n    \"ReturnMemberSubscriptionDetails\":true\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getmembertoken/{{HM_IntegrationAPI_Token}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 27 Oct 2023 00:07:12 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"MemberToken\": {\n        \"Value\": \"a00054fce9fcf8f89cd3c3bc145bd287\",\n        \"Expiry\": \"2023-10-28T11:07:12.443\",\n        \"UTCOffset\": 11,\n        \"Type\": \"MemberToken\",\n        \"IsOfSingleUse\": false\n    },\n    \"PersistentLoginToken\": {\n        \"Token\": \"b1d5b183a1304fb883d11359ec71a72c\",\n        \"Expiry\": \"2024-01-25T11:07:12.477\",\n        \"UTCOffset\": 11\n    },\n    \"MemberAccount\": {\n        \"HasProfileImage\": false,\n        \"DownloadEnabledType\": \"Member\"\n    },\n    \"ExpiredSubscriptions\": [\n        {\n            \"SubscriptionID\": \"f005ea25ae1dd914\",\n            \"Name\": \"Individual\",\n            \"Period\": \"Monthly\",\n            \"Description\": \"\",\n            \"IsFeatured\": true,\n            \"AllowBadges\": false,\n            \"BadgeDisplayTitle\": \"\",\n            \"Channels\": \"\",\n            \"DownloadLimit\": \"Unlimited\",\n            \"AllowTeam\": false,\n            \"AllowedTeamMembers\": 0,\n            \"SignUpDate\": \"2023-10-23T17:09:04.337\",\n            \"ExpiryDate\": \"2023-11-23T17:09:04.337\",\n            \"CancellationRequestDate\": \"2023-10-23T18:18:53.427\",\n            \"Status\": \"Cancelled\",\n            \"CancellationReason\": \"\"\n        },\n        {\n            \"SubscriptionID\": \"f005ea25ae1dd914\",\n            \"Name\": \"Individual\",\n            \"Period\": \"Monthly\",\n            \"Description\": \"\",\n            \"IsFeatured\": true,\n            \"AllowBadges\": false,\n            \"BadgeDisplayTitle\": \"\",\n            \"Channels\": \"\",\n            \"DownloadLimit\": \"Unlimited\",\n            \"AllowTeam\": false,\n            \"AllowedTeamMembers\": 0,\n            \"SignUpDate\": \"2023-10-23T18:19:46.707\",\n            \"ExpiryDate\": \"2023-11-23T18:19:46.707\",\n            \"CancellationRequestDate\": \"2023-10-23T20:57:30.517\",\n            \"Status\": \"Cancelled\",\n            \"CancellationReason\": \"\"\n        },\n        {\n            \"SubscriptionID\": \"75dede2132980b59\",\n            \"Name\": \"Teams\",\n            \"Period\": \"Monthly\",\n            \"Description\": \"\",\n            \"IsFeatured\": true,\n            \"AllowBadges\": false,\n            \"BadgeDisplayTitle\": \"\",\n            \"Channels\": \"\",\n            \"DownloadLimit\": \"Unlimited\",\n            \"AllowTeam\": true,\n            \"AllowedTeamMembers\": 2,\n            \"SignUpDate\": \"2023-10-24T09:48:12.5\",\n            \"ExpiryDate\": \"2023-11-24T09:48:12.5\",\n            \"CancellationRequestDate\": \"2023-10-24T10:10:40.677\",\n            \"Status\": \"Cancelled\",\n            \"CancellationReason\": \"\"\n        },\n        {\n            \"SubscriptionID\": \"75dede2132980b59\",\n            \"Name\": \"Teams\",\n            \"Period\": \"Monthly\",\n            \"Description\": \"\",\n            \"IsFeatured\": true,\n            \"AllowBadges\": false,\n            \"BadgeDisplayTitle\": \"\",\n            \"Channels\": \"\",\n            \"DownloadLimit\": \"Unlimited\",\n            \"AllowTeam\": true,\n            \"AllowedTeamMembers\": 2,\n            \"SignUpDate\": \"2023-10-24T10:11:35.973\",\n            \"ExpiryDate\": \"2023-11-24T10:11:35.973\",\n            \"CancellationRequestDate\": \"2023-10-24T14:52:45.463\",\n            \"Status\": \"Cancelled\",\n            \"CancellationReason\": \"\"\n        },\n        {\n            \"SubscriptionID\": \"75dede2132980b59\",\n            \"Name\": \"Teams\",\n            \"Period\": \"Monthly\",\n            \"Description\": \"\",\n            \"IsFeatured\": true,\n            \"AllowBadges\": false,\n            \"BadgeDisplayTitle\": \"\",\n            \"Channels\": \"\",\n            \"DownloadLimit\": \"Unlimited\",\n            \"AllowTeam\": true,\n            \"AllowedTeamMembers\": 2,\n            \"SignUpDate\": \"2023-10-24T14:53:06.143\",\n            \"ExpiryDate\": \"2023-11-24T14:53:06.143\",\n            \"CancellationRequestDate\": \"2023-10-24T17:25:58.117\",\n            \"Status\": \"Cancelled\",\n            \"CancellationReason\": \"Cancelled by member\"\n        },\n        {\n            \"SubscriptionID\": \"75dede2132980b59\",\n            \"Name\": \"Teams\",\n            \"Period\": \"Monthly\",\n            \"Description\": \"\",\n            \"IsFeatured\": true,\n            \"AllowBadges\": false,\n            \"BadgeDisplayTitle\": \"\",\n            \"Channels\": \"\",\n            \"DownloadLimit\": \"Unlimited\",\n            \"AllowTeam\": true,\n            \"AllowedTeamMembers\": 2,\n            \"SignUpDate\": \"2023-10-24T17:26:25.337\",\n            \"ExpiryDate\": \"2023-11-24T17:26:25.337\",\n            \"CancellationRequestDate\": \"2023-10-26T10:46:24.003\",\n            \"Status\": \"Cancelled\",\n            \"CancellationReason\": \"Cancelled by admin\"\n        },\n        {\n            \"SubscriptionID\": \"75dede2132980b59\",\n            \"Name\": \"Teams\",\n            \"Period\": \"Monthly\",\n            \"Description\": \"\",\n            \"IsFeatured\": true,\n            \"AllowBadges\": false,\n            \"BadgeDisplayTitle\": \"\",\n            \"Channels\": \"\",\n            \"DownloadLimit\": \"Unlimited\",\n            \"AllowTeam\": true,\n            \"AllowedTeamMembers\": 2,\n            \"SignUpDate\": \"2023-10-26T10:55:28.58\",\n            \"ExpiryDate\": \"2023-11-26T10:55:28.58\",\n            \"CancellationRequestDate\": \"2023-10-26T12:12:30.487\",\n            \"Status\": \"Cancelled\",\n            \"CancellationReason\": \"Cancelled by admin\"\n        },\n        {\n            \"SubscriptionID\": \"75dede2132980b59\",\n            \"Name\": \"Teams\",\n            \"Period\": \"Monthly\",\n            \"Description\": \"\",\n            \"IsFeatured\": true,\n            \"AllowBadges\": false,\n            \"BadgeDisplayTitle\": \"\",\n            \"Channels\": \"\",\n            \"DownloadLimit\": \"Unlimited\",\n            \"AllowTeam\": true,\n            \"AllowedTeamMembers\": 2,\n            \"SignUpDate\": \"2023-10-26T14:41:18.283\",\n            \"ExpiryDate\": \"2023-11-26T14:41:18.283\",\n            \"CancellationRequestDate\": \"2023-10-26T15:55:14.84\",\n            \"Status\": \"Cancelled\",\n            \"CancellationReason\": \"Cancelled by admin\"\n        },\n        {\n            \"SubscriptionID\": \"75dede2132980b59\",\n            \"Name\": \"Teams\",\n            \"Period\": \"Monthly\",\n            \"Description\": \"\",\n            \"IsFeatured\": true,\n            \"AllowBadges\": false,\n            \"BadgeDisplayTitle\": \"\",\n            \"Channels\": \"\",\n            \"DownloadLimit\": \"Unlimited\",\n            \"AllowTeam\": true,\n            \"AllowedTeamMembers\": 2,\n            \"SignUpDate\": \"2023-10-26T15:56:09.86\",\n            \"ExpiryDate\": \"2023-11-26T15:56:09.86\",\n            \"CancellationRequestDate\": \"2023-10-26T16:12:44.153\",\n            \"Status\": \"Cancelled\",\n            \"CancellationReason\": \"Cancelled by member\"\n        },\n        {\n            \"SubscriptionID\": \"75dede2132980b59\",\n            \"Name\": \"Teams\",\n            \"Period\": \"Monthly\",\n            \"Description\": \"\",\n            \"IsFeatured\": true,\n            \"AllowBadges\": false,\n            \"BadgeDisplayTitle\": \"\",\n            \"Channels\": \"\",\n            \"DownloadLimit\": \"Unlimited\",\n            \"AllowTeam\": true,\n            \"AllowedTeamMembers\": 2,\n            \"SignUpDate\": \"2023-10-26T16:13:11.627\",\n            \"ExpiryDate\": \"2023-11-26T16:13:11.627\",\n            \"CancellationRequestDate\": \"2023-10-27T10:00:43.36\",\n            \"Status\": \"Cancelled\",\n            \"CancellationReason\": \"Cancelled by admin\"\n        }\n    ],\n    \"Invoices\": [\n        {\n            \"id\": \"beca679179f5b090\",\n            \"memberaccountid\": \"92662dfe696a497f\",\n            \"issuedate\": \"2023-10-24T09:41:19.48\",\n            \"duedate\": \"2023-10-24T09:41:19.48\",\n            \"totaltax\": 1.5,\n            \"subtotal\": 15,\n            \"total\": 16.5,\n            \"invoicelineitems\": [\n                {\n                    \"amount\": 15,\n                    \"description\": \"Member Subscription - Individual (Monthly)\",\n                    \"quantity\": 1,\n                    \"amounttax\": 1.5,\n                    \"subscription\": {\n                        \"id\": \"f005ea25ae1dd914\",\n                        \"planname\": \"Individual\",\n                        \"period\": \"Monthly\",\n                        \"downloadlimit\": \"Unlimited\",\n                        \"allowteam\": false,\n                        \"teammembers\": 0,\n                        \"channellimitsetting\": \"Disabled\"\n                    }\n                }\n            ],\n            \"invoicenumber\": 115,\n            \"status\": \"Pending\",\n            \"currencycode\": \"AUD\",\n            \"billingdetails\": {\n                \"FullName\": \"cs-test-card\",\n                \"CompanyName\": \"company\",\n                \"Address1\": \"addr 1\",\n                \"Address2\": \"addr 2\",\n                \"City\": \"city\",\n                \"State\": \"state\",\n                \"PostalCode\": \"postal\",\n                \"Country\": \"AU\"\n            }\n        },\n        {\n            \"id\": \"9c444d40e76a3522\",\n            \"memberaccountid\": \"92662dfe696a497f\",\n            \"issuedate\": \"2023-10-27T10:01:07.803\",\n            \"duedate\": \"2023-11-03T10:01:07.803\",\n            \"totaltax\": 1,\n            \"subtotal\": 9.99,\n            \"total\": 10.99,\n            \"invoicelineitems\": [\n                {\n                    \"amount\": 9.99,\n                    \"description\": \"Group (Monthlhy)\",\n                    \"quantity\": 1,\n                    \"amounttax\": 1,\n                    \"subscription\": {\n                        \"id\": \"7907138b683424f4\",\n                        \"planname\": \"Group\",\n                        \"period\": \"Monthly\",\n                        \"downloadlimit\": \"Unlimited\",\n                        \"allowteam\": true,\n                        \"teammembers\": 2,\n                        \"channellimitsetting\": \"Disabled\"\n                    }\n                }\n            ],\n            \"invoicenumber\": 126,\n            \"status\": \"Pending\",\n            \"currencycode\": \"\",\n            \"billingdetails\": {\n                \"FullName\": \"Camila Schevenin\",\n                \"CompanyName\": \"harvest\",\n                \"Address1\": \"\",\n                \"Address2\": \"\",\n                \"City\": \"\",\n                \"State\": \"\",\n                \"PostalCode\": \"\",\n                \"Country\": \"AU\"\n            }\n        }\n    ],\n    \"MemberChannels\": []\n}"}],"_postman_id":"b74c0dfd-6331-4a0f-9f87-dfa33836b5f1"},{"name":"Pay Invoice","event":[{"listen":"test","script":{"id":"daa1a982-c9f6-47a9-a621-51b142d6ae5f","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Search Invoice\");"],"type":"text/javascript"}}],"id":"d671bbed-a313-493d-be61-f3ba6504c5b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoicepayment\": {\r\n        \"invoiceid\": \"{{HM_ServiceAPI_InvoiceID}}\",\r\n        \"amount\": \"{{HM_ServiceAPI_InvoiceTotal}}\",\r\n        \"contactname\": \"camila@harvestmedia.net\",\r\n        \"date\": \"2023-10-27T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"paymentreferencenumber\": \"\",\r\n        \"paymentstatus\": \"Paid\",\r\n        \"cardinfo\": {\r\n            \"number\": \"5555555555554444\",\r\n            \"month\": \"10\",\r\n            \"year\": \"2027\",\r\n            \"cvc\": \"123\"\r\n        }\r\n    }\r\n}"},"url":"{{HM_ServiceAPI_URL}}/payinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p>Pays a pending state invoice.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Payment</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvoiceID</td>\n<td>Required, the unique ID of the invoice that is moving to a paid status</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>Required, the amount of the associated invoice that was paid</td>\n</tr>\n<tr>\n<td>ContactName</td>\n<td>Required, the name to be associated against the payment</td>\n</tr>\n<tr>\n<td>Date</td>\n<td>Required, the date payment was made</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td>Required, possible values are; \"CreditCard\", or \"PayPal\"</td>\n</tr>\n<tr>\n<td>PaymentReferenceNumber</td>\n<td>Required, possible values are; \"CreditCard\", or \"PayPal\"</td>\n</tr>\n<tr>\n<td>PaymentStatus</td>\n<td>Required, the unique payment reference number returned from the payment gateway</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: CardInfo (Required for Subscription)</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Number</td>\n<td>Required, the encrypted card number .</td>\n</tr>\n<tr>\n<td>Month</td>\n<td>Required, credit card expiry month.</td>\n</tr>\n<tr>\n<td>Year</td>\n<td>Required, credit card expiry year.</td>\n</tr>\n<tr>\n<td>CVC</td>\n<td>Required, credit card CVC digits</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Misc</strong></p>\n<p>There should be one of these for every unique item on the invoice.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SendEmail</td>\n<td>Optional, default value is false. If true an email will be sent with an associated PDF invoice attached to it</td>\n</tr>\n<tr>\n<td>BCCEmail</td>\n<td>Optional, email address to be BCC'd. This is not a comma-separated list of email addresses, but rather a single email address</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<p>On invoice creation success, the response will be the invoice that was paid. This will contain the relevant InvoiceID that will be needed to mark the invoice as paid or to retrieve it.</p>\n","urlObject":{"path":["payinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"bbb1f585-c72d-4c07-a765-a00f8f637306","name":"Pay Invoice (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoicepayment\": {\r\n        \"invoiceid\": \"{{HM_ServiceAPI_InvoiceID}}\",\r\n        \"amount\": \"{{HM_ServiceAPI_InvoiceTotal}}\",\r\n        \"contactname\": \"camila@harvestmedia.net\",\r\n        \"date\": \"2023-10-27T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"paymentreferencenumber\": \"\",\r\n        \"paymentstatus\": \"Paid\",\r\n        \"cardinfo\": {\r\n            \"number\": \"5555555555554444\",\r\n            \"month\": \"10\",\r\n            \"year\": \"2027\",\r\n            \"cvc\": \"123\"\r\n        }\r\n    }\r\n}"},"url":"{{HM_ServiceAPI_URL}}/payinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 27 Oct 2023 00:07:42 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"beca679179f5b090\",\n        \"memberaccountid\": \"92662dfe696a497f\",\n        \"issuedate\": \"2023-10-24T09:41:19.48\",\n        \"duedate\": \"2023-10-24T09:41:19.48\",\n        \"totaltax\": 1.5,\n        \"subtotal\": 15,\n        \"total\": 16.5,\n        \"invoicenumber\": 115,\n        \"status\": \"Paid\",\n        \"currencycode\": \"AUD\"\n    }\n}"}],"_postman_id":"d671bbed-a313-493d-be61-f3ba6504c5b7"},{"name":"Update Member Details","event":[{"listen":"test","script":{"id":"db08cb3a-d0e9-471c-9df7-fe14c569fb7d","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Update Member Details (MT)\");"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"ab8a07bc-ff4a-4233-b418-2859e84cde11","exec":["var newUsername = postman.getEnvironmentVariable(\"HM_ServiceAPI_Token\") + \"-user-u\";","","postman.setEnvironmentVariable(\"HM_ServiceAPI_NewMemberUsername\", newUsername);"],"type":"text/javascript"}}],"id":"130e387a-da9e-4078-9ec1-dc6340eac903","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"MemberAccount\": {\r\n        \"ID\": \"{{HM_ServiceAPI_MemberAccountID}}\",\r\n        \"FirstName\": \"First\",\r\n        \"LastName\": \"Last\",\r\n        \"Email\": \"{{HM_ServiceAPI_MemberUsername}}\",\r\n        \"Company\": \"Company\",\r\n        \"Production\": \"Production\",\r\n        \"SubProduction\": \"Sub Production\",\r\n        \"Position\": \"Position\",\r\n        \"Address1\": \"Address Line 1\",\r\n        \"Address2\": \"Address Line 2\",\r\n        \"Suburb\": \"Suburb\",\r\n        \"State\": \"State\",\r\n        \"Postcode\": \"1234\",\r\n        \"Country\": \"AU\",\r\n        \"Phone\": \"Phone\",\r\n        \"TermsAccept\": \"true\",\r\n        \"UserName\": \"{{HM_ServiceAPI_MemberUsername}}\",\r\n        \"Password\": \"{{HM_ServiceAPI_MemberPassword}}\",\r\n        \"PrivacyAccept\": \"true\",\r\n        \"Subscribe\": \"true\",\r\n        \"FileFormat\": \"mp3\",\r\n        \"SearchFormat\": \"Track\",\r\n        \"SearchSort\": \"New\",\r\n        \"Status\": \"Active\"\r\n    },\r\n    \"Channels\": []\r\n}"},"url":"{{HM_ServiceAPI_URL}}/updatemember/{{HM_IntegrationAPI_Token}}","description":"<p>Updates an existing member account.</p>\n<p>Will return an error if the request data is not valid.</p>\n<p>Upon a successful update, no email notifications will be sent to the Member or Administrator.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ServiceToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<p>These parameters will be shared between “first search” and “search within results”.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FirstName</td>\n<td>Required, first name of the member.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>Required, last name of the member.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>Required, email of the member.</td>\n</tr>\n<tr>\n<td>Company</td>\n<td>Required, company of the member.</td>\n</tr>\n<tr>\n<td>Production</td>\n<td>Optional, production of the member.</td>\n</tr>\n<tr>\n<td>SubProduction</td>\n<td>Optional, sub production of the member.</td>\n</tr>\n<tr>\n<td>Position</td>\n<td>Optional, position of the member.</td>\n</tr>\n<tr>\n<td>Address1</td>\n<td>Optional, address 1 of the member</td>\n</tr>\n<tr>\n<td>Address2</td>\n<td>Optional, address 2 of the member.</td>\n</tr>\n<tr>\n<td>Suburb</td>\n<td>Optional, suburb of the member.</td>\n</tr>\n<tr>\n<td>State</td>\n<td>Optional, state of the member.</td>\n</tr>\n<tr>\n<td>Postcode</td>\n<td>Optional, post code of the member.</td>\n</tr>\n<tr>\n<td>Country</td>\n<td>Required, country of the member.</td>\n</tr>\n<tr>\n<td>Phone</td>\n<td>Optional, phone contact of the member.</td>\n</tr>\n<tr>\n<td>Username</td>\n<td>Required, username of the member.</td>\n</tr>\n<tr>\n<td>Password</td>\n<td>Optional, password of the member. If not provided, a random password will be assigned</td>\n</tr>\n<tr>\n<td>TermsAccept</td>\n<td>Required, agreement to the terms &amp; conditions for the member.</td>\n</tr>\n<tr>\n<td>PrivacyAccept</td>\n<td>Optional, agreement to the privacy policy for the member.</td>\n</tr>\n<tr>\n<td>Subscribe</td>\n<td>Optional, subscription to newsletters for the member.</td>\n</tr>\n<tr>\n<td>FileFormat</td>\n<td>Optional, default download file format. Possible values include MP3, WAV, AIFF or a file format ID</td>\n</tr>\n<tr>\n<td>SearchFormat</td>\n<td>Optional, default search format. Possible values include Track, Album and Playlist</td>\n</tr>\n<tr>\n<td>SearchSort</td>\n<td>Optional, default search sorting. Possible values include New and Random, where New is release date descending</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Member Channels</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Platform</td>\n<td>Required, the Platform of the channel. Accepted values: \"Facebook\", \"Instagram\", \"TikTok\", \"Youtube\", \"Twitter\", \"Twitch\", \"Others\".</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>The URL of the social media</td>\n</tr>\n<tr>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["updatemember","{{HM_IntegrationAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"753ce7da-5cee-4bab-befa-8363614b442b","name":"Update Member Details (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"MemberAccount\":{\r\n\t\t\"ID\":\"3a5fo20b4827354281\",\r\n\t\t\"FirstName\":\"First\",\r\n\t\t\"LastName\":\"Last\",\r\n\t\t\"Email\":\"email@domain.com\",\r\n\t\t\"Company\":\"Company\",\r\n\t\t\"Production\":\"Production\",\r\n        \"SubProduction\":\"Sub Production\",\r\n\t\t\"Position\":\"Position\",\r\n\t\t\"Address1\":\"Address Line 1\",\r\n\t\t\"Address2\":\"Address Line 2\",\r\n\t\t\"Suburb\":\"Suburb\",\r\n\t\t\"State\":\"State\",\r\n\t\t\"Postcode\":\"1234\",\r\n\t\t\"Country\":\"AU\",\r\n\t\t\"Phone\":\"Phone\",\r\n\t\t\"TermsAccept\":\"true\",\r\n        \"UserName\":\"email@domain.com\",\r\n\t    \"Password\":\"Password\",\r\n\t\t\"PrivacyAccept\":\"true\",\r\n\t\t\"Subscribe\":\"true\",\r\n\t\t\"FileFormat\":\"mp3\",\r\n\t\t\"SearchFormat\":\"Track\",\r\n\t\t\"SearchSort\":\"New\",\r\n        \"Status\": \"Active\"\r\n\t},\r\n    \"Channels\": [\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updatemember/{{HM_IntegrationAPI_Token}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 30 Oct 2023 04:14:06 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"MemberAccount\": {\n        \"ID\": \"3a5fo20b4827354281\",\n        \"FirstName\": \"First\",\n        \"LastName\": \"Last\",\n        \"Email\": \"email@domain.com\",\n        \"Company\": \"Company\",\n        \"Production\": \"Production\",\n        \"SubProduction\": \"Sub Production\",\n        \"Position\": \"Position\",\n        \"Address1\": \"Address Line 1\",\n        \"Address2\": \"Address Line 2\",\n        \"Suburb\": \"Suburb\",\n        \"State\": \"State\",\n        \"Postcode\": \"1234\",\n        \"Country\": \"AU\",\n        \"Phone\": \"Phone\",\n        \"Username\": \"email@domain.com\",\n        \"TermsAccept\": \"true\",\n        \"Subscribe\": \"true\",\n        \"FileFormat\": \"19b8f591355e02afde\",\n        \"SearchFormat\": \"track\",\n        \"SearchSort\": \"fav\",\n        \"SampleEnabled\": \"true\",\n        \"Status\": \"active\",\n        \"RegionID\": \"88f83791e713cf07d1\",\n        \"ServiceInfoURLs\": {},\n        \"LanguageCode\": \"\",\n        \"Salutation\": \"\",\n        \"MemberTypeID\": \"\",\n        \"FileFormats\": [],\n        \"HasProfileImage\": false,\n        \"PrivacyAccept\": \"true\",\n        \"DownloadEnabled\": \"true\",\n        \"DownloadsRemaining\": \"NULL\",\n        \"DownloadEnabledType\": \"MemberGroup\",\n        \"DownloadLimit\": \"NULL\",\n        \"DownloadsUsed\": \"NULL\",\n        \"DownloadStem\": false,\n        \"MemberGroups\": [\n            {\n                \"ID\": \"32e3c00341acfe20f3\",\n                \"Name\": \"No Price\",\n                \"AssignedRegionID\": \"88f83791e713cf07d1\",\n                \"AssignedRegionChangeEnabled\": false,\n                \"Type\": \"Primary\",\n                \"ProductionsCount\": 0,\n                \"HasLogoArtWork\": false,\n                \"HasArtWork\": false\n            }\n        ]\n    },\n    \"MemberChannels\": []\n}"}],"_postman_id":"130e387a-da9e-4078-9ec1-dc6340eac903"}],"id":"2477bfcf-0562-47f4-87e5-3b2d6c3a98fb","description":"<p>Enterprise users will be subscribed via Admin and there are 2 different ways for payment management:</p>\n<ol>\n<li><p><strong>Payment managed by Harvest</strong>, meaning Harvest is responsible to run payment charges every billing cycle</p>\n<ol>\n<li>When using this option, a <strong>pending invoice</strong> will be returned from <strong>getmembertoken/</strong> on invoices object response regarding their subscription. So, when a user logs in, it is necessary to check for the last invoice status and, when pending exists, land the user to the standard subscription checkout page and allow them to input data to proceed with payment - credit card, billing address etc. then normally proceeds to <strong>payinvoice/.</strong> The member can only start making usage of their plan after payment completed.</li>\n</ol>\n</li>\n<li><p><strong>Payment managed by the Client</strong>, meaning we're not involved/responsible for the charges or control payment invoices; the member has the capability to make use of their plan right away.</p>\n</li>\n</ol>\n<p>After completing payment via <strong>payinvoice/</strong>, the user can be redirect to their profile page to input white listing channels, as shown on <strong>updatememberdetails/</strong>, following the rules for channels as their plan allows to.</p>\n","_postman_id":"2477bfcf-0562-47f4-87e5-3b2d6c3a98fb"},{"name":"Upgrade Subscription","item":[{"name":"Get Subscription Plans for Upgrade","event":[{"listen":"test","script":{"id":"fd3c666b-341a-4d94-81a8-3702fd2d8abe","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;\r","\r",""],"type":"text/javascript"}}],"id":"1ec984b9-0eef-46c4-8cbd-99eededf25a9","protocolProfileBehavior":{"disabledSystemHeaders":{},"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getsubscriptionplans/{{HM_ServiceAPI_MemberToken}}","description":"<ul>\n<li>Returns all featured plans available for a given member token or</li>\n</ul>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SubscriptionPlanID</td>\n<td>String</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["getsubscriptionplans","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"cebb8b6e-35b8-4a84-bfd6-28d283e76f38","name":"Get Subscription Plans (JSON)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","disabled":true}],"url":"{{HM_ServiceAPI_URL}}/getsubscriptionplans/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Nov 2023 23:09:10 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"SubscriptionPlans\": [\n        {\n            \"ID\": \"272f1d66c82967de\",\n            \"Name\": \"Individual\",\n            \"Description\": \"Individual plan for single user\",\n            \"Status\": \"Active\",\n            \"Featured\": true,\n            \"AllowBadges\": false,\n            \"BadgeDisplayTitle\": \"\",\n            \"PlatformHandleType\": \"Disabled\",\n            \"AllowTeam\": false,\n            \"TeamMembers\": 0,\n            \"DownloadLimit\": \"Unlimited\",\n            \"DateCreated\": \"2023-09-04T13:25:52\",\n            \"HasFreeTrial\": false,\n            \"RequestQuote\": false,\n            \"SubscriptionInclusions\": [],\n            \"Subscriptions\": [\n                {\n                    \"ID\": \"272f1d66c82967de\",\n                    \"Period\": \"Monthly\",\n                    \"PeriodDays\": 0,\n                    \"TrialDownloadLimit\": 0,\n                    \"RolloverSubscriptionID\": \"\",\n                    \"Status\": \"Active\",\n                    \"SubscriptionPrices\": [\n                        {\n                            \"ID\": \"e5153b3e6e5ba804\",\n                            \"Price\": 24.99,\n                            \"StartDate\": \"2023-11-23T00:00:00\",\n                            \"Status\": 1\n                        }\n                    ]\n                }\n            ]\n        },\n        {\n            \"ID\": \"4d3ddcd6da8eed45\",\n            \"Name\": \"Enterprise\",\n            \"Description\": \"Please contact us for pricing\",\n            \"Status\": \"Active\",\n            \"Featured\": true,\n            \"AllowBadges\": false,\n            \"BadgeDisplayTitle\": \"\",\n            \"PlatformHandleType\": \"Unlimited\",\n            \"AllowTeam\": true,\n            \"TeamMembers\": 15,\n            \"DownloadLimit\": \"Unlimited\",\n            \"DateCreated\": \"2023-09-04T13:26:30\",\n            \"HasFreeTrial\": false,\n            \"RequestQuote\": true,\n            \"SubscriptionInclusions\": [],\n            \"Subscriptions\": []\n        },\n        {\n            \"ID\": \"9e4d309244851779\",\n            \"Name\": \"Free-trial\",\n            \"Description\": \"\",\n            \"Status\": \"Active\",\n            \"Featured\": true,\n            \"AllowBadges\": false,\n            \"BadgeDisplayTitle\": \"\",\n            \"PlatformHandleType\": \"Disabled\",\n            \"AllowTeam\": false,\n            \"TeamMembers\": 0,\n            \"DownloadLimit\": \"Unlimited\",\n            \"DateCreated\": \"2023-10-10T11:13:04\",\n            \"HasFreeTrial\": true,\n            \"RequestQuote\": false,\n            \"SubscriptionInclusions\": [],\n            \"Subscriptions\": [\n                {\n                    \"ID\": \"19ecbe6bedcfa645\",\n                    \"Period\": \"Monthly\",\n                    \"PeriodDays\": 0,\n                    \"TrialDownloadLimit\": 0,\n                    \"RolloverSubscriptionID\": \"\",\n                    \"Status\": \"Active\",\n                    \"SubscriptionPrices\": [\n                        {\n                            \"ID\": \"19ecbe6bedcfa645\",\n                            \"Price\": 5,\n                            \"StartDate\": \"2023-10-10T00:00:00\",\n                            \"Status\": 1\n                        }\n                    ],\n                    \"FreeTrial\": {\n                        \"ID\": \"5a2f797f4a3d59a5\",\n                        \"Period\": \"Trial\",\n                        \"PeriodDays\": 14,\n                        \"TrialDownloadLimit\": 20,\n                        \"RolloverSubscriptionID\": \"19ecbe6bedcfa645\",\n                        \"Status\": \"Active\",\n                        \"SubscriptionPrices\": []\n                    }\n                }\n            ]\n        },\n        {\n            \"ID\": \"0dabdb1ee6f7b545\",\n            \"Name\": \"AllowTeam\",\n            \"Description\": \"\",\n            \"Status\": \"Active\",\n            \"Featured\": true,\n            \"AllowBadges\": false,\n            \"BadgeDisplayTitle\": \"\",\n            \"PlatformHandleType\": \"Disabled\",\n            \"AllowTeam\": true,\n            \"TeamMembers\": 2,\n            \"DownloadLimit\": \"Unlimited\",\n            \"DateCreated\": \"2023-10-10T14:11:35\",\n            \"HasFreeTrial\": false,\n            \"RequestQuote\": false,\n            \"SubscriptionInclusions\": [],\n            \"Subscriptions\": [\n                {\n                    \"ID\": \"bce3cac31bcb8576\",\n                    \"Period\": \"Monthly\",\n                    \"PeriodDays\": 0,\n                    \"TrialDownloadLimit\": 0,\n                    \"RolloverSubscriptionID\": \"\",\n                    \"Status\": \"Active\",\n                    \"SubscriptionPrices\": [\n                        {\n                            \"ID\": \"5a2f797f4a3d59a5\",\n                            \"Price\": 20,\n                            \"StartDate\": \"2023-10-10T00:00:00\",\n                            \"Status\": 1\n                        }\n                    ]\n                }\n            ]\n        },\n        {\n            \"ID\": \"f4df85b9b479ca70\",\n            \"Name\": \"Daily\",\n            \"Description\": \"Test for daily invoice check\",\n            \"Status\": \"Active\",\n            \"Featured\": true,\n            \"AllowBadges\": true,\n            \"BadgeDisplayTitle\": \"\",\n            \"PlatformHandleType\": \"Disabled\",\n            \"AllowTeam\": false,\n            \"TeamMembers\": 0,\n            \"DownloadLimit\": \"Unlimited\",\n            \"DateCreated\": \"2023-10-24T17:35:11\",\n            \"HasFreeTrial\": true,\n            \"RequestQuote\": false,\n            \"SubscriptionInclusions\": [\n                {\n                    \"ID\": \"d0b8ba29471595bf\",\n                    \"Description\": \"Test\",\n                    \"OrderID\": 0,\n                    \"IsHeader\": true,\n                    \"Status\": \"Active\"\n                },\n                {\n                    \"ID\": \"19b8f5935503adde\",\n                    \"Description\": \"Feature 1\",\n                    \"OrderID\": 1,\n                    \"IsHeader\": false,\n                    \"Status\": \"Active\"\n                }\n            ],\n            \"Subscriptions\": [\n                {\n                    \"ID\": \"0dabdb1ee6f7b545\",\n                    \"Period\": \"Monthly\",\n                    \"PeriodDays\": 0,\n                    \"TrialDownloadLimit\": 0,\n                    \"RolloverSubscriptionID\": \"\",\n                    \"Status\": \"Active\",\n                    \"SubscriptionPrices\": [\n                        {\n                            \"ID\": \"9e4d309244851779\",\n                            \"Price\": 5,\n                            \"StartDate\": \"2023-10-24T00:00:00\",\n                            \"Status\": 1\n                        }\n                    ],\n                    \"FreeTrial\": {\n                        \"ID\": \"82193ff640dd7d69\",\n                        \"Period\": \"Trial\",\n                        \"PeriodDays\": 1,\n                        \"TrialDownloadLimit\": 20,\n                        \"RolloverSubscriptionID\": \"0dabdb1ee6f7b545\",\n                        \"Status\": \"Active\",\n                        \"SubscriptionPrices\": []\n                    }\n                }\n            ]\n        },\n        {\n            \"ID\": \"96f153356899e5c5\",\n            \"Name\": \"Individual Upgrade\",\n            \"Description\": \"\",\n            \"Status\": \"Active\",\n            \"Featured\": true,\n            \"AllowBadges\": false,\n            \"BadgeDisplayTitle\": \"\",\n            \"PlatformHandleType\": \"Disabled\",\n            \"AllowTeam\": false,\n            \"TeamMembers\": 0,\n            \"DownloadLimit\": \"Unlimited\",\n            \"DateCreated\": \"2023-11-28T16:02:30\",\n            \"HasFreeTrial\": false,\n            \"RequestQuote\": false,\n            \"SubscriptionInclusions\": [],\n            \"Subscriptions\": [\n                {\n                    \"ID\": \"733cf072013be8c4\",\n                    \"Period\": \"Monthly\",\n                    \"PeriodDays\": 0,\n                    \"TrialDownloadLimit\": 0,\n                    \"RolloverSubscriptionID\": \"\",\n                    \"Status\": \"Active\",\n                    \"SubscriptionPrices\": [\n                        {\n                            \"ID\": \"3b7e990361490e50\",\n                            \"Price\": 38,\n                            \"StartDate\": \"2023-11-28T00:00:00\",\n                            \"Status\": 1\n                        }\n                    ]\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"1ec984b9-0eef-46c4-8cbd-99eededf25a9"},{"name":"Create Invoice For Upgrade","event":[{"listen":"test","script":{"id":"07931462-9b4b-4220-bf48-fe6cb6749f7e","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","var jsonData = null;","var jsonDataInvoiceID = \"\";","var jsonDataInvoiceTotal = \"\";","","if (responseBody.indexOf(\"<?xml\") >= 0) {","    jsonData = xml2Json(responseBody);","    jsonDataInvoiceID = jsonData.responseinvoice.invoice.id;","    jsonDataInvoiceTotal = jsonData.responseinvoice.invoice.total;","} else {","    jsonData = JSON.parse(responseBody)","    if (jsonData.invoice !== null) {","        jsonDataInvoiceID = jsonData.invoice.id;","        jsonDataInvoiceTotal = jsonData.invoice.total;","    }","}","","console.log(\"HM_ServiceAPI_InvoiceID set to \" + jsonDataInvoiceID);","","postman.setEnvironmentVariable(\"HM_ServiceAPI_InvoiceID\", jsonDataInvoiceID);","postman.setEnvironmentVariable(\"HM_ServiceAPI_InvoiceTotal\", jsonDataInvoiceTotal);","","postman.setNextRequest(\"Get Invoice\");"],"type":"text/javascript"}}],"id":"32234d6f-ef95-41f0-9908-0151f1f063ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\": [\r\n                    {\r\n                        \"referenceid\": \"fdf24422bf73526e\",\r\n                        \"referencetype\": \"Subscription\"\r\n                    }\r\n                ]\r\n            }\r\n        ],\r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\": \"CS-TEST-SUB-UPGRADE\",\r\n            \"productiondate\": \"2023-08-14T00:00:00\",\r\n            \"producer\": \"CS TEST SUB UPGRADE\",\r\n            \"length\": \"TEST SUB Length\",\r\n            \"po\": \"Purchase Order Number SUB UPGRADE\"\r\n        },\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-11-30T23:59:59\",\r\n        \"issuedate\": \"2023-11-30T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}"},"url":"{{HM_ServiceAPI_URL}}/addinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p><strong>Invoices for upgrade will return a total with the proration calculation based on the usage of the current plan.</strong></p>\n<p>Creates an invoice based on the associated invoice line items.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CurrencyCode</td>\n<td>Required, the currency for which payment will be taken in</td>\n</tr>\n<tr>\n<td>DueDate</td>\n<td>Required, the date the invoice is due. This should always be set to the current date</td>\n</tr>\n<tr>\n<td>IssueDate</td>\n<td>Optional, this date the invoice was generated. This should always be set to the current date</td>\n</tr>\n<tr>\n<td>DiscountID</td>\n<td>Optional, the ID of the applied discount. This should only be used when a discount applies to an entire invoice. *Not applicable for Subscriptions. See below reference line to get to know more.</td>\n</tr>\n<tr>\n<td>Discount</td>\n<td>Optional, the amount of the applied discount.</td>\n</tr>\n<tr>\n<td>SubTotal</td>\n<td>Optional, the total amount of all line items (excluding any applicable tax or discount amounts). *Not applicable for subscriptions, the SubTotal will be filled based on the Invoice Line Item ReferenceID (SubscriptionPlanID) in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>TotalTax</td>\n<td>Optional, the total tax amount of all line items (including any applicable tax reductions based on discount amounts). *Not applicable for subscriptions, the TotalTax will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>Total</td>\n<td>Optional, the total amount of all line items (including any applicable tax or discount amounts). *Not applicable for subscriptions, the Total sum will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td>Optional, possible values are; \"CreditCard\", or \"PayPal\". This should only be set if payment is taken in advance of creating an invoice</td>\n</tr>\n<tr>\n<td>PaymentReferenceNumber</td>\n<td>Optional, this should only be set if payment is taken in advance of creating an invoice and should be the unique payment reference number returned from the payment gateway</td>\n</tr>\n<tr>\n<td>InvoiceLineItems</td>\n<td>Required, these are the items that make up in the invoice</td>\n</tr>\n<tr>\n<td>InvoiceProduction</td>\n<td>Required, this is the production that the invoice covers</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice Line Items</strong></p>\n<p>There should be one of these for every unique item on the invoice.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Quantity</td>\n<td>Required, the quantity of the line item</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>Optional, the amount of the line item (excluding any applicable tax or discount amounts). *Not applicable for subscriptions, the Line Item Amount will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>AmountTax</td>\n<td>Optional, the tax amount of the line item (including any applicable tax reductions based on discount amounts). *Not applicable for subscriptions, the item AmountTax will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>Required, the description of the line item. A good example to be used here would be the track display title.  <br />*For Subscriptions, empty is accepted.</td>\n</tr>\n<tr>\n<td>DiscountID</td>\n<td>Optional, the ID of the applied discount. This should only be used when a discount applies to this specific line item.  <br />*For subscriptions,  <br />- 1. If a plan has an automatic voucher discount (no voucher code needed from the member) it will be automatically applied to the invoice total and returned on the response.  <br />- 2. Now, to apply discount using a voucher code previously validated, refer below to Invoice Line Items References.</td>\n</tr>\n<tr>\n<td>Discount</td>\n<td>Optional, the amount of the applied discount</td>\n</tr>\n<tr>\n<td>InvoiceItemReferences</td>\n<td>Required, hese are the items that make up the line item</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice Line Items - References</strong></p>\n<p>Each unique item on the invoice will have 2 of these; one of type \"Track\" and another of type \"Rate\".</p>\n<p>For Subscription, it could either have only one reference line item of type \"Subscription\" or another type \"SubscriptionDiscount\" when voucher code applies.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceType</td>\n<td>Required, possible values are; \"Track\", \"Rate\", \"Subscription\", or \"SubscriptionDiscount\".</td>\n</tr>\n<tr>\n<td>ReferenceID</td>\n<td>Required, the ID to be used here will depend on the value selected for the ReferenceType. So it will either be a TrackID, RateID, SubscriptionID or SubscriptionDiscountID (this last one will be returned via ValidateCoupon()).</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>Optional, the Value to be used here should depend on the value selected for the ReferenceType. For example, when \"Track\" then the value should be the track display title. When \"Rate\" then the value should be the code of that Rate.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Production</strong></p>\n<p>Optional. This is not an array and will only ever be a single production. This does not need to be provided and should only be used when a production is to be specified as part of the invoice creation. If a production is provided then there are specific fields (listed below) that need to be provided as part of the production object.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Client</td>\n<td>Required, this should be the email associated with against the invoice. If it is a guest purchase then it will be the guests email, otherwise it will be the members email</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>Required, the name of the production. This would typically be the name given to the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>ProductionDate</td>\n<td>Optional, the date of the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>Producer</td>\n<td>Optional, the producer associated with the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>Length</td>\n<td>Optional, the total length of the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>PO</td>\n<td>Optional, the purchase order number associated with the production as provided by the invoicee</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<p>On invoice creation success, the response will be the invoice that was created. This will contain the relevant InvoiceID that will be needed to mark the invoice as paid or to retrieve it.</p>\n","urlObject":{"path":["addinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"94c1069c-18ef-4717-953d-ad5e53f7b1b7","name":"Create Invoice For Upgrade (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\": [\r\n                    {\r\n                        \"referenceid\": \"bce3cac31bcb8576\",\r\n                        \"referencetype\": \"Subscription\"\r\n                    }\r\n                ]\r\n            }\r\n        ],\r\n        \"invoiceproduction\": {\r\n            \"client\": \"{{email}}\",\r\n            \"title\": \"{{title}}\",\r\n            \"productiondate\": \"2024-03-15T00:00:00\",\r\n            \"producer\": \"{{producer}}\",\r\n            \"length\": \"\",\r\n            \"po\": \"Purchase Order Number\"\r\n        },\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2024-03-16T23:59:59\",\r\n        \"issuedate\": \"2024-03-15T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}"},"url":"{{HM_ServiceAPI_URL}}/addinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 15 Mar 2024 06:07:26 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"5e22da4e25ad0058\",\n        \"memberaccountid\": \"4b6904ca95e109a0\",\n        \"issuedate\": \"2024-03-15T17:07:25.693\",\n        \"duedate\": \"2024-03-15T17:07:26.243\",\n        \"UTCOffset\": 11,\n        \"discount\": 0,\n        \"totaltax\": 0,\n        \"subtotal\": 538.89,\n        \"total\": 538.89,\n        \"invoicenumber\": 692,\n        \"status\": \"Pending\",\n        \"currencycode\": \"AUD\",\n        \"billingdetails\": {\n            \"FullName\": \"FullName\",\n            \"CompanyName\": \"CompanyName\",\n            \"Address1\": \"Address1\",\n            \"Address2\": \"Address2\",\n            \"City\": \"City\",\n            \"State\": \"State\",\n            \"PostalCode\": \"Postalcode\",\n            \"Country\": \"AU\"\n        }\n    },\n    \"checkoutkeys\": {\n        \"StripeAPIKey\": \"pk_live_StripeKey\",\n        \"ConnectedAccountID\": \"acct_StripeAccountID\",\n        \"AccountCurrency\": \"USD\"\n    }\n}"}],"_postman_id":"32234d6f-ef95-41f0-9908-0151f1f063ff"},{"name":"Update Invoice","id":"fd5bc7fd-9f34-4f83-a098-4e0663ce56a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"id\": \"67577f49b74d0253\",\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-12-14T23:59:59\",\r\n        \"issuedate\": \"2023-12-14T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"amount\": 0,\r\n                \"amounttax\": 0,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\": [\r\n                    {\r\n                        \"referenceid\": \"b20aada17ffad8f7\",\r\n                        \"referencetype\": \"Subscription\"\r\n                    }\r\n                ]\r\n            }\r\n        ],\r\n        \"BillingDetails\": {\r\n            \"FullName\": \"cs-test-card-update\",\r\n            \"CompanyName\": \"company-update\",\r\n            \"Address1\": \"addr 1 update\",\r\n            \"Address2\": \"addr 2 update\",\r\n            \"City\": \"city update\",\r\n            \"State\": \"state update\",\r\n            \"PostalCode\": \"postal update\",\r\n            \"Country\": \"AU\"\r\n        },\r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\": \"CS-TEST-SUB\",\r\n            \"productiondate\": \"2023-08-15T00:00:00\",\r\n            \"producer\": \"CS TEST SUB\",\r\n            \"length\": \"TEST SUB Length\",\r\n            \"po\": \"Purchase Order Number SUB\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updateinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p>Updates an invoice based on the associated invoice line items.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CurrencyCode</td>\n<td>Required, the currency for which payment will be taken in</td>\n</tr>\n<tr>\n<td>DueDate</td>\n<td>Required, the date the invoice is due. This should always be set to the current date</td>\n</tr>\n<tr>\n<td>IssueDate</td>\n<td>Optional, this date the invoice was generated. This should always be set to the current date</td>\n</tr>\n<tr>\n<td>DiscountID</td>\n<td>Optional, the ID of the applied discount. This should only be used when a discount applies to an entire invoice. *Not applicable for Subscriptions. See below reference line to get to know more.</td>\n</tr>\n<tr>\n<td>Discount</td>\n<td>Optional, the amount of the applied discount</td>\n</tr>\n<tr>\n<td>SubTotal</td>\n<td>Optional, the total amount of all line items (excluding any applicable tax or discount amounts). *Not applicable for subscriptions, the SubTotal will be filled based on the Invoice Line Item ReferenceID (SubscriptionPlanID) in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>TotalTax</td>\n<td>Optional, the total tax amount of all line items (including any applicable tax reductions based on discount amounts). *Not applicable for subscriptions, the TotalTax will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>Total</td>\n<td>Optional, the total amount of all line items (including any applicable tax or discount amounts). *Not applicable for subscriptions, the Total sum will be calculated in the background and returned on the response</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td>Optional, case sensitive, possible values are; \"CreditCard\", or \"Paypal\". This should only be set if payment is taken in advance of creating an invoice</td>\n</tr>\n<tr>\n<td>PaymentReferenceNumber</td>\n<td>Optional, this should only be set if payment is taken in advance of creating an invoice and should be the unique payment reference number returned from the payment gateway</td>\n</tr>\n<tr>\n<td>InvoiceLineItems</td>\n<td>Required, these are the items that make up in the invoice</td>\n</tr>\n<tr>\n<td>InvoiceProduction</td>\n<td>Required, this is the production that the invoice covers</td>\n</tr>\n<tr>\n<td>BillingDetails</td>\n<td>PostalCode only is required for US country</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice Line Items</strong></p>\n<p>There should be one of these for every unique item on the invoice.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Quantity</td>\n<td>Required, the quantity of the line item</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>Optional, the amount of the line item (excluding any applicable tax or discount amounts). *Not applicable for subscriptions, the Line Item Amount will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>AmountTax</td>\n<td>Optional, the tax amount of the line item (including any applicable tax reductions based on discount amounts). *Not applicable for subscriptions, the item AmountTax will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>Required, the description of the line item. A good example to be used here would be the track display title</td>\n</tr>\n<tr>\n<td>DiscountID</td>\n<td>Optional, the ID of the applied discount. This should only be used when a discount applies to this specific line item.  <br /><strong>*For subscriptions,</strong>  <br />- 1. If a plan has an automatic voucher discount (no voucher code needed from the member) it will be automatically applied to the invoice total and returned on the response.  <br />- 2. Now, to apply discount using a voucher code previously validated, refer below to Invoice Line Items References.</td>\n</tr>\n<tr>\n<td>Discount</td>\n<td>Optional, the amount of the applied discount</td>\n</tr>\n<tr>\n<td>InvoiceItemReferences</td>\n<td>Required, hese are the items that make up the line item</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice Line Items - References</strong></p>\n<p>Each unique item on the invoice will have 2 of these; one of type \"Track\" and another of type \"Rate\".</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceType</td>\n<td>Required, possible values are; \"Track\", \"Rate\", \"Subscription\", or \"SubscriptionDiscount\".</td>\n</tr>\n<tr>\n<td>ReferenceID</td>\n<td>Required, the ID to be used here will depend on the value selected for the ReferenceType. So it will either be a TrackID, RateID, SubscriptionID or SubscriptionDiscountID (this last one will be returned via ValidateCoupon()).</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>Optional, the Value to be used here should depend on the value selected for the ReferenceType. For example, when \"Track\" then the value should be the track display title. When \"Rate\" then the value should be the code of that Rate</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Production</strong></p>\n<p>Optional. This is not an array and will only ever be a single production. This does not need to be provided and should only be used when a production is to be specified as part of the invoice creation. If a production is provided then there are specific fields (listed below) that need to be provided as part of the production object.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Client</td>\n<td>Required, this should be the email associated with against the invoice. If it is a guest purchase then it will be the guests email, otherwise it will be the members email</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>Required, the name of the production. This would typically be the name given to the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>ProductionDate</td>\n<td>Optional, the date of the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>Producer</td>\n<td>Optional, the producer associated with the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>Length</td>\n<td>Optional, the total length of the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>PO</td>\n<td>Optional, the purchase order number associated with the production as provided by the invoicee</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: BillingDetails</strong></p>\n<p>PostalCode only is required to run payments for members located in US.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FullName</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>CompanyName</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Address1</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Address2</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>City</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PostalCode</td>\n<td>Required only for members located in US country</td>\n</tr>\n<tr>\n<td>Country</td>\n<td>Required</td>\n</tr>\n</tbody>\n</table>\n</div><p>**<br />Response Notes**</p>\n<p>On invoice creation success, the response will be the invoice that was created. This will contain the relevant InvoiceID that will be needed to mark the invoice as paid or to retrieve it.</p>\n","urlObject":{"path":["updateinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"59281048-29e2-4e3e-b014-f7de692ae3b8","name":"Update Invoice (JSON)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"id\": \"eb4efc5cbc9a5b00\",\r\n        \"currencycode\": \"USD\",\r\n        \"duedate\": \"2024-01-27T23:59:59\",\r\n        \"issuedate\": \"2024-01-24T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"amount\": 0,\r\n                \"amounttax\": 0,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\": [\r\n                    {\r\n                        \"referenceid\": \"07615de0da9a3d50\",\r\n                        \"referencetype\": \"Subscription\"\r\n                    }\r\n                ]\r\n            }\r\n        ],\r\n        \"BillingDetails\": {\r\n            \"FullName\": \"cs-test-card-update\",\r\n            \"CompanyName\": \"company-update\",\r\n            \"Address1\": \"addr 1 update usa\",\r\n            \"Address2\": \"addr 2 update usa\",\r\n            \"City\": \"city update usa\",\r\n            \"State\": \"state update usa\",\r\n            \"PostalCode\": \"29636\",\r\n            \"Country\": \"US\"\r\n        },\r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\": \"CS-TEST-SUB\",\r\n            \"productiondate\": \"2023-08-15T00:00:00\",\r\n            \"producer\": \"CS TEST SUB\",\r\n            \"length\": \"TEST SUB Length\",\r\n            \"po\": \"Purchase Order Number SUB\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updateinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jan 2024 06:36:16 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"eb4efc5cbc9a5b00\",\n        \"memberaccountid\": \"cd0adf2adba2011c\",\n        \"issuedate\": \"2024-01-24T17:36:14.907\",\n        \"duedate\": \"2024-01-24T17:36:15.633\",\n        \"discount\": 0,\n        \"totaltax\": 0,\n        \"subtotal\": 10,\n        \"total\": 10,\n        \"invoicenumber\": 142,\n        \"status\": \"Pending\",\n        \"currencycode\": \"USD\"\n    },\n    \"checkoutkeys\": {\n        \"StripeAPIKey\": \"pk_live_51MjXTGINFIsu1VM9JVHrWU3kxWokmJKXrNX7mF7exPdByryYVziz2BnWXBNa8vFPbDVKab5KKbfWtIRAumtgwAWn00juQFO095\",\n        \"ConnectedAccountID\": \"acct_1ONSQvITn8N7IvCC\",\n        \"AccountCurrency\": \"AUD\"\n    }\n}"}],"_postman_id":"fd5bc7fd-9f34-4f83-a098-4e0663ce56a3"},{"name":"Pay Invoice For Upgrade","event":[{"listen":"test","script":{"id":"daa1a982-c9f6-47a9-a621-51b142d6ae5f","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Search Invoice\");"],"type":"text/javascript"}}],"id":"172c3890-d609-4df5-abd0-959e91a5ec61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoicepayment\": {\r\n        \"invoiceid\": \"c6f3f00a38f5a659\",\r\n        \"amount\": 69.97,\r\n        \"contactname\": \"camila@harvestmedia.net\",\r\n        \"date\": \"2023-11-30T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"paymentreferencenumber\": \"\",\r\n        \"paymentstatus\": \"Processing\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/payinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p>Pays a pending state invoice.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Payment</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvoiceID</td>\n<td>Required, the unique ID of the invoice that is moving to a paid status</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>Required, the amount of the associated invoice that was paid</td>\n</tr>\n<tr>\n<td>ContactName</td>\n<td>Required, the name to be associated against the payment</td>\n</tr>\n<tr>\n<td>Date</td>\n<td>Required, the date payment was made</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td>Required, possible values are; \"CreditCard\", or \"PayPal\"</td>\n</tr>\n<tr>\n<td>PaymentReferenceNumber</td>\n<td>Required, possible values are; \"CreditCard\", or \"PayPal\"</td>\n</tr>\n<tr>\n<td>PaymentStatus</td>\n<td>Required, the unique payment reference number returned from the payment gateway</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Misc</strong></p>\n<p>There should be one of these for every unique item on the invoice.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SendEmail</td>\n<td>Optional, default value is false. If true an email will be sent with an associated PDF invoice attached to it</td>\n</tr>\n<tr>\n<td>BCCEmail</td>\n<td>Optional, email address to be BCC'd. This is not a comma-separated list of email addresses, but rather a single email address</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<p>On invoice creation success, the response will be the invoice that was paid. This will contain the relevant InvoiceID that will be needed to mark the invoice as paid or to retrieve it.</p>\n","urlObject":{"path":["payinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"4ae8f9a3-da92-4e60-80c6-d3cfcc1378d7","name":"Pay Invoice For Upgrade (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"invoicepayment\": {\r\n        \"invoiceid\": \"cb27f427373f0935\",\r\n        \"amount\": 18.44,\r\n        \"contactname\": \"camila@harvestmedia.net\",\r\n        \"date\": \"2023-11-30T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"paymentreferencenumber\": \"\",\r\n        \"paymentstatus\": \"Processing\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/payinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Nov 2023 23:22:22 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"cb27f427373f0935\",\n        \"memberaccountid\": \"3a519b04c8a54ab8\",\n        \"issuedate\": \"2023-11-30T10:21:32.703\",\n        \"duedate\": \"2023-11-30T10:21:33.213\",\n        \"totaltax\": 1.68,\n        \"subtotal\": 16.76,\n        \"total\": 18.44,\n        \"invoicenumber\": 211,\n        \"status\": \"Processing\",\n        \"currencycode\": \"AUD\"\n    },\n    \"checkoutdetail\": {\n        \"clientsecret\": \"pi_3OHx5FRDQDq9d3Yk1hWlbZry_secret_ssX8or1psKJisFnXhDSQYOgjb\",\n        \"checkoutconfirmtype\": \"Payment\"\n    }\n}"},{"id":"d11b0e16-e7e1-4fc4-88b7-99656d1a8a4d","name":"Pay Invoice For Upgrade (XML)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/xml"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"invoicepayment\": {\r\n        \"invoiceid\": \"550c6d85703960a0\",\r\n        \"amount\": 41.80,\r\n        \"contactname\": \"camila@harvestmedia.net\",\r\n        \"date\": \"2023-11-30T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"paymentreferencenumber\": \"\",\r\n        \"paymentstatus\": \"Processing\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/payinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Wed, 29 Nov 2023 23:41:14 GMT","enabled":true},{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<responseinvoice xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <invoice>\n        <id>550c6d85703960a0</id>\n        <memberaccountid>3a519b04c8a54ab8</memberaccountid>\n        <issuedate>2023-11-30T10:38:14.607</issuedate>\n        <duedate>2023-11-30T10:38:15.187</duedate>\n        <totaltax>3.80</totaltax>\n        <subtotal>38.00</subtotal>\n        <total>41.80</total>\n        <invoicenumber>214</invoicenumber>\n        <status>Processing</status>\n        <currencycode>AUD</currencycode>\n    </invoice>\n    <checkoutdetail>\n        <clientsecret>seti_1OHxNWRDQDq9d3YkhHVnk72C_secret_P69g616XnZKBtExIYK1zjmqiNm87SuW</clientsecret>\n        <checkoutconfirmtype>Setup</checkoutconfirmtype>\n    </checkoutdetail>\n</responseinvoice>"}],"_postman_id":"172c3890-d609-4df5-abd0-959e91a5ec61"}],"id":"28be26d9-2052-4440-9314-2989ea2bb95a","description":"<ul>\n<li><p>First step for upgrade subscriptions is to get the list of plans that the user is allowed to upgrade/downgrade to via getsubscriptionplans/ informing the logged in member token.</p>\n</li>\n<li><p>Invoices for upgrade will return a total with the proration calculation based on the usage of the current plan.</p>\n</li>\n<li><p>Invoices for downgrade won't generate credits, the user will pay the full price to shift ito a cheaper plan.</p>\n</li>\n</ul>\n","_postman_id":"28be26d9-2052-4440-9314-2989ea2bb95a"}],"id":"9633167d-5771-4a22-adfd-91c7ad4787e6","description":"<h2 id=\"overview\">Overview</h2>\n<p>The following section outlines the Subscription solution that is available through the Harvest Media <strong>Public API</strong>.</p>\n<p>At a top level, what this solution offers is as follows;</p>\n<ol>\n<li><p>The ability to retrieve a list of <strong>Subscription Plans</strong> based on what has been setup on our Admin</p>\n</li>\n<li><p>The ability for a member to start the checkout process after choosing the best subscription to suit them</p>\n</li>\n<li><p>The ability to validate coupons code that might give discounts</p>\n</li>\n<li><p>The ability to pay for a subscription plan</p>\n</li>\n<li><p>The ability to cancel an ongoing subscription plan</p>\n</li>\n</ol>\n","_postman_id":"9633167d-5771-4a22-adfd-91c7ad4787e6"},{"name":"Ecom Album/Track","item":[{"name":"Core Search","item":[{"name":"Get Search Default","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"d6ed74db-85ed-4112-94ea-a71a327714c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"true\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"%\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"ReturnRates\": \"true\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n<p>NOTE2: Use ReturnRates to get the rates for album or album track</p>\n<ul>\n<li>ReturnRates = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"4eb43dc9-c315-48f3-be49-6adc6cfbeeed","name":"Get Search Default (JSON)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"true\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"%\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"ReturnRates\": \"true\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Apr 2024 12:37:50 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalTracks\": 3105,\n    \"TotalAlbums\": 31,\n    \"TotalLibraries\": 1,\n    \"TotalStyles\": 0,\n    \"TotalPlaylists\": 0,\n    \"SearchParameters\": {\n        \"searchtype\": \"Normal\",\n        \"memberaccount\": \"c8c0e81091a77f09\",\n        \"region\": \"26f10c7e6bf37b62\",\n        \"includeinactive\": false,\n        \"mainonly\": true,\n        \"alternativeonly\": false,\n        \"resultview\": {\n            \"view\": \"Track\",\n            \"sort_predefined\": \"ReleaseDate_Desc\",\n            \"rankexpression\": \"\",\n            \"skip\": 0,\n            \"limit\": 10,\n            \"saved\": false,\n            \"mincount\": 0,\n            \"returntrackcategoryid\": false,\n            \"facet_album\": false,\n            \"facet_albumskip\": 0,\n            \"facet_albumlimit\": 0,\n            \"facet_library\": true,\n            \"facet_libraryskip\": 0,\n            \"facet_librarylimit\": 0,\n            \"facet_librarysort\": \"Count_Desc\",\n            \"facet_style\": false,\n            \"facet_styleskip\": 0,\n            \"facet_stylelimit\": 0,\n            \"facet_category\": true,\n            \"facet_categoryskip\": 0,\n            \"facet_categorylimit\": 0,\n            \"facet_categorysort\": \"Count_Desc\",\n            \"facet_composer\": false,\n            \"facet_composerskip\": 0,\n            \"facet_composerlimit\": 0,\n            \"bpm_range\": false,\n            \"duration_range\": false,\n            \"include_alternates\": false,\n            \"include_rightholders\": false,\n            \"include_lyrics\": false,\n            \"include_keywords\": false,\n            \"tracks_per_album\": 0,\n            \"facet_bpm\": true,\n            \"facet_duration\": true,\n            \"facet_releaseyear\": false,\n            \"view_style_album_count\": false,\n            \"view_style_playlist_count\": false,\n            \"view_track_categories\": false,\n            \"evoke_prioritizebpm\": false,\n            \"evoke_suppressvocals\": false,\n            \"view_album_assigned_to_style\": false,\n            \"view_playlist_assigned_to_style\": false,\n            \"returnrates\": true\n        },\n        \"nearestduration\": false,\n        \"nearestbpm\": false,\n        \"nearestalternate\": false,\n        \"LibraryType\": \"\",\n        \"PreviousSearchTermBundles\": [\n            {\n                \"SearchHistoryID\": 0,\n                \"st_keyword_aggregated\": {\n                    \"searchtermid\": 1,\n                    \"Keywords\": \"%\",\n                    \"exactphrase\": false,\n                    \"oroperation\": false,\n                    \"wildcard\": true,\n                    \"disablekeywordgroup\": false,\n                    \"negative\": false\n                }\n            }\n        ]\n    },\n    \"Tracks\": [\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"LibraryType\": \"\",\n            \"TrackNumber\": \"001\",\n            \"LengthSeconds\": \"14\",\n            \"Comment\": \"PP-19 Close & Distant 01\",\n            \"Composer\": \"\",\n            \"Publisher\": \"AMPLAR\",\n            \"Artist\": \"\",\n            \"Name\": \"GUNAuto_EPICGUNS_PP-19_Close & Distant 01_AMPLAR.wav\",\n            \"AlbumID\": \"c9614bd63c4e957a\",\n            \"LibraryID\": \"add1598588de9a5c\",\n            \"ID\": \"d84fab3f77ab261ea11b06aafae9b741\",\n            \"Keywords\": \"PP-19, Close, Distant, Gun, Shot\",\n            \"DisplayTitle\": \"PP-19 Close & Distant 01\",\n            \"alternatetitle\": \"\",\n            \"Genre\": \"GUNS\",\n            \"Instrumentation\": \"GUNS\",\n            \"Bpm\": \"0\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"FA1\",\n            \"AlbumName\": \"Firearms\",\n            \"LibraryName\": \"Amplar\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"0\",\n            \"RightHolderIDs\": [\n                {\n                    \"ID\": \"f6432d42cfb5c96f\"\n                },\n                {\n                    \"ID\": \"5d785901c06ded2f\"\n                }\n            ],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"GUNAuto_EPICGUNS_PP-19_Close & Distant 01_AMPLAR.wav\",\n            \"AlbumTitle\": \"Firearms\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"ID\": \"50c7165591e2efc7\",\n                \"Style\": \"Flat\",\n                \"Code\": \"TRK001\",\n                \"Title\": \"\",\n                \"Description\": \"TRK001\",\n                \"Fee\": 1,\n                \"FeeWithTax\": 1.1,\n                \"RateType\": \"AlbumTrack\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"LibraryType\": \"\",\n            \"TrackNumber\": \"002\",\n            \"LengthSeconds\": \"6\",\n            \"Comment\": \"PP-19 Close 01\",\n            \"Composer\": \"\",\n            \"Publisher\": \"AMPLAR\",\n            \"Artist\": \"\",\n            \"Name\": \"GUNAuto_EPICGUNS_PP-19_Close 01_AMPLAR.wav\",\n            \"AlbumID\": \"c9614bd63c4e957a\",\n            \"LibraryID\": \"add1598588de9a5c\",\n            \"ID\": \"4f228e8d7677d1db71a05fbe38665283\",\n            \"Keywords\": \"PP-19, Close, Gun, Shot\",\n            \"DisplayTitle\": \"PP-19 Close 01\",\n            \"alternatetitle\": \"\",\n            \"Genre\": \"GUNS\",\n            \"Instrumentation\": \"GUNS\",\n            \"Bpm\": \"0\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"FA1\",\n            \"AlbumName\": \"Firearms\",\n            \"LibraryName\": \"Amplar\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"0\",\n            \"RightHolderIDs\": [\n                {\n                    \"ID\": \"f6432d42cfb5c96f\"\n                },\n                {\n                    \"ID\": \"5d785901c06ded2f\"\n                }\n            ],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"GUNAuto_EPICGUNS_PP-19_Close 01_AMPLAR.wav\",\n            \"AlbumTitle\": \"Firearms\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"ID\": \"50c7165591e2efc7\",\n                \"Style\": \"Flat\",\n                \"Code\": \"TRK001\",\n                \"Title\": \"\",\n                \"Description\": \"TRK001\",\n                \"Fee\": 1,\n                \"FeeWithTax\": 1.1,\n                \"RateType\": \"AlbumTrack\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"LibraryType\": \"\",\n            \"TrackNumber\": \"003\",\n            \"LengthSeconds\": \"6\",\n            \"Comment\": \"PP-19 Close 02\",\n            \"Composer\": \"\",\n            \"Publisher\": \"AMPLAR\",\n            \"Artist\": \"\",\n            \"Name\": \"GUNAuto_EPICGUNS_PP-19_Close 02_AMPLAR.wav\",\n            \"AlbumID\": \"c9614bd63c4e957a\",\n            \"LibraryID\": \"add1598588de9a5c\",\n            \"ID\": \"422c51a339e16fdda74950ff155fee3d\",\n            \"Keywords\": \"PP-19, Close, Gun, Shot\",\n            \"DisplayTitle\": \"PP-19 Close 02\",\n            \"alternatetitle\": \"\",\n            \"Genre\": \"GUNS\",\n            \"Instrumentation\": \"GUNS\",\n            \"Bpm\": \"0\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"FA1\",\n            \"AlbumName\": \"Firearms\",\n            \"LibraryName\": \"Amplar\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"0\",\n            \"RightHolderIDs\": [\n                {\n                    \"ID\": \"f6432d42cfb5c96f\"\n                },\n                {\n                    \"ID\": \"5d785901c06ded2f\"\n                }\n            ],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"GUNAuto_EPICGUNS_PP-19_Close 02_AMPLAR.wav\",\n            \"AlbumTitle\": \"Firearms\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"ID\": \"50c7165591e2efc7\",\n                \"Style\": \"Flat\",\n                \"Code\": \"TRK001\",\n                \"Title\": \"\",\n                \"Description\": \"TRK001\",\n                \"Fee\": 1,\n                \"FeeWithTax\": 1.1,\n                \"RateType\": \"AlbumTrack\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"LibraryType\": \"\",\n            \"TrackNumber\": \"004\",\n            \"LengthSeconds\": \"31\",\n            \"Comment\": \"PP-19 Close With long Tail 01\",\n            \"Composer\": \"\",\n            \"Publisher\": \"AMPLAR\",\n            \"Artist\": \"\",\n            \"Name\": \"GUNAuto_EPICGUNS_PP-19_Close With long Tail 01_AMPLAR.wav\",\n            \"AlbumID\": \"c9614bd63c4e957a\",\n            \"LibraryID\": \"add1598588de9a5c\",\n            \"ID\": \"9ab2ec62df8aaa2fe4cade12ea489533\",\n            \"Keywords\": \"PP-19, Close, Gun, Shot, Long Tail\",\n            \"DisplayTitle\": \"PP-19 Close With long Tail 01\",\n            \"alternatetitle\": \"\",\n            \"Genre\": \"GUNS\",\n            \"Instrumentation\": \"GUNS\",\n            \"Bpm\": \"0\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"FA1\",\n            \"AlbumName\": \"Firearms\",\n            \"LibraryName\": \"Amplar\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"0\",\n            \"RightHolderIDs\": [\n                {\n                    \"ID\": \"f6432d42cfb5c96f\"\n                },\n                {\n                    \"ID\": \"5d785901c06ded2f\"\n                }\n            ],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"GUNAuto_EPICGUNS_PP-19_Close With long Tail 01_AMPLAR.wav\",\n            \"AlbumTitle\": \"Firearms\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"ID\": \"50c7165591e2efc7\",\n                \"Style\": \"Flat\",\n                \"Code\": \"TRK001\",\n                \"Title\": \"\",\n                \"Description\": \"TRK001\",\n                \"Fee\": 1,\n                \"FeeWithTax\": 1.1,\n                \"RateType\": \"AlbumTrack\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"LibraryType\": \"\",\n            \"TrackNumber\": \"005\",\n            \"LengthSeconds\": \"35\",\n            \"Comment\": \"PP-19 Close With long Tail 02\",\n            \"Composer\": \"\",\n            \"Publisher\": \"AMPLAR\",\n            \"Artist\": \"\",\n            \"Name\": \"GUNAuto_EPICGUNS_PP-19_Close With long Tail 02_AMPLAR.wav\",\n            \"AlbumID\": \"c9614bd63c4e957a\",\n            \"LibraryID\": \"add1598588de9a5c\",\n            \"ID\": \"cac9ab5c9839386a72b38451843dd93b\",\n            \"Keywords\": \"PP-19, Close, Gun, Shot, Long Tail\",\n            \"DisplayTitle\": \"PP-19 Close With long Tail 02\",\n            \"alternatetitle\": \"\",\n            \"Genre\": \"GUNS\",\n            \"Instrumentation\": \"GUNS\",\n            \"Bpm\": \"0\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"FA1\",\n            \"AlbumName\": \"Firearms\",\n            \"LibraryName\": \"Amplar\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"0\",\n            \"RightHolderIDs\": [\n                {\n                    \"ID\": \"f6432d42cfb5c96f\"\n                },\n                {\n                    \"ID\": \"5d785901c06ded2f\"\n                }\n            ],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"GUNAuto_EPICGUNS_PP-19_Close With long Tail 02_AMPLAR.wav\",\n            \"AlbumTitle\": \"Firearms\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"ID\": \"50c7165591e2efc7\",\n                \"Style\": \"Flat\",\n                \"Code\": \"TRK001\",\n                \"Title\": \"\",\n                \"Description\": \"TRK001\",\n                \"Fee\": 1,\n                \"FeeWithTax\": 1.1,\n                \"RateType\": \"AlbumTrack\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"LibraryType\": \"\",\n            \"TrackNumber\": \"006\",\n            \"LengthSeconds\": \"1\",\n            \"Comment\": \"PP-19 Single Shot 01\",\n            \"Composer\": \"\",\n            \"Publisher\": \"AMPLAR\",\n            \"Artist\": \"\",\n            \"Name\": \"GUNAuto_EPICGUNS_PP-19_Single Shot 01_AMPLAR.wav\",\n            \"AlbumID\": \"c9614bd63c4e957a\",\n            \"LibraryID\": \"add1598588de9a5c\",\n            \"ID\": \"e09030fd5967ff0959209db17f0878f7\",\n            \"Keywords\": \"PP-19, Single, Gun, Shot,\",\n            \"DisplayTitle\": \"PP-19 Single Shot 01\",\n            \"alternatetitle\": \"\",\n            \"Genre\": \"GUNS\",\n            \"Instrumentation\": \"GUNS\",\n            \"Bpm\": \"0\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"FA1\",\n            \"AlbumName\": \"Firearms\",\n            \"LibraryName\": \"Amplar\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"0\",\n            \"RightHolderIDs\": [\n                {\n                    \"ID\": \"f6432d42cfb5c96f\"\n                },\n                {\n                    \"ID\": \"5d785901c06ded2f\"\n                }\n            ],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"GUNAuto_EPICGUNS_PP-19_Single Shot 01_AMPLAR.wav\",\n            \"AlbumTitle\": \"Firearms\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"ID\": \"50c7165591e2efc7\",\n                \"Style\": \"Flat\",\n                \"Code\": \"TRK001\",\n                \"Title\": \"\",\n                \"Description\": \"TRK001\",\n                \"Fee\": 1,\n                \"FeeWithTax\": 1.1,\n                \"RateType\": \"AlbumTrack\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"LibraryType\": \"\",\n            \"TrackNumber\": \"007\",\n            \"LengthSeconds\": \"1\",\n            \"Comment\": \"PP-19 Single Shot 02\",\n            \"Composer\": \"\",\n            \"Publisher\": \"AMPLAR\",\n            \"Artist\": \"\",\n            \"Name\": \"GUNAuto_EPICGUNS_PP-19_Single Shot 02_AMPLAR.wav\",\n            \"AlbumID\": \"c9614bd63c4e957a\",\n            \"LibraryID\": \"add1598588de9a5c\",\n            \"ID\": \"516dbafb7c3c32d6d5aad4282db5dcf2\",\n            \"Keywords\": \"PP-19, Single, Gun, Shot,\",\n            \"DisplayTitle\": \"PP-19 Single Shot 02\",\n            \"alternatetitle\": \"\",\n            \"Genre\": \"GUNS\",\n            \"Instrumentation\": \"GUNS\",\n            \"Bpm\": \"0\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"FA1\",\n            \"AlbumName\": \"Firearms\",\n            \"LibraryName\": \"Amplar\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"0\",\n            \"RightHolderIDs\": [\n                {\n                    \"ID\": \"f6432d42cfb5c96f\"\n                },\n                {\n                    \"ID\": \"5d785901c06ded2f\"\n                }\n            ],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"GUNAuto_EPICGUNS_PP-19_Single Shot 02_AMPLAR.wav\",\n            \"AlbumTitle\": \"Firearms\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"ID\": \"50c7165591e2efc7\",\n                \"Style\": \"Flat\",\n                \"Code\": \"TRK001\",\n                \"Title\": \"\",\n                \"Description\": \"TRK001\",\n                \"Fee\": 1,\n                \"FeeWithTax\": 1.1,\n                \"RateType\": \"AlbumTrack\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"LibraryType\": \"\",\n            \"TrackNumber\": \"008\",\n            \"LengthSeconds\": \"1\",\n            \"Comment\": \"PP-19 Single Shot 03\",\n            \"Composer\": \"\",\n            \"Publisher\": \"AMPLAR\",\n            \"Artist\": \"\",\n            \"Name\": \"GUNAuto_EPICGUNS_PP-19_Single Shot 03_AMPLAR.wav\",\n            \"AlbumID\": \"c9614bd63c4e957a\",\n            \"LibraryID\": \"add1598588de9a5c\",\n            \"ID\": \"4db646149d9306cc25aa5ed3c8a64fb9\",\n            \"Keywords\": \"PP-19, Single, Gun, Shot,\",\n            \"DisplayTitle\": \"PP-19 Single Shot 03\",\n            \"alternatetitle\": \"\",\n            \"Genre\": \"GUNS\",\n            \"Instrumentation\": \"GUNS\",\n            \"Bpm\": \"0\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"FA1\",\n            \"AlbumName\": \"Firearms\",\n            \"LibraryName\": \"Amplar\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"0\",\n            \"RightHolderIDs\": [\n                {\n                    \"ID\": \"f6432d42cfb5c96f\"\n                },\n                {\n                    \"ID\": \"5d785901c06ded2f\"\n                }\n            ],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"GUNAuto_EPICGUNS_PP-19_Single Shot 03_AMPLAR.wav\",\n            \"AlbumTitle\": \"Firearms\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"ID\": \"50c7165591e2efc7\",\n                \"Style\": \"Flat\",\n                \"Code\": \"TRK001\",\n                \"Title\": \"\",\n                \"Description\": \"TRK001\",\n                \"Fee\": 1,\n                \"FeeWithTax\": 1.1,\n                \"RateType\": \"AlbumTrack\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"LibraryType\": \"\",\n            \"TrackNumber\": \"009\",\n            \"LengthSeconds\": \"1\",\n            \"Comment\": \"PP-19 Single Shot 04\",\n            \"Composer\": \"\",\n            \"Publisher\": \"AMPLAR\",\n            \"Artist\": \"\",\n            \"Name\": \"GUNAuto_EPICGUNS_PP-19_Single Shot 04_AMPLAR.wav\",\n            \"AlbumID\": \"c9614bd63c4e957a\",\n            \"LibraryID\": \"add1598588de9a5c\",\n            \"ID\": \"a7657d7f3f7cc4034804c3e91ff570e2\",\n            \"Keywords\": \"PP-19, Single, Gun, Shot,\",\n            \"DisplayTitle\": \"PP-19 Single Shot 04\",\n            \"alternatetitle\": \"\",\n            \"Genre\": \"GUNS\",\n            \"Instrumentation\": \"GUNS\",\n            \"Bpm\": \"0\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"FA1\",\n            \"AlbumName\": \"Firearms\",\n            \"LibraryName\": \"Amplar\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"0\",\n            \"RightHolderIDs\": [\n                {\n                    \"ID\": \"f6432d42cfb5c96f\"\n                },\n                {\n                    \"ID\": \"5d785901c06ded2f\"\n                }\n            ],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"GUNAuto_EPICGUNS_PP-19_Single Shot 04_AMPLAR.wav\",\n            \"AlbumTitle\": \"Firearms\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"ID\": \"50c7165591e2efc7\",\n                \"Style\": \"Flat\",\n                \"Code\": \"TRK001\",\n                \"Title\": \"\",\n                \"Description\": \"TRK001\",\n                \"Fee\": 1,\n                \"FeeWithTax\": 1.1,\n                \"RateType\": \"AlbumTrack\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": false,\n            \"IsExplicit\": false,\n            \"LibraryType\": \"\",\n            \"TrackNumber\": \"010\",\n            \"LengthSeconds\": \"1\",\n            \"Comment\": \"PP-19 Single Shot 05\",\n            \"Composer\": \"\",\n            \"Publisher\": \"AMPLAR\",\n            \"Artist\": \"\",\n            \"Name\": \"GUNAuto_EPICGUNS_PP-19_Single Shot 05_AMPLAR.wav\",\n            \"AlbumID\": \"c9614bd63c4e957a\",\n            \"LibraryID\": \"add1598588de9a5c\",\n            \"ID\": \"58d80ceb9fb96b18cf4fe1e06eeae50f\",\n            \"Keywords\": \"PP-19, Single, Gun, Shot,\",\n            \"DisplayTitle\": \"PP-19 Single Shot 05\",\n            \"alternatetitle\": \"\",\n            \"Genre\": \"GUNS\",\n            \"Instrumentation\": \"GUNS\",\n            \"Bpm\": \"0\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"FA1\",\n            \"AlbumName\": \"Firearms\",\n            \"LibraryName\": \"Amplar\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"0\",\n            \"RightHolderIDs\": [\n                {\n                    \"ID\": \"f6432d42cfb5c96f\"\n                },\n                {\n                    \"ID\": \"5d785901c06ded2f\"\n                }\n            ],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"GUNAuto_EPICGUNS_PP-19_Single Shot 05_AMPLAR.wav\",\n            \"AlbumTitle\": \"Firearms\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"ID\": \"50c7165591e2efc7\",\n                \"Style\": \"Flat\",\n                \"Code\": \"TRK001\",\n                \"Title\": \"\",\n                \"Description\": \"TRK001\",\n                \"Fee\": 1,\n                \"FeeWithTax\": 1.1,\n                \"RateType\": \"AlbumTrack\"\n            }\n        }\n    ],\n    \"Facets\": {\n        \"Libraries\": {\n            \"Items\": [\n                {\n                    \"ID\": \"add1598588de9a5c\",\n                    \"Name\": \"Amplar\",\n                    \"Count\": 31\n                }\n            ]\n        },\n        \"BPM\": {\n            \"Min\": 0,\n            \"Max\": 0\n        },\n        \"Duration\": {\n            \"Min\": 1,\n            \"Max\": 630\n        }\n    },\n    \"UseDatabase\": true,\n    \"CloudSearchUrls\": []\n}"}],"_postman_id":"d6ed74db-85ed-4112-94ea-a71a327714c0"},{"name":"Get Search View By Album","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"3fca341d-b1f0-4f3a-ab3f-07310ef09b87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"true\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"pop\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Album\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n<p>NOTE2: Use ReturnRates to get the rates for album or album track</p>\n<ul>\n<li>ReturnRates = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"004869b7-1bc0-452a-81c5-c2c9d7125b7e","name":"Get Search View By Album (JSON)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"true\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"pop\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Album\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"ReturnRates\": \"true\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Nov 2023 04:14:19 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalTracks\": 316,\n    \"TotalAlbums\": 24,\n    \"TotalLibraries\": 3,\n    \"TotalStyles\": 7,\n    \"TotalPlaylists\": 1,\n    \"SearchParameters\": {\n        \"searchtype\": \"Normal\",\n        \"memberaccount\": \"ad5725d472ad6d6d\",\n        \"region\": \"88f8791e732f07e1\",\n        \"includeinactive\": false,\n        \"mainonly\": true,\n        \"alternativeonly\": false,\n        \"resultview\": {\n            \"view\": \"Album\",\n            \"sort_predefined\": \"ReleaseDate_Desc\",\n            \"rankexpression\": \"\",\n            \"skip\": 0,\n            \"limit\": 10,\n            \"saved\": false,\n            \"mincount\": 0,\n            \"returntrackcategoryid\": false,\n            \"facet_album\": false,\n            \"facet_albumskip\": 0,\n            \"facet_albumlimit\": 0,\n            \"facet_library\": true,\n            \"facet_libraryskip\": 0,\n            \"facet_librarylimit\": 0,\n            \"facet_librarysort\": \"Count_Desc\",\n            \"facet_style\": false,\n            \"facet_styleskip\": 0,\n            \"facet_stylelimit\": 0,\n            \"facet_category\": true,\n            \"facet_categoryskip\": 0,\n            \"facet_categorylimit\": 0,\n            \"facet_categorysort\": \"Count_Desc\",\n            \"facet_composer\": false,\n            \"facet_composerskip\": 0,\n            \"facet_composerlimit\": 0,\n            \"bpm_range\": false,\n            \"duration_range\": false,\n            \"include_alternates\": false,\n            \"include_rightholders\": false,\n            \"include_lyrics\": false,\n            \"include_keywords\": false,\n            \"tracks_per_album\": 0,\n            \"facet_bpm\": true,\n            \"facet_duration\": true,\n            \"facet_releaseyear\": false,\n            \"view_style_album_count\": false,\n            \"view_style_playlist_count\": false,\n            \"view_track_categories\": false,\n            \"evoke_prioritizebpm\": false,\n            \"evoke_suppressvocals\": false,\n            \"view_album_assigned_to_style\": false,\n            \"view_playlist_assigned_to_style\": false,\n            \"returnrates\": true\n        },\n        \"nearestduration\": false,\n        \"nearestbpm\": false,\n        \"nearestalternate\": false,\n        \"PreviousSearchTermBundles\": [\n            {\n                \"SearchHistoryID\": 0,\n                \"st_keyword_aggregated\": {\n                    \"searchtermid\": 1,\n                    \"Keywords\": \"pop\",\n                    \"exactphrase\": false,\n                    \"oroperation\": false,\n                    \"wildcard\": true,\n                    \"disablekeywordgroup\": false,\n                    \"negative\": false\n                }\n            }\n        ]\n    },\n    \"Albums\": [\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"6cbeb8fab0a84e83\",\n            \"LibraryName\": \"Harvest Media\",\n            \"ReleaseDate\": \"2019-01-04 00:00:00\",\n            \"Code\": \"TEST041\",\n            \"Detail\": \"Testing categories\",\n            \"Name\": \"Category Testing\",\n            \"DisplayTitle\": \"TEST041 Category Testing\",\n            \"Keywords\": \"\",\n            \"ID\": \"8dca03e951705cd6\",\n            \"TrackCount\": \"2\",\n            \"AlbumRate\": {\n                \"ID\": \"1fbf8d2559330f4f\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT001\",\n                \"Description\": \"FLAT001\",\n                \"Fee\": 50,\n                \"RateType\": \"Album\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"6cbeb8fab0a84e83\",\n            \"LibraryName\": \"Harvest Media\",\n            \"ReleaseDate\": \"2018-09-17 00:00:00\",\n            \"Code\": \"TEST033\",\n            \"Detail\": \"Track Description\",\n            \"Name\": \"AlbumTitle\",\n            \"DisplayTitle\": \"AlbumTitle\",\n            \"Keywords\": \"\",\n            \"ID\": \"7855fdf0a0ecc377\",\n            \"TrackCount\": \"6\",\n            \"AlbumRate\": {\n                \"ID\": \"1fbf8d2559330f4f\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT001\",\n                \"Description\": \"FLAT001\",\n                \"Fee\": 50,\n                \"RateType\": \"Album\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"6cbeb8fab0a84e83\",\n            \"LibraryName\": \"Harvest Media\",\n            \"ReleaseDate\": \"2018-07-23 00:00:00\",\n            \"Code\": \"TEST067\",\n            \"Detail\": \"Harvest Media\",\n            \"Name\": \"Artwork Test\",\n            \"DisplayTitle\": \"TEST067 Artwork Test\",\n            \"Keywords\": \"\",\n            \"ID\": \"26da410a3374f7fb\",\n            \"TrackCount\": \"2\",\n            \"AlbumRate\": {\n                \"ID\": \"1fbf8d2559330f4f\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT001\",\n                \"Description\": \"FLAT001\",\n                \"Fee\": 50,\n                \"RateType\": \"Album\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"6cbeb8fab0a84e83\",\n            \"LibraryName\": \"Harvest Media\",\n            \"ReleaseDate\": \"2018-07-23 00:00:00\",\n            \"Code\": \"TEST066\",\n            \"Detail\": \"Harvest Media\",\n            \"Name\": \"Artwork Test vol.2\",\n            \"DisplayTitle\": \"TEST066 Artwork Test vol.2\",\n            \"Keywords\": \"\",\n            \"ID\": \"e29f0224fe94731e\",\n            \"TrackCount\": \"2\",\n            \"AlbumRate\": {\n                \"ID\": \"1fbf8d2559330f4f\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT001\",\n                \"Description\": \"FLAT001\",\n                \"Fee\": 50,\n                \"RateType\": \"Album\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"6cbeb8fab0a84e83\",\n            \"LibraryName\": \"Harvest Media\",\n            \"ReleaseDate\": \"2018-07-23 00:00:00\",\n            \"Code\": \"TEST040\",\n            \"Detail\": \"Harvest Media\",\n            \"Name\": \"Artwork Test\",\n            \"DisplayTitle\": \"TEST040 Merge rightholders from the same track\",\n            \"Keywords\": \"\",\n            \"ID\": \"26b85459ead14e61\",\n            \"TrackCount\": \"2\",\n            \"AlbumRate\": {\n                \"ID\": \"1fbf8d2559330f4f\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT001\",\n                \"Description\": \"FLAT001\",\n                \"Fee\": 50,\n                \"RateType\": \"Album\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"ee6542379bf2457c\",\n            \"LibraryName\": \"West One Music Group\",\n            \"ReleaseDate\": \"2018-02-20 00:00:00\",\n            \"Code\": \"WOMG 033\",\n            \"Detail\": \"A vibrant, catchy and upbeat soundtrack full of optimism and whimsy, perfect for fun and playful content\",\n            \"Name\": \"Positively Playful\",\n            \"DisplayTitle\": \"WOMG 033 Positively Playful\",\n            \"Keywords\": \"\",\n            \"ID\": \"3d4487797a9bc987\",\n            \"TrackCount\": \"1\",\n            \"AlbumRate\": {\n                \"ID\": \"1fbf8d2559330f4f\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT001\",\n                \"Description\": \"FLAT001\",\n                \"Fee\": 50,\n                \"RateType\": \"Album\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"6cbeb8fab0a84e83\",\n            \"LibraryName\": \"Harvest Media\",\n            \"ReleaseDate\": \"2018-01-07 00:00:00\",\n            \"Code\": \"TEST029\",\n            \"Detail\": \"testing advanced import\",\n            \"Name\": \"Garage Rock - Pop Styles\",\n            \"DisplayTitle\": \"TEST029 Garage Rock - Pop Styles\",\n            \"Keywords\": \"testing advanced import\",\n            \"ID\": \"822308c91a7f5e66\",\n            \"TrackCount\": \"8\",\n            \"AlbumRate\": {\n                \"ID\": \"1fbf8d2559330f4f\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT001\",\n                \"Description\": \"FLAT001\",\n                \"Fee\": 50,\n                \"RateType\": \"Album\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"6cbeb8fab0a84e83\",\n            \"LibraryName\": \"Harvest Media\",\n            \"ReleaseDate\": \"2017-08-11 00:00:00\",\n            \"Code\": \"TEST060B\",\n            \"Detail\": \"Version 3.0 Staging\",\n            \"Name\": \"Multi W - OP - SP_v2\",\n            \"DisplayTitle\": \"TEST060B Multi W - OP - SP_v2\",\n            \"Keywords\": \"Album Keyword test 01\",\n            \"ID\": \"15402a8951c74f65\",\n            \"TrackCount\": \"4\",\n            \"AlbumRate\": {\n                \"ID\": \"1fbf8d2559330f4f\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT001\",\n                \"Description\": \"FLAT001\",\n                \"Fee\": 50,\n                \"RateType\": \"Album\"\n            }\n        }\n    ],\n    \"Facets\": {\n        \"Libraries\": {\n            \"Items\": [\n                {\n                    \"ID\": \"ee6542379bf2457c\",\n                    \"Name\": \"West One Music Group\",\n                    \"Count\": 11\n                },\n                {\n                    \"ID\": \"6cbeb8fab0a84e83\",\n                    \"Name\": \"Harvest Media\",\n                    \"Count\": 10\n                },\n                {\n                    \"ID\": \"a9b449ccaa8a0748\",\n                    \"Name\": \"Ingestion Tool 3.0 BETA-OUTASTFF\",\n                    \"Count\": 1\n                }\n            ]\n        },\n        \"Categories\": {\n            \"Items\": [\n                {\n                    \"ID\": \"dfea44c55902975d\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"1980's\",\n                    \"Count\": 6\n                },\n                {\n                    \"ID\": \"397fcebcf96c5b36\",\n                    \"ParentID\": \"09f3e80afb45be67\",\n                    \"Name\": \"Strings\",\n                    \"Count\": 6\n                },\n                {\n                    \"ID\": \"8d5fecc17df06d71\",\n                    \"ParentID\": \"1f29a9dd77b93f15\",\n                    \"Name\": \"Cheery\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"e097c7368c24bd6b\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"China\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"d9f84ec5bcaddd83\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"Durst, Fred\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"804e6297d0c0ab0d\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"Flow, Joe\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"cb3604ef4794897c\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"Japan\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"2e2ad956e862013d\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"North India\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"e14c27ca9adddede\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"South India\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"5fdafd8ce51a5705\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"T-123.456.789-Z\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"5038a07b58d33e63\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"T-223.456.789-Z\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"e6cca3fc6344a06f\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"1500\",\n                    \"Count\": 2\n                },\n                {\n                    \"ID\": \"64557b5cfbf4ca45\",\n                    \"ParentID\": \"09f3e80afb45be67\",\n                    \"Name\": \"Brass\",\n                    \"Count\": 2\n                },\n                {\n                    \"ID\": \"355c9dc4d0407acc\",\n                    \"ParentID\": \"09f3e80afb45be67\",\n                    \"Name\": \"Double Bass\",\n                    \"Count\": 2\n                },\n                {\n                    \"ID\": \"e22bb98cd10b3d90\",\n                    \"ParentID\": \"1f29a9dd77b93f15\",\n                    \"Name\": \"Intelligent\",\n                    \"Count\": 2\n                },\n                {\n                    \"ID\": \"51e218610b5d0d81\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"1920s\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"4896f1bfe0bdb283\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"China\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"f57c9986974b314f\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"Durst, Fred\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"2dea59413f8b443a\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"Flow, Joe\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"2f96d2b691767792\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"Japan\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"925c6c46d41b6a33\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"North India\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"c90f2f9fd13593c5\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"South India\",\n                    \"Count\": 1\n                }\n            ]\n        },\n        \"BPM\": {\n            \"Min\": 0,\n            \"Max\": 200\n        },\n        \"Duration\": {\n            \"Min\": 2,\n            \"Max\": 240\n        }\n    },\n    \"UseDatabase\": true\n}"}],"_postman_id":"3fca341d-b1f0-4f3a-ab3f-07310ef09b87"},{"name":"Get Track Details","event":[{"listen":"test","script":{"id":"d523a71a-0877-4323-8702-7b9060788951","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"28eb393e-d8ff-47c5-b239-21c2f207a852","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"ReturnAlternateVersions\":\"true\",\r\n\t\"ReturnAttributes\":\"false\",\r\n\t\"ReturnCategories\":\"false\",\r\n\t\"ReturnCategoryFacet\":\"false\",\r\n\t\"ReturnCodes\":\"false\",\r\n\t\"ReturnComposers\":\"false\",\r\n\t\"ReturnRelatedTracks\":\"false\",\r\n\t\"ReturnRightHolders\":\"true\",\r\n    \"ReturnStems\": \"false\",\r\n\t\"GetMainVersionFromAlternate\":\"false\",\r\n\t\"CuesheetOnlyCodesAndAttribute\":\"false\",\r\n\t\"ReturnInactiveTracks\":\"false\",\r\n    \"ReturnRegionOnlyTracks\":\"false\",\r\n\t\"track\":[\"{{HM_ServiceAPI_TrackID}}\"]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/gettracks/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use ReturnRates to get the track rate on the response</p>\n<ul>\n<li>ReturnRates = true</li>\n</ul>\n","urlObject":{"path":["gettracks","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"c2c1ba7c-334b-4894-94f3-81bb1ca55c8a","name":"Get Track Details (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"ReturnAlternateVersions\":\"true\",\r\n\t\"ReturnAttributes\":\"false\",\r\n\t\"ReturnCategories\":\"false\",\r\n\t\"ReturnCategoryFacet\":\"false\",\r\n\t\"ReturnCodes\":\"false\",\r\n\t\"ReturnComposers\":\"false\",\r\n\t\"ReturnRelatedTracks\":\"false\",\r\n\t\"ReturnRightHolders\":\"true\",\r\n    \"ReturnStems\": \"false\",\r\n\t\"GetMainVersionFromAlternate\":\"false\",\r\n\t\"CuesheetOnlyCodesAndAttribute\":\"false\",\r\n\t\"ReturnInactiveTracks\":\"false\",\r\n    \"ReturnRegionOnlyTracks\":\"false\",\r\n    \"ReturnRates\": \"true\",\r\n\t\"track\":[\"3d90090edb748a45\"]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/gettracks/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Nov 2023 04:09:01 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Tracks\": [\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"TrackNumber\": \"001\",\n            \"Time\": \"02:13\",\n            \"LengthSeconds\": \"133\",\n            \"Comment\": \"N/A\",\n            \"Composer\": \"Gordon Minette\",\n            \"Publisher\": \"Human Music\",\n            \"Artist\": \"\",\n            \"Name\": \"Rustic Justice 1\",\n            \"AlbumID\": \"c1f9a8886354eeef\",\n            \"LibraryID\": \"96999f76405b4013\",\n            \"ID\": \"3d90090edb748a45\",\n            \"Keywords\": \"\",\n            \"Lyrics\": \"\",\n            \"DisplayTitle\": \"Rustic Justice 1\",\n            \"alternatetitle\": \"\",\n            \"Genre\": \"N/A\",\n            \"Tempo\": \"\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"85\",\n            \"Mixout\": \"\",\n            \"Frequency\": \"0\",\n            \"Bitrate\": \"0\",\n            \"DateIngested\": \"2023-11-25 12:57:25\",\n            \"Version\": \"Main\",\n            \"Alternates\": [],\n            \"AlternateTracks\": [],\n            \"RelatedTracks\": [],\n            \"Categories\": [],\n            \"Status\": \"active\",\n            \"Relations\": [],\n            \"CDCode\": \"087\",\n            \"Composers\": [],\n            \"AlbumName\": \"087 Human Music\",\n            \"LibraryName\": \"Label StorageType External\",\n            \"FileName\": \"LSTE_001-Rustic_Justice_1-MAIN.wav\",\n            \"IsAlternate\": \"false\",\n            \"TrackAttribute\": [],\n            \"AlternateCount\": \"0\",\n            \"RightHolderIDs\": [],\n            \"RightHolders\": [\n                {\n                    \"ID\": \"357adb6f79324aa1\",\n                    \"Name\": \"Human Music\",\n                    \"CollectingSociety\": \"NS\",\n                    \"Capacity\": \"Original Publisher\",\n                    \"OwnerPerformanceShare\": \"50.00\",\n                    \"OwnerMechanicalShare\": \"100.00\",\n                    \"CollectionPerformanceShare\": \"50.00\",\n                    \"CollectionMechanicalShare\": \"100.00\",\n                    \"Territory\": \"2WL\"\n                },\n                {\n                    \"OriginalPublisher\": \"Human Music\",\n                    \"ID\": \"68230d61ad28b274\",\n                    \"FirstName\": \"Gordo \",\n                    \"MiddleName\": \"\",\n                    \"LastName\": \"Minette\",\n                    \"CollectingSociety\": \"NS\",\n                    \"Capacity\": \"Composer/Author\",\n                    \"OwnerPerformanceShare\": \"50.00\",\n                    \"CollectionPerformanceShare\": \"50.00\",\n                    \"Territory\": \"2WL\"\n                }\n            ],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"AlbumReleaseDate\": \"2021-05-21T00:00:00\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"ID\": \"d24e2dabcaa1e446\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT002\",\n                \"Description\": \"FLAT002\",\n                \"Fee\": 7,\n                \"RateType\": \"AlbumTrack\"\n            }\n        }\n    ],\n    \"CategoryFacet\": []\n}"}],"_postman_id":"28eb393e-d8ff-47c5-b239-21c2f207a852"}],"id":"68a97e34-48d7-4567-bdb6-88d4d79c5c56","_postman_id":"68a97e34-48d7-4567-bdb6-88d4d79c5c56","description":""},{"name":"Select Album/Track","item":[{"name":"Empty Cart","item":[{"name":"Create Invoice","event":[{"listen":"test","script":{"id":"07931462-9b4b-4220-bf48-fe6cb6749f7e","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","var jsonData = null;","var jsonDataInvoiceID = \"\";","var jsonDataInvoiceTotal = \"\";","","if (responseBody.indexOf(\"<?xml\") >= 0) {","    jsonData = xml2Json(responseBody);","    jsonDataInvoiceID = jsonData.responseinvoice.invoice.id;","    jsonDataInvoiceTotal = jsonData.responseinvoice.invoice.total;","} else {","    jsonData = JSON.parse(responseBody)","    if (jsonData.invoice !== null) {","        jsonDataInvoiceID = jsonData.invoice.id;","        jsonDataInvoiceTotal = jsonData.invoice.total;","    }","}","","console.log(\"HM_ServiceAPI_InvoiceID set to \" + jsonDataInvoiceID);","","postman.setEnvironmentVariable(\"HM_ServiceAPI_InvoiceID\", jsonDataInvoiceID);","postman.setEnvironmentVariable(\"HM_ServiceAPI_InvoiceTotal\", jsonDataInvoiceTotal);","","postman.setNextRequest(\"Get Invoice\");"],"type":"text/javascript"}}],"id":"faecfd36-30e5-4d03-a00b-0d581e297a33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"b7e66c0a66ae612fe1abfcabc586ba37\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"c7bbbebd4f6e31eb\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            }\r\n        ],\r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\":\"Production Name\",\r\n\t\t\t\"productiondate\":\"2020-01-08T00:00:00\",\r\n\t\t\t\"producer\":\"Producer Name\",\r\n\t\t\t\"length\":\"Total Production Length\",\r\n\t\t\t\"po\":\"Purchase Order Number\"\r\n        },\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-12-15T23:59:59\",\r\n        \"issuedate\": \"2023-12-15T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}"},"url":"{{HM_ServiceAPI_URL}}/addinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p>Creates an invoice based on the associated invoice line items.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CurrencyCode</td>\n<td>Required, the currency for which payment will be taken in</td>\n</tr>\n<tr>\n<td>DueDate</td>\n<td>Required, the date the invoice is due. This should always be set to the current date</td>\n</tr>\n<tr>\n<td>IssueDate</td>\n<td>Optional, this date the invoice was generated. This should always be set to the current date</td>\n</tr>\n<tr>\n<td>DiscountID</td>\n<td>Optional, the ID of the applied discount. This should only be used when a discount applies to an entire invoice. *Not applicable for Subscriptions. See below reference line to get to know more.</td>\n</tr>\n<tr>\n<td>Discount</td>\n<td>Optional, the amount of the applied discount.</td>\n</tr>\n<tr>\n<td>SubTotal</td>\n<td>Optional, the total amount of all line items (excluding any applicable tax or discount amounts). *Not applicable for subscriptions, the SubTotal will be filled based on the Invoice Line Item ReferenceID (SubscriptionPlanID) in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>TotalTax</td>\n<td>Optional, the total tax amount of all line items (including any applicable tax reductions based on discount amounts). *Not applicable for subscriptions, the TotalTax will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>Total</td>\n<td>Optional, the total amount of all line items (including any applicable tax or discount amounts). *Not applicable for subscriptions, the Total sum will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td>Optional, possible values are; \"CreditCard\", or \"PayPal\". This should only be set if payment is taken in advance of creating an invoice</td>\n</tr>\n<tr>\n<td>PaymentReferenceNumber</td>\n<td>Optional, this should only be set if payment is taken in advance of creating an invoice and should be the unique payment reference number returned from the payment gateway</td>\n</tr>\n<tr>\n<td>InvoiceLineItems</td>\n<td>Required, these are the items that make up in the invoice</td>\n</tr>\n<tr>\n<td>InvoiceProduction</td>\n<td>Required, this is the production that the invoice covers</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice Line Items</strong></p>\n<p>There should be one of these for every unique item on the invoice.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Quantity</td>\n<td>Required, the quantity of the line item</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>Optional, the amount of the line item (excluding any applicable tax or discount amounts). *Not applicable for subscriptions, the Line Item Amount will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>AmountTax</td>\n<td>Optional, the tax amount of the line item (including any applicable tax reductions based on discount amounts). *Not applicable for subscriptions, the item AmountTax will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>Required, the description of the line item. A good example to be used here would be the track display title.  <br />*For Subscriptions, empty is accepted.</td>\n</tr>\n<tr>\n<td>DiscountID</td>\n<td>Optional, the ID of the applied discount. This should only be used when a discount applies to this specific line item.  <br />*For subscriptions,  <br />- 1. If a plan has an automatic voucher discount (no voucher code needed from the member) it will be automatically applied to the invoice total and returned on the response.  <br />- 2. Now, to apply discount using a voucher code previously validated, refer below to Invoice Line Items References.</td>\n</tr>\n<tr>\n<td>Discount</td>\n<td>Optional, the amount of the applied discount</td>\n</tr>\n<tr>\n<td>InvoiceItemReferences</td>\n<td>Required, hese are the items that make up the line item</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice Line Items - References</strong></p>\n<p>Each unique item on the invoice will have 2 of these; one of type \"Track\" and another of type \"Rate\".</p>\n<p>For Subscription, it could either have only one reference line item of type \"Subscription\" or another type \"SubscriptionDiscount\" when voucher code applies.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceType</td>\n<td>Required, possible values are; \"Track\", \"Rate\", \"Subscription\", or \"SubscriptionDiscount\".</td>\n</tr>\n<tr>\n<td>ReferenceID</td>\n<td>Required, the ID to be used here will depend on the value selected for the ReferenceType. So it will either be a TrackID, RateID, SubscriptionID or SubscriptionDiscountID (this last one will be returned via ValidateCoupon()).</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>Optional, the Value to be used here should depend on the value selected for the ReferenceType. For example, when \"Track\" then the value should be the track display title. When \"Rate\" then the value should be the code of that Rate.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Production</strong></p>\n<p>Optional. This is not an array and will only ever be a single production. This does not need to be provided and should only be used when a production is to be specified as part of the invoice creation. If a production is provided then there are specific fields (listed below) that need to be provided as part of the production object.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Client</td>\n<td>Required, this should be the email associated with against the invoice. If it is a guest purchase then it will be the guests email, otherwise it will be the members email</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>Required, the name of the production. This would typically be the name given to the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>ProductionDate</td>\n<td>Optional, the date of the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>Producer</td>\n<td>Optional, the producer associated with the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>Length</td>\n<td>Optional, the total length of the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>PO</td>\n<td>Optional, the purchase order number associated with the production as provided by the invoicee</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<p>On invoice creation success, the response will be the invoice that was created. This will contain the relevant InvoiceID that will be needed to mark the invoice as paid or to retrieve it.</p>\n","urlObject":{"path":["addinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"7dbe7506-1448-4dc3-8fe7-35a87a57a0b2","name":"Create Invoice (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"9894b0262715fdb8\",\r\n                    \"referencetype\":\"Track\"\r\n                },\r\n                {\r\n                    \"referenceid\":\"2b9267ab6c349659\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"8c36ab94a3bc6ea1\",\r\n                    \"referencetype\":\"Track\"\r\n                },\r\n                {\r\n                    \"referenceid\":\"2b9267ab6c349659\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            }\r\n        ],\r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\":\"Production Name\",\r\n\t\t\t\"productiondate\":\"2020-01-08T00:00:00\",\r\n\t\t\t\"producer\":\"Producer Name\",\r\n\t\t\t\"length\":\"Total Production Length\",\r\n\t\t\t\"po\":\"Purchase Order Number\"\r\n        },\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-11-16T23:59:59\",\r\n        \"issuedate\": \"2023-11-16T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}"},"url":"{{HM_ServiceAPI_URL}}/addinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Dec 2023 00:23:13 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"4628e0fa73666edb\",\n        \"memberaccountid\": \"92662dfe696a497f\",\n        \"issuedate\": \"2023-12-11T11:23:13.343\",\n        \"duedate\": \"2023-12-11T11:23:13.37\",\n        \"totaltax\": 0,\n        \"subtotal\": 10,\n        \"total\": 10,\n        \"invoicenumber\": 183,\n        \"status\": \"Pending\",\n        \"currencycode\": \"AUD\"\n    },\n    \"checkoutkeys\": {\n        \"StripeAPIKey\": \"pk_test_51MjXTGINFIsu1VM9coCRmwphHaoHWhsKVYzGOqNCwNg7EArDLkFlO9bMQIbB6leGxZ8kvrhfha6dTwy8NLxR0CIg00KKMvSCPT\",\n        \"ConnectedAccountID\": \"acct_1Nseu6IGENCfkRK2\",\n        \"AccountCurrency\": \"AUD\"\n    }\n}"},{"id":"5465f938-7d12-434a-a4d6-28c2268f3e96","name":"Create Invoice (XML)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/xml"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"9894b0262715fdb8\",\r\n                    \"referencetype\":\"Track\"\r\n                },\r\n                {\r\n                    \"referenceid\":\"2b9267ab6c349659\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"8c36ab94a3bc6ea1\",\r\n                    \"referencetype\":\"Track\"\r\n                },\r\n                {\r\n                    \"referenceid\":\"2b9267ab6c349659\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            }\r\n        ],\r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\":\"Production Name\",\r\n\t\t\t\"productiondate\":\"2020-01-08T00:00:00\",\r\n\t\t\t\"producer\":\"Producer Name\",\r\n\t\t\t\"length\":\"Total Production Length\",\r\n\t\t\t\"po\":\"Purchase Order Number\"\r\n        },\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-11-16T23:59:59\",\r\n        \"issuedate\": \"2023-11-16T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}"},"url":"{{HM_ServiceAPI_URL}}/addinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Mon, 11 Dec 2023 00:59:43 GMT","enabled":true},{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<responseinvoice xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <invoice>\n        <id>f1f61e2251822ad5</id>\n        <memberaccountid>92662dfe696a497f</memberaccountid>\n        <issuedate>2023-12-11T11:59:43.593</issuedate>\n        <duedate>2023-12-11T11:59:43.607</duedate>\n        <totaltax>0.0</totaltax>\n        <subtotal>10.00</subtotal>\n        <total>10.00</total>\n        <invoicenumber>184</invoicenumber>\n        <status>Pending</status>\n        <currencycode>AUD</currencycode>\n    </invoice>\n    <checkoutkeys>\n        <stripeapikey>pk_test_51MjXTGINFIsu1VM9coCRmwphHaoHWhsKVYzGOqNCwNg7EArDLkFlO9bMQIbB6leGxZ8kvrhfha6dTwy8NLxR0CIg00KKMvSCPT</stripeapikey>\n        <connectedaccountid>acct_1Nseu6IGENCfkRK2</connectedaccountid>\n        <accountcurrency>AUD</accountcurrency>\n    </checkoutkeys>\n</responseinvoice>"}],"_postman_id":"faecfd36-30e5-4d03-a00b-0d581e297a33"}],"id":"91d59bca-add9-4af6-93dd-58c32124b32d","description":"<p>When the cart is empty, a new invoice needs to be created to start off the checkout process. Send the TrackID plus the RateID on the invoice reference line items and get the response back with the total invoice amount</p>\n","_postman_id":"91d59bca-add9-4af6-93dd-58c32124b32d"},{"name":"Filled in Shopping Cart","item":[{"name":"Get Invoice","event":[{"listen":"test","script":{"id":"b5ca7520-4b18-41d1-a7a4-0e9758017751","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Pay Invoice\");"],"type":"text/javascript"}}],"id":"b8f6aef2-fac9-4781-858e-09565018922c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"invoiceid\":\"{{HM_ServiceAPI_InvoiceID}}\",\r\n\t\"returntracks\":true,\r\n\t\"returnrates\": true,\r\n\t\"returndiscounts\": true\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p>Gets an invoice.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvoiceID</td>\n<td>Required, the unique ID of the invoice that is to be retrieved</td>\n</tr>\n<tr>\n<td>ReturnTracks</td>\n<td>Optional, default value is false. When true, the retrieved invoice will contain the tracks that make up the invoice</td>\n</tr>\n<tr>\n<td>ReturnAlbums</td>\n<td>Optional, default value is false. When true, the retrieved invoice will contain the albums that make up the invoice</td>\n</tr>\n<tr>\n<td>ReturnRates</td>\n<td>Optional, default value is false. When true, the retrieved invoice will contain the rates that make up the invoice</td>\n</tr>\n<tr>\n<td>ReturnDiscounts</td>\n<td>Optional, default value is false. When true, the retrieved invoice will contain the discounts that make up the invoice</td>\n</tr>\n<tr>\n<td>ReturnSubscriptions</td>\n<td>Optional, default value is false. When true, the retrieved invoice will containg the subscription that make up the invoice.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<p>Invoices of any status can be retrieved.</p>\n","urlObject":{"path":["getinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"22492bc2-f343-4760-b053-454923022695","name":"Get Invoice (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"invoiceid\":\"{{HM_ServiceAPI_InvoiceID}}\",\r\n\t\"returntracks\":true,\r\n\t\"returnrates\": true,\r\n    \"returnalbums\": true,\r\n\t\"returndiscounts\": true\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/10.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Date","value":"Thu, 25 Jan 2024 02:09:21 GMT","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"70365ef81c68245d\",\n        \"memberaccountid\": \"c8c0e81091a77f09\",\n        \"issuedate\": \"2024-01-25T12:56:30.663\",\n        \"duedate\": \"2024-01-25T12:56:30.81\",\n        \"totaltax\": 0,\n        \"subtotal\": 41,\n        \"total\": 41,\n        \"invoicelineitems\": [\n            {\n                \"amount\": 1,\n                \"description\": \"Track Purchase - Telemetry Alert Accept Riser Stereo Communications\",\n                \"quantity\": 1,\n                \"track\": {\n                    \"trackid\": \"23bd9bc58e66b9f5c755c3313943a2d2\",\n                    \"albumid\": \"895034c175b0423c\",\n                    \"originalfilename\": \"COMTelm_Telemetry_Alert_Accept_Riser_Stereo_Communications_AMPLAR.wav\",\n                    \"filename\": \"TLT1_001_COMTelm_Telemetry_Alert_Accept_Riser_Stereo_Communications_AMPLAR.wav.wav\",\n                    \"title\": \"COMTelm_Telemetry_Alert_Accept_Riser_Stereo_Communications_AMPLAR.wav\",\n                    \"displaytitle\": \"Telemetry Alert Accept Riser Stereo Communications\",\n                    \"tracknumber\": \"001\",\n                    \"duration\": 1,\n                    \"bitrate\": 1,\n                    \"frequency\": 0,\n                    \"description\": \"Telemetry Alert Accept Riser Stereo Communications\"\n                },\n                \"rate\": {\n                    \"id\": \"50c7165591e2efc7\",\n                    \"style\": 2,\n                    \"code\": \"TRK001\",\n                    \"description\": \"TRK001\",\n                    \"duration\": 0,\n                    \"fee\": 1\n                }\n            },\n            {\n                \"amount\": 40,\n                \"description\": \"Album Purchase - Telemetry Pack\",\n                \"quantity\": 1,\n                \"rate\": {\n                    \"id\": \"ba9387a8592a698e\",\n                    \"style\": 2,\n                    \"code\": \"ABM001\",\n                    \"description\": \"ABM001\",\n                    \"duration\": 0,\n                    \"fee\": 40\n                },\n                \"album\": {\n                    \"albumid\": \"895034c175b0423c\",\n                    \"title\": \"Telemetry\",\n                    \"displaytitle\": \"Telemetry Pack\",\n                    \"albumcode\": \"\",\n                    \"cdtitle\": \"Telemetry\",\n                    \"description\": \"A variety of synthesised Telemetry sounds ranging in pitch, modulation and notation.\"\n                }\n            }\n        ],\n        \"invoicenumber\": 54,\n        \"status\": \"Pending\",\n        \"invoiceproduction\": {\n            \"client\": \"camila@harvestmedia.net\",\n            \"title\": \"Production Name\",\n            \"producer\": \"Producer Name\",\n            \"productiondate\": \"2020-01-08T00:00:00\",\n            \"length\": \"Total Production Length\",\n            \"po\": \"Purchase Order Number\"\n        },\n        \"currencycode\": \"AUD\",\n        \"billingdetails\": {\n            \"FullName\": \"\",\n            \"CompanyName\": \"\",\n            \"Address1\": \"\",\n            \"Address2\": \"\",\n            \"City\": \"\",\n            \"State\": \"\",\n            \"PostalCode\": \"\",\n            \"Country\": \"\"\n        }\n    },\n    \"checkoutkeys\": {\n        \"ConnectedAccountID\": \"acct_1OGxoVIYSStuzdEx\",\n        \"AccountCurrency\": \"AUD\"\n    }\n}"}],"_postman_id":"b8f6aef2-fac9-4781-858e-09565018922c"},{"name":"Update Invoice","id":"a7e90fbc-b4b4-44dd-8c8a-17532dd0e1e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"id\": \"3ed96cbee349345f\",\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2024-01-20T23:59:59\",\r\n        \"issuedate\": \"2024-01-20T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"23bd9bc58e66b9f5c755c3313943a2d2\",\r\n                    \"referencetype\":\"Track\"\r\n                },\r\n                {\r\n                    \"referenceid\":\"50c7165591e2efc7\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"ff22bfbc2c027f5ccc662bcd19e272b0\",\r\n                    \"referencetype\":\"Track\"\r\n                },\r\n                {\r\n                    \"referenceid\":\"50c7165591e2efc7\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            }\r\n        ],\r\n        \"BillingDetails\": {\r\n            \"FullName\": \"cs-test-card-update\",\r\n            \"CompanyName\": \"company-update\",\r\n            \"Address1\": \"addr 1 update\",\r\n            \"Address2\": \"addr 2 update\",\r\n            \"City\": \"city update\",\r\n            \"State\": \"state update\",\r\n            \"PostalCode\": \"postal update\",\r\n            \"Country\": \"AU\"\r\n        },\r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\": \"CS-TEST-SUB\",\r\n            \"productiondate\": \"2023-08-15T00:00:00\",\r\n            \"producer\": \"CS TEST SUB\",\r\n            \"length\": \"TEST SUB Length\",\r\n            \"po\": \"Purchase Order Number SUB\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updateinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p>Updates an invoice based on the associated invoice line items.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CurrencyCode</td>\n<td>Required, the currency for which payment will be taken in</td>\n</tr>\n<tr>\n<td>DueDate</td>\n<td>Required, the date the invoice is due. This should always be set to the current date</td>\n</tr>\n<tr>\n<td>IssueDate</td>\n<td>Optional, this date the invoice was generated. This should always be set to the current date</td>\n</tr>\n<tr>\n<td>DiscountID</td>\n<td>Optional, the ID of the applied discount. This should only be used when a discount applies to an entire invoice. *Not applicable for Subscriptions. See below reference line to get to know more.</td>\n</tr>\n<tr>\n<td>Discount</td>\n<td>Optional, the amount of the applied discount</td>\n</tr>\n<tr>\n<td>SubTotal</td>\n<td>Optional, the total amount of all line items (excluding any applicable tax or discount amounts). *Not applicable for subscriptions, the SubTotal will be filled based on the Invoice Line Item ReferenceID (SubscriptionPlanID) in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>TotalTax</td>\n<td>Optional, the total tax amount of all line items (including any applicable tax reductions based on discount amounts). *Not applicable for subscriptions, the TotalTax will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>Total</td>\n<td>Optional, the total amount of all line items (including any applicable tax or discount amounts). *Not applicable for subscriptions, the Total sum will be calculated in the background and returned on the response</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td>Optional, case sensitive, possible values are; \"CreditCard\", or \"Paypal\". This should only be set if payment is taken in advance of creating an invoice</td>\n</tr>\n<tr>\n<td>PaymentReferenceNumber</td>\n<td>Optional, this should only be set if payment is taken in advance of creating an invoice and should be the unique payment reference number returned from the payment gateway</td>\n</tr>\n<tr>\n<td>InvoiceLineItems</td>\n<td>Required, these are the items that make up in the invoice</td>\n</tr>\n<tr>\n<td>InvoiceProduction</td>\n<td>Required, this is the production that the invoice covers</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice Line Items</strong></p>\n<p>There should be one of these for every unique item on the invoice.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Quantity</td>\n<td>Required, the quantity of the line item</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>Optional, the amount of the line item (excluding any applicable tax or discount amounts). *Not applicable for subscriptions, the Line Item Amount will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>AmountTax</td>\n<td>Optional, the tax amount of the line item (including any applicable tax reductions based on discount amounts). *Not applicable for subscriptions, the item AmountTax will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>Required, the description of the line item. A good example to be used here would be the track display title</td>\n</tr>\n<tr>\n<td>DiscountID</td>\n<td>Optional, the ID of the applied discount. This should only be used when a discount applies to this specific line item.  <br /><strong>*For subscriptions,</strong>  <br />- 1. If a plan has an automatic voucher discount (no voucher code needed from the member) it will be automatically applied to the invoice total and returned on the response.  <br />- 2. Now, to apply discount using a voucher code previously validated, refer below to Invoice Line Items References.</td>\n</tr>\n<tr>\n<td>Discount</td>\n<td>Optional, the amount of the applied discount</td>\n</tr>\n<tr>\n<td>InvoiceItemReferences</td>\n<td>Required, hese are the items that make up the line item</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice Line Items - References</strong></p>\n<p>Each unique item on the invoice will have 2 of these; one of type \"Track\" and another of type \"Rate\".</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceType</td>\n<td>Required, possible values are; \"Track\", \"Rate\", \"Subscription\", or \"SubscriptionDiscount\".</td>\n</tr>\n<tr>\n<td>ReferenceID</td>\n<td>Required, the ID to be used here will depend on the value selected for the ReferenceType. So it will either be a TrackID, RateID, SubscriptionID or SubscriptionDiscountID (this last one will be returned via ValidateCoupon()).</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>Optional, the Value to be used here should depend on the value selected for the ReferenceType. For example, when \"Track\" then the value should be the track display title. When \"Rate\" then the value should be the code of that Rate</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Production</strong></p>\n<p>Optional. This is not an array and will only ever be a single production. This does not need to be provided and should only be used when a production is to be specified as part of the invoice creation. If a production is provided then there are specific fields (listed below) that need to be provided as part of the production object.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Client</td>\n<td>Required, this should be the email associated with against the invoice. If it is a guest purchase then it will be the guests email, otherwise it will be the members email</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>Required, the name of the production. This would typically be the name given to the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>ProductionDate</td>\n<td>Optional, the date of the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>Producer</td>\n<td>Optional, the producer associated with the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>Length</td>\n<td>Optional, the total length of the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>PO</td>\n<td>Optional, the purchase order number associated with the production as provided by the invoicee</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<p>On invoice creation success, the response will be the invoice that was created. This will contain the relevant InvoiceID that will be needed to mark the invoice as paid or to retrieve it.</p>\n","urlObject":{"path":["updateinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"7d458001-404f-414b-87a9-448b3c6d4094","name":"Update Invoice (JSON)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"id\": \"3ed96cbee349345f\",\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2024-01-20T23:59:59\",\r\n        \"issuedate\": \"2024-01-20T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"23bd9bc58e66b9f5c755c3313943a2d2\",\r\n                    \"referencetype\":\"Track\"\r\n                },\r\n                {\r\n                    \"referenceid\":\"50c7165591e2efc7\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"ff22bfbc2c027f5ccc662bcd19e272b0\",\r\n                    \"referencetype\":\"Track\"\r\n                },\r\n                {\r\n                    \"referenceid\":\"50c7165591e2efc7\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            }\r\n        ],\r\n        \"BillingDetails\": {\r\n            \"FullName\": \"cs-test-card-update\",\r\n            \"CompanyName\": \"company-update\",\r\n            \"Address1\": \"addr 1 update\",\r\n            \"Address2\": \"addr 2 update\",\r\n            \"City\": \"city update\",\r\n            \"State\": \"state update\",\r\n            \"PostalCode\": \"postal update\",\r\n            \"Country\": \"AU\"\r\n        },\r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\": \"CS-TEST-SUB\",\r\n            \"productiondate\": \"2023-08-15T00:00:00\",\r\n            \"producer\": \"CS TEST SUB\",\r\n            \"length\": \"TEST SUB Length\",\r\n            \"po\": \"Purchase Order Number SUB\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updateinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Jan 2024 07:34:39 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"3ed96cbee349345f\",\n        \"memberaccountid\": \"c8c0e81091a77f09\",\n        \"issuedate\": \"2024-01-24T18:34:39.13\",\n        \"duedate\": \"2024-01-24T18:34:39.13\",\n        \"totaltax\": 0,\n        \"subtotal\": 2,\n        \"total\": 2,\n        \"invoicenumber\": 35,\n        \"status\": \"Pending\",\n        \"currencycode\": \"AUD\"\n    },\n    \"checkoutkeys\": {\n        \"StripeAPIKey\": \"pk_live_51MjXTGINFIsu1VM9JVHrWU3kxWokmJKXrNX7mF7exPdByryYVziz2BnWXBNa8vFPbDVKab5KKbfWtIRAumtgwAWn00juQFO095\",\n        \"ConnectedAccountID\": \"acct_1OGxoVIYSStuzdEx\",\n        \"AccountCurrency\": \"AUD\"\n    }\n}"}],"_postman_id":"a7e90fbc-b4b4-44dd-8c8a-17532dd0e1e6"},{"name":"Void Invoice","event":[{"listen":"test","script":{"id":"b5ca7520-4b18-41d1-a7a4-0e9758017751","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Pay Invoice\");"],"type":"text/javascript"}}],"id":"8a1684b2-239d-4da8-ba3f-fce66364a5d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"invoiceid\":\"{{HM_ServiceAPI_InvoiceID}}\",\r\n\t\"returntracks\":true,\r\n\t\"returnrates\": true,\r\n\t\"returndiscounts\": true\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p>Gets an invoice.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvoiceID</td>\n<td>Required, the unique ID of the invoice that is to be retrieved</td>\n</tr>\n<tr>\n<td>ReturnTracks</td>\n<td>Optional, default value is false. When true, the retrieved invoice will contain the tracks that make up the invoice</td>\n</tr>\n<tr>\n<td>ReturnAlbums</td>\n<td>Optional, default value is false. When true, the retrieved invoice will contain the albums that make up the invoice</td>\n</tr>\n<tr>\n<td>ReturnRates</td>\n<td>Optional, default value is false. When true, the retrieved invoice will contain the rates that make up the invoice</td>\n</tr>\n<tr>\n<td>ReturnDiscounts</td>\n<td>Optional, default value is false. When true, the retrieved invoice will contain the discounts that make up the invoice</td>\n</tr>\n<tr>\n<td>ReturnSubscriptions</td>\n<td>Optional, default value is false. When true, the retrieved invoice will containg the subscription that make up the invoice.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<p>Invoices of any status can be retrieved.</p>\n","urlObject":{"path":["getinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8a1684b2-239d-4da8-ba3f-fce66364a5d0"}],"id":"7aceb2c9-a55f-48d9-aca8-d14da5273d5e","description":"<p>When the user has already started a shopping cart and still want to add more items, then you need to updateinvoice() sending through all of the previous reference line items plus the new ones added.</p>\n","_postman_id":"7aceb2c9-a55f-48d9-aca8-d14da5273d5e"}],"id":"c079c55a-3e1c-4a85-92a8-55b9a2ec3896","_postman_id":"c079c55a-3e1c-4a85-92a8-55b9a2ec3896","description":""},{"name":"Checkout Confirmation Page","item":[{"name":"Pay Invoice","event":[{"listen":"test","script":{"id":"daa1a982-c9f6-47a9-a621-51b142d6ae5f","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Search Invoice\");"],"type":"text/javascript"}}],"id":"1195ed3c-b82c-44b7-9511-d9d8ef631557","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoicepayment\": {\r\n        \"invoiceid\": \"b553f80de383466d\",\r\n        \"amount\": 1.10,\r\n        \"contactname\": \"camila@harvestmedia.net\",\r\n        \"date\": \"2024-02-07T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"paymentreferencenumber\": \"\",\r\n        \"paymentstatus\": \"Processing\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/payinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p>Pays a pending state invoice.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Payment</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvoiceID</td>\n<td>Required, the unique ID of the invoice that is moving to a paid status</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>Required, the amount of the associated invoice that was paid</td>\n</tr>\n<tr>\n<td>ContactName</td>\n<td>Required, the name to be associated against the payment</td>\n</tr>\n<tr>\n<td>Date</td>\n<td>Required, the date payment was made</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td>Required, possible values are; \"CreditCard\", or \"PayPal\"</td>\n</tr>\n<tr>\n<td>PaymentReferenceNumber</td>\n<td>Required, possible values are; \"CreditCard\", or \"PayPal\"</td>\n</tr>\n<tr>\n<td>PaymentStatus</td>\n<td>Required, the unique payment reference number returned from the payment gateway</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Misc</strong></p>\n<p>There should be one of these for every unique item on the invoice.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SendEmail</td>\n<td>Optional, default value is false. If true an email will be sent with an associated PDF invoice attached to it</td>\n</tr>\n<tr>\n<td>BCCEmail</td>\n<td>Optional, email address to be BCC'd. This is not a comma-separated list of email addresses, but rather a single email address</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<p>On invoice creation success, the response will be the invoice that was paid. This will contain the relevant InvoiceID that will be needed to mark the invoice as paid or to retrieve it.</p>\n","urlObject":{"path":["payinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"6316044d-123b-4485-bde2-3b81ad16a41a","name":"Pay Invoice (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoicepayment\": {\r\n        \"invoiceid\": \"4628e0fa73666edb\",\r\n        \"amount\": 15.00,\r\n        \"contactname\": \"camila@harvestmedia.net\",\r\n        \"date\": \"2023-12-11T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"paymentreferencenumber\": \"\",\r\n        \"paymentstatus\": \"Processing\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/payinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Dec 2023 01:10:20 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"4628e0fa73666edb\",\n        \"memberaccountid\": \"92662dfe696a497f\",\n        \"issuedate\": \"2023-12-11T12:00:32.123\",\n        \"duedate\": \"2023-12-11T12:00:32.137\",\n        \"totaltax\": 0,\n        \"subtotal\": 15,\n        \"total\": 15,\n        \"invoicenumber\": 183,\n        \"status\": \"Processing\",\n        \"currencycode\": \"AUD\"\n    },\n    \"checkoutdetail\": {\n        \"clientsecret\": \"pi_3OLy0lIGENCfkRK204bsv1Hf_secret_v5erMRdpDoMKjrK2H0Jzs82QE\",\n        \"checkoutconfirmtype\": \"Payment\"\n    }\n}"}],"_postman_id":"1195ed3c-b82c-44b7-9511-d9d8ef631557"}],"id":"61a701fd-2ca9-44f7-8f4a-16ccff919aec","_postman_id":"61a701fd-2ca9-44f7-8f4a-16ccff919aec","description":""},{"name":"Member Profile Page","item":[{"name":"Get Member Details","event":[{"listen":"test","script":{"id":"2efe7b8a-4c54-4a50-b233-8f408918664b","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"1f0ba0a6-cba4-4a83-a26f-fa98becbabd3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getmember/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["getmember","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1f0ba0a6-cba4-4a83-a26f-fa98becbabd3"},{"name":"Request Password Change","event":[{"listen":"test","script":{"id":"23208e14-709a-4caa-8cfc-31b0cbc43ed3","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"a710e7af-a488-4841-9d93-94cb5bf1e3f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"Username\": \"\",\r\n\t\"Email\": \"test@test.com\",\r\n\t\"LanguageCode\":  \"EN\",\r\n\t\"ResetLink\":\"https://yourdomain.com/reset?token={token}\",\r\n\t\"TokenMergeString\": \"{token}\",\r\n\t\"UseShortUrl\": false,\r\n\t\"ResetTokenExpiryHours\": 2\r\n}"},"url":"{{HM_ServiceAPI_URL}}/sendpasswordresetlinkemail/{{HM_ServiceAPI_Token}}","urlObject":{"path":["sendpasswordresetlinkemail","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a710e7af-a488-4841-9d93-94cb5bf1e3f0"}],"id":"2abd2f0b-3564-4434-a9a4-a198b495c67c","_postman_id":"2abd2f0b-3564-4434-a9a4-a198b495c67c","description":""},{"name":"My Music","item":[{"name":"Search Invoice","event":[{"listen":"test","script":{"id":"b5ca7520-4b18-41d1-a7a4-0e9758017751","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Get Invoice Document\");"],"type":"text/javascript"}}],"id":"de00b830-323f-43e1-ba30-1abb8ff7f5e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"fromamount\":0,\r\n\t\"fromdate\":\"2023-12-08T22:19:27.95\",\r\n\t\"toamount\":1000,\r\n\t\"todate\":\"2024-12-16T22:19:27.95\",\r\n\t\"limit\":2,\r\n\t\"skip\":0,\r\n    \"ReturnInvoiceItems\": \"true\",\r\n    \"ReferenceLineItemType\": \"Album\",\r\n    \"Status\": \"Pending\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/searchinvoices/{{HM_ServiceAPI_MemberToken}}","description":"<p>Search invoices by amounts and dates.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FromAmount</td>\n<td>Optional, default value is 0. The lower invoice amount for which to filter by</td>\n</tr>\n<tr>\n<td>FromDate</td>\n<td>Optional, the lower due date for which to filter by</td>\n</tr>\n<tr>\n<td>ToAmount</td>\n<td>Optional, the upper invoice amount for which to filter by</td>\n</tr>\n<tr>\n<td>ToDate</td>\n<td>Optional, the upper due date for which to filter by</td>\n</tr>\n<tr>\n<td>Skip</td>\n<td>Optional, the number of results to skip</td>\n</tr>\n<tr>\n<td>Limit</td>\n<td>Required, the number of results to return</td>\n</tr>\n<tr>\n<td>ReferenceLineItemType</td>\n<td>Optional, the type of reference line item to be filtered; possible values are: Album, Track or Subscription. *In the case of invoices containing reference line items mixed with Tracks and Albums, then searching by either Track or Album will return them.</td>\n</tr>\n<tr>\n<td>Status</td>\n<td>Optional, the invoice status to return; possible values are: Pending, Void, Paid, Draft, Processing or Deleted</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["searchinvoices","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"dea04ceb-f4b7-4afa-a907-36027af13d19","name":"Search Invoice","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"fromamount\":0,\r\n\t\"fromdate\":\"2023-12-08T22:19:27.95\",\r\n\t\"toamount\":1000,\r\n\t\"todate\":\"2024-12-16T22:19:27.95\",\r\n\t\"limit\":5,\r\n\t\"skip\":0,\r\n    \"ReturnInvoiceItems\": \"true\",\r\n    \"ReferenceLineItemType\": \"Album\",\r\n    \"Status\": \"Pending\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/searchinvoices/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 04 Mar 2024 10:08:29 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoices\": [\n        {\n            \"id\": \"ed551a129ecef961\",\n            \"memberaccountid\": \"c8c0e81091a77f09\",\n            \"issuedate\": \"2024-03-04T20:28:54.753\",\n            \"duedate\": \"2024-03-04T20:28:55.117\",\n            \"UTCOffset\": 11,\n            \"totaltax\": 0.1,\n            \"subtotal\": 1,\n            \"total\": 1.1,\n            \"invoicelineitems\": [\n                {\n                    \"amount\": 1,\n                    \"description\": \"Track Purchase - PP-19 Close & Distant 01\",\n                    \"quantity\": 1,\n                    \"amounttax\": 0.1,\n                    \"track\": {\n                        \"trackid\": \"d84fab3f77ab261ea11b06aafae9b741\",\n                        \"albumid\": \"c9614bd63c4e957a\",\n                        \"originalfilename\": \"GUNAuto_EPICGUNS_PP-19_Close & Distant 01_AMPLAR.wav\",\n                        \"filename\": \"FA1_001_GUNAuto_EPICGUNS_PP-19_Close & Distant 01_AMPLAR.wav.wav\",\n                        \"title\": \"GUNAuto_EPICGUNS_PP-19_Close & Distant 01_AMPLAR.wav\",\n                        \"displaytitle\": \"PP-19 Close & Distant 01\",\n                        \"tracknumber\": \"001\",\n                        \"duration\": 14,\n                        \"bitrate\": 14,\n                        \"frequency\": 0,\n                        \"description\": \"PP-19 Close & Distant 01\"\n                    },\n                    \"rate\": {\n                        \"id\": \"50c7165591e2efc7\",\n                        \"style\": 2,\n                        \"code\": \"TRK001\",\n                        \"description\": \"TRK001\",\n                        \"duration\": 0,\n                        \"fee\": 1\n                    },\n                    \"album\": {\n                        \"albumid\": \"c9614bd63c4e957a\",\n                        \"title\": \"Firearms\",\n                        \"displaytitle\": \"Firearms\",\n                        \"albumcode\": \"\",\n                        \"cdtitle\": \"Firearms\",\n                        \"description\": \"Guns from the battle field at various perspectives and distances, including handling and trigger sounds.\"\n                    }\n                }\n            ],\n            \"invoicenumber\": 479,\n            \"paidamount\": 0,\n            \"status\": \"Pending\",\n            \"membername\": \"Company - Camila Silva (camila@harvestmedia.net)\",\n            \"currencycode\": \"AUD\",\n            \"billingdetails\": {\n                \"FullName\": \"\",\n                \"CompanyName\": \"\",\n                \"Address1\": \"\",\n                \"Address2\": \"\",\n                \"City\": \"\",\n                \"State\": \"\",\n                \"PostalCode\": \"\",\n                \"Country\": \"\"\n            }\n        },\n        {\n            \"id\": \"467356bc5d7e49f6\",\n            \"memberaccountid\": \"c8c0e81091a77f09\",\n            \"issuedate\": \"2024-03-04T16:55:35.87\",\n            \"duedate\": \"2024-03-04T16:55:36.04\",\n            \"UTCOffset\": 11,\n            \"totaltax\": 0.1,\n            \"subtotal\": 1,\n            \"total\": 1.1,\n            \"invoicelineitems\": [\n                {\n                    \"amount\": 1,\n                    \"description\": \"Album Purchase - Firearms\",\n                    \"quantity\": 1,\n                    \"amounttax\": 0.1,\n                    \"rate\": {\n                        \"id\": \"cc683a508e588e2f\",\n                        \"style\": 2,\n                        \"code\": \"TST\",\n                        \"description\": \"TST\",\n                        \"duration\": 0,\n                        \"fee\": 1\n                    },\n                    \"album\": {\n                        \"albumid\": \"c9614bd63c4e957a\",\n                        \"title\": \"Firearms\",\n                        \"displaytitle\": \"Firearms\",\n                        \"albumcode\": \"\",\n                        \"cdtitle\": \"Firearms\",\n                        \"description\": \"Guns from the battle field at various perspectives and distances, including handling and trigger sounds.\"\n                    }\n                }\n            ],\n            \"invoicenumber\": 478,\n            \"paidamount\": 0,\n            \"status\": \"Pending\",\n            \"membername\": \"Company - Camila Silva (camila@harvestmedia.net)\",\n            \"currencycode\": \"AUD\",\n            \"billingdetails\": {\n                \"FullName\": \"\",\n                \"CompanyName\": \"\",\n                \"Address1\": \"\",\n                \"Address2\": \"\",\n                \"City\": \"\",\n                \"State\": \"\",\n                \"PostalCode\": \"\",\n                \"Country\": \"\"\n            }\n        }\n    ],\n    \"total\": 2\n}"}],"_postman_id":"de00b830-323f-43e1-ba30-1abb8ff7f5e6"},{"name":"Get Invoice","event":[{"listen":"test","script":{"id":"b5ca7520-4b18-41d1-a7a4-0e9758017751","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Pay Invoice\");"],"type":"text/javascript"}}],"id":"7a4111c8-2332-42ea-b741-c0448d5c5f47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"invoiceid\":\"{{HM_ServiceAPI_InvoiceID}}\",\r\n\t\"returntracks\":true,\r\n\t\"returnrates\": true,\r\n\t\"returndiscounts\": true\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p>Gets an invoice.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvoiceID</td>\n<td>Required, the unique ID of the invoice that is to be retrieved</td>\n</tr>\n<tr>\n<td>ReturnTracks</td>\n<td>Optional, default value is false. When true, the retrieved invoice will contain the tracks that make up the invoice</td>\n</tr>\n<tr>\n<td>ReturnRates</td>\n<td>Optional, default value is false. When true, the retrieved invoice will contain the rates that make up the invoice</td>\n</tr>\n<tr>\n<td>ReturnDiscounts</td>\n<td>Optional, default value is false. When true, the retrieved invoice will contain the discounts that make up the invoice</td>\n</tr>\n<tr>\n<td>ReturnSubscriptions</td>\n<td>Optional, default value is false. When true, the retrieved invoice will containg the subscription that make up the invoice.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<p>Invoices of any status can be retrieved.</p>\n","urlObject":{"path":["getinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"c630c998-587c-413e-bf76-f4b4c47f0bff","name":"Get Invoice (XML)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/xml"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"<requestgetinvoice>\r\n  <invoiceid>1566j98a142a09625v</invoiceid>\r\n  <returndiscounts>true</returndiscounts>\r\n  <returnrates>true</returnrates>\r\n  <returntracks>true</returntracks>\r\n</requestgetinvoice>","options":{"raw":{"language":"xml"}}},"url":"{{HM_ServiceAPI_URL}}/getinvoice/2f30cde70021a012fc1f575w3471eam7"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Fri, 10 Jan 2020 02:12:43 GMT","enabled":true},{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<responseinvoice xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <invoice>\n        <id>1566j98a142a09625v</id>\n        <memberaccountid>0ua1b339158cd76hy0</memberaccountid>\n        <issuedate>2020-01-10T11:04:22.387</issuedate>\n        <duedate>2020-02-09T11:04:22.387</duedate>\n        <totaltax>0.09</totaltax>\n        <subtotal>0.91</subtotal>\n        <total>1.00</total>\n        <invoicelineitems>\n            <amount>0.91</amount>\n            <description />\n            <quantity>1.00</quantity>\n            <amounttax>0.09</amounttax>\n            <track>\n                <trackid>91tc4e77d6a6f9d322</trackid>\n                <albumid>t56ed5a90da8c7cg4t</albumid>\n                <originalfilename>ALT001_trk1_STARFISH_s_kolosov.wav</originalfilename>\n                <filename>ALT001_trk1_STARFISH_s_kolosov.wav</filename>\n                <title>Starfish</title>\n                <displaytitle>Starfish</displaytitle>\n                <tracknumber>001</tracknumber>\n                <duration>219</duration>\n                <bitrate>219</bitrate>\n                <frequency>48000</frequency>\n                <description>Emotive guitar mood / glitzy and dreamy</description>\n            </track>\n            <rate>\n                <id>u14b6a2cff05u05ff3</id>\n                <style>Flat</style>\n                <code>XADTV 1</code>\n                <description>ADVERTISING &gt; TV &gt; 1 country (see Ratecard)</description>\n                <duration>0</duration>\n                <fee>1155.00</fee>\n            </rate>\n        </invoicelineitems>\n        <invoicenumber>6351</invoicenumber>\n        <status>Paid</status>\n        <invoiceproduction>\n            <client>first.last@company.net</client>\n            <title>Production Name</title>\n            <producer>Producer Name</producer>\n            <productiondate>2020-01-08T00:00:00</productiondate>\n            <length>Total Production Length</length>\n            <po>Purchase Order Number</po>\n        </invoiceproduction>\n        <currencycode>AUD</currencycode>\n    </invoice>\n</responseinvoice>"},{"id":"d1a9a14a-3d64-4604-a2ea-ead1731eb990","name":"Get Invoice (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","disabled":true}],"body":{"mode":"raw","raw":"{\r\n\t\"invoiceid\":\"d4ccc741ce7a4998\",\r\n\t\"returntracks\":false,\r\n\t\"returnrates\": false,\r\n\t\"returndiscounts\": false,\r\n    \"returnsubscriptions\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Jan 2020 00:30:06 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"1566j98a142a09625v\",\n        \"memberaccountid\": \"0ua1b339158cd76hy0\",\n        \"issuedate\": \"2020-01-10T11:04:22.387\",\n        \"duedate\": \"2020-02-09T11:04:22.387\",\n        \"totaltax\": 0.09,\n        \"subtotal\": 0.91,\n        \"total\": 1,\n        \"invoicelineitems\": [\n            {\n                \"amount\": 0.91,\n                \"description\": \"\",\n                \"quantity\": 1,\n                \"amounttax\": 0.09,\n                \"track\": {\n                    \"trackid\": \"91tc4e77d6a6f9d322\",\n                    \"albumid\": \"t56ed5a90da8c7cg4t\",\n                    \"originalfilename\": \"ALT001_trk1_STARFISH_s_kolosov.wav\",\n                    \"filename\": \"ALT001_trk1_STARFISH_s_kolosov.wav\",\n                    \"title\": \"Starfish\",\n                    \"displaytitle\": \"Starfish\",\n                    \"tracknumber\": \"001\",\n                    \"duration\": 219,\n                    \"bitrate\": 219,\n                    \"frequency\": 48000,\n                    \"description\": \"Emotive guitar mood / glitzy and dreamy\"\n                },\n                \"rate\": {\n                    \"id\": \"u14b6a2cff05u05ff3\",\n                    \"style\": 2,\n                    \"code\": \"XADTV 1\",\n                    \"description\": \"ADVERTISING > TV > 1 country (see Ratecard)\",\n                    \"duration\": 0,\n                    \"fee\": 1155\n                }\n            }\n        ],\n        \"invoicenumber\": 6351,\n        \"status\": \"Pending\",\n        \"invoiceproduction\": {\n            \"client\": \"first.last@company.net\",\n            \"title\": \"Production Name\",\n            \"producer\": \"Producer Name\",\n            \"productiondate\": \"2020-01-08T00:00:00\",\n            \"length\": \"Total Production Length\",\n            \"po\": \"Purchase Order Number\"\n        },\n        \"currencycode\": \"AUD\"\n    }\n}"}],"_postman_id":"7a4111c8-2332-42ea-b741-c0448d5c5f47"},{"name":"Implementation Guide Download Formats","id":"b6540276-94a5-4543-8198-c7751d3ba7c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"INFO:","header":[],"url":"","description":"<h2 id=\"overview\">Overview</h2>\n<p>The following section outlines the formats that are available for streaming as well as immediate downloads.</p>\n<h3 id=\"streaming\">Streaming</h3>\n<p>Formats are available for streaming;</p>\n<ul>\n<li>MP3 (128kbps, 44.1kHz) </li>\n<li>MP3 (96kbps, 44.1kHz)</li>\n</ul>\n<h3 id=\"immediate-downloads\">Immediate Downloads</h3>\n<p>Track downloads will always be available immediately. Album, Playlist and Track Version bundles will download immediately only when the fileformat is available in the HarvestMedia repository.</p>\n<p>Formats available for immediate download include:</p>\n<ul>\n<li>MP3 (320kbps 44.1kHz)</li>\n<li>MP3 (128kbps, 44.1kHz)</li>\n<li>MP3 (96kbps, 44.1kHz)</li>\n</ul>\n<p>There are dozens of other formats available which can be dynamically trans-coded and delivered to members via email download links. This generally takes between 5-15 minutes to be delivered.</p>\n<p>If you have originator labels you can ingest your preferred WAV format (ie: WAV 16bit, 44.1kHz) which will be available for immediate download. We will automatically create a matching AIFF format with the same sample and bit rates behind the scenes for use.</p>\n<p>If you sub publish labels you can not control the WAV formats provided by the originators so we suggestion sticking to the above mentioned available formats.</p>\n","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"b6540276-94a5-4543-8198-c7751d3ba7c6"},{"name":"Implementation Guide - Stems","id":"8a072e81-6159-4acb-8d93-c8d38bd99173","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"INFO:","header":[],"url":"","description":"<h2 id=\"overview\">Overview</h2>\n<p>The following section outlines the availability of stem downloads.</p>\n<h3 id=\"downloading-as-a-package\">Downloading as a Package</h3>\n<p>Presently, it is possible to request a download of stems as a ZIP package only. To do so, you request the <code>type: \"stems\"</code>, the <code>format:\"wav\"</code> and the <code>identifier:</code> . The result will be a download token that when used will yield a ZIP that contains all of the stems only. It will not contain the main track.</p>\n<h3 id=\"downloading-limitations\">Downloading limitations</h3>\n<p>It is not possible to download an individual stem or to be able to download a main track with the stems as well.</p>\n","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"8a072e81-6159-4acb-8d93-c8d38bd99173"},{"name":"Validate Music Download","id":"cf32559b-389f-4348-8b21-ed2b2d63eea0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"Identifier\":\"b553f80de383466d\",\r\n\t\"ContentIDs\":\"\",\r\n\t\"DownloadType\":\"track\",\r\n\t\"Format\":[\"19b8f5935503adde\"],\r\n\t\"TrimEndSecs\":0,\r\n\t\"TrimStartSecs\":0,\r\n\t\"IncludeVersionCheck\":false\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost/hmp_service/HMP-WS.svc/validatemusicdownloadrequest/{{HM_ServiceAPI_MemberToken}}","description":"<p>Returns the availability of a download and whether this can be downloaded immediately.</p>\n<p>Downloads that cannot be downloaded immediately will be emailed when requested.</p>\n<p><strong>Request elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>downloadtype</td>\n<td>This element should be either; track, album, playlist, favourites, workspace, tags or stems</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>identifier</td>\n<td>The identifier should be either; track, album, playlist, favourites, workspace or tags.  <br />  <br />* For track, one or more track ids separated by commas  <br />* For album, one album id  <br />* For playlist, one playlist id  <br />* For favourites; zero, one or more content ids separated by commas. If none are provided, all of the member’s favourites will be downloaded, otherwise only the specified  <br />* For stems; one track id (the track id of the main track) is required</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>format</td>\n<td>Format should be an encrypted format identifier returned from getserviceinfo. Alternatively specify \"wav\" or \"aiff\" or \"mp3\" in the fileformat field to get the best available formats for these types.  <br />  <br />* When <code>type</code> is stems, then format must be \"wav\"</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>trimstartsecs &amp; trimendsecs</td>\n<td>Trim values are in seconds only and are only used for single track downloads. Use 0 for both values otherwise</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>includeversioncheck</td>\n<td>If you would like to request a download with all versions related to the requested tracks (used in track, playlist and favourite downloads), set the \"includeversioncheck\" parameter to true. Please note that when the downloadtype is album, includeversions parameter will be ignored and always return track versions.</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Notes regarding a successful response</strong></p>\n<ul>\n<li>The responsevalidatemusicdownload returns an array of valid music downloads objects.</li>\n<li>The downloadallowed element indicates if the download is permitted for the memberoken.</li>\n<li>The directdownloadallowed element indicates if the download is immediate or needs to go via the email process.</li>\n</ul>\n","urlObject":{"protocol":"http","path":["hmp_service","HMP-WS.svc","validatemusicdownloadrequest","{{HM_ServiceAPI_MemberToken}}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"82ec030c-acf4-40bd-9780-9f85f39d2664","name":"Validate Music Download (XML)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/xml"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"<validatemusicdownloadrequest>\r\n    <identifier>af423fa8f901e427xf</identifier>\r\n    <downloadtype>track</downloadtype>\r\n    <format>bht23fa8w4f0kio277</format>\r\n    <trimstartsecs>0</trimstartsecs>\r\n    <trimendsecs>0</trimendsecs>\r\n    <includeversioncheck>false</includeversioncheck>\r\n</validatemusicdownloadrequest>","options":{"raw":{"language":"xml"}}},"url":"{{HM_ServiceAPI_URL}}/validatemusicdownloadrequest/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Date","value":"Wed, 21 Aug 2019 06:07:34 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Content-Length","value":"476","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<responsevalidatemusicdownload xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <validatemusicdownloads>\n        <validatemusicdownload>\n            <format>bht23fa8w4f0kio277</format>\n            <includeversions>false</includeversions>\n            <downloadallowed>true</downloadallowed>\n            <directdownloadallowed>true</directdownloadallowed>\n        </validatemusicdownload>\n    </validatemusicdownloads>\n    <maxdownloads>0</maxdownloads>\n</responsevalidatemusicdownload>"},{"id":"a10dff71-6141-433d-9f19-a960e6bfa0ce","name":"Validate Music Download (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"Identifier\":\"af423fa8f901e427xf\",\r\n\t\"ContentIDs\":\"\",\r\n\t\"DownloadType\":\"track\",\r\n\t\"Format\":[\"bht23fa8w4f0kio277\"],\r\n\t\"TrimEndSecs\":0,\r\n\t\"TrimStartSecs\":0,\r\n\t\"IncludeVersionCheck\":false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/validatemusicdownloadrequest/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Date","value":"Wed, 21 Aug 2019 06:05:11 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Content-Length","value":"330","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ValidateMusicDownloads\": {\n        \"ValidateMusicDownloadList\": [\n            {\n                \"Format\": \"bht23fa8w4f0kio277\",\n                \"IncludeVersions\": false,\n                \"DownloadAllowed\": true,\n                \"DirectDownloadAllowed\": true\n            }\n        ]\n    },\n    \"MaxDownloads\": 0,\n    \"BlockedContentIDs\": []\n}"}],"_postman_id":"cf32559b-389f-4348-8b21-ed2b2d63eea0"},{"name":"Get Music Download","id":"e338d498-6689-4ba8-9fd1-46e3c3afc6cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"Identifier\":\"9894b0262715fdb8\",\r\n\t\"DownloadType\":\"track\",\r\n\t\"Format\":\"19b8f5935503adde\",\r\n\t\"TrimStartSecs\":0,\r\n\t\"TrimEndSecs\":0,\r\n\t\"Email\":\"camila.schevenin@gmail.com\",\r\n\t\"IsShare\":false,\r\n\t\"Message\":\"\",\r\n\t\"SenderEmail\":\"\",\r\n\t\"ForceEmail\":false,\r\n\t\"IncludeVersions\":false,\r\n\t\"VersionFolderName\":\"\",\r\n\t\"DownloadFileName\":\"\",\r\n\t\"CuesheetFileName\":\"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost/hmp_service/HMP-WS.svc/getmusicdownload/{{HM_ServiceAPI_MemberToken}}","description":"<p>GetDownload returns download tokens which can be downloaded immediately or sends a download link directly to specified email.</p>\n<p>Whenever download tokens are returned use the AssetUrls.DirectDownloadUrl URL regardless of type of download (To access AssetURLs see getserviceinfo).</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>downloadtype</td>\n<td>This element should be either; track, album, playlist, favourites, workspace or tags</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>identifier</td>\n<td>The identifier should be either; track, album, playlist, favourites, workspace, tags or stems.  <br />  <br />* For track, one or more track ids separated by commas.  <br />* For album, one album id. For playlist, one playlist id.  <br />* For favourites; zero, one or more content ids separated by commas. If none are provided, all of the member’s favourites will be downloaded, otherwise only the specified  <br />* For stems; one track id (the track id of the main track) is required</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>format</td>\n<td>Format should be an encrypted format identifier returned from getserviceinfo. Alternatively specify \"wav\" or \"aiff\" or \"mp3\" in the fileformat field to get the best available formats for these types  <br />  <br />* When <code>type</code> is stems, then format must be \"wav\"</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>trimstartsecs &amp; trimendsecs</td>\n<td>Trim values are in seconds only and are only used for single track downloads. Use 0 for both values otherwise</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>email</td>\n<td>Recipient of the download email</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>isshare</td>\n<td>Setting isshare to true will use the \"share music\" email templates to send an email. If set to true, no attempt is made to get a download token for immediate use</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>forceemail</td>\n<td>Always send an email, do not attempt to get a download token for immediate use</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>message</td>\n<td>This is the message body for the email isshare or forceemail</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>senderemail</td>\n<td>This is the member email that the download is sent from</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>includeversions</td>\n<td>If you would like to request a download with all versions related to the requested tracks (used in track, playlist and favourite downloads), set the \"includeversions\" parameter to true in the requestDownload body. This will result in the zip containing related versions.</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>versionfoldername</td>\n<td>This is the name of the folder that versions will appear within when \"includeversions\" is true. A default name will be provided if you chose to not set this</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>downloadfilename</td>\n<td>The downloaded file name can be set here. The track download filename convention can be configured in the admin. The other download formats are formatted as follows. For playlists it is {playlist.name}.zip. For albums it is {album.displaytitle}.zip. For favorites it is myfavourites.zip. For workspace it is workspace.zip. For tags it is tags.zip. Multiple track ids will appear as {accountcode}<em>download</em>{ddmmyyyy}_{counter}</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>cuesheetfilename</td>\n<td>The cuesheet file name can be set here. The track cuesheet filename convention can be configured in the admin however it is possible to override it here to anything you require</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Notes regarding a Successful Response (isshare= “false” and forceemail= “false”)</strong></p>\n<p>The responsedownload returns an array of token objects. In most cases, there will be just one token, but where the download contains many tracks (typically in WAV or AIFF formats), there will be multiple parts to the download. In these cases, the package is split into multiple ZIP archives (up to 2GB in size each), and each token represents one of these ZIP files, and the corresponding part represents the ZIP file’s order within the package set.</p>\n<p>Merge each TokenValue from the response object with AssetUrls.DirectDownloadUrl and make a request to it. You will need to launch a download for each token/part pair in this array.</p>\n<p>Where multiple download tokens are returned, we recommend simultaneous requests to each link as these tokens have a very brief expiry time.</p>\n<p><strong>Successful Response (isshare= “true” or forceemail=\"true)</strong></p>\n<p>If the response body returns “requestsent=true” then the download will be sent using the email process. The member will receive an email with a download link.</p>\n","urlObject":{"protocol":"http","path":["hmp_service","HMP-WS.svc","getmusicdownload","{{HM_ServiceAPI_MemberToken}}"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"b4946335-1db1-4834-87bc-d3cf2abc9783","name":"Get Music Download (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"Identifier\":\"1f9345scb3836e55c3\",\r\n\t\"DownloadType\":\"track\",\r\n\t\"Format\":\"mp3\",\r\n\t\"TrimStartSecs\":0,\r\n\t\"TrimEndSecs\":0,\r\n\t\"Email\":\"email@domain.com\",\r\n\t\"IsShare\":false,\r\n\t\"Message\":\"\",\r\n\t\"SenderEmail\":\"\",\r\n\t\"ForceEmail\":false,\r\n\t\"IncludeVersions\":false,\r\n\t\"VersionFolderName\":\"\",\r\n\t\"DownloadFileName\":\"\",\r\n\t\"CuesheetFileName\":\"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getmusicdownload/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Date","value":"Fri, 23 Aug 2019 01:39:32 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Content-Length","value":"199","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"RequestSent\": false,\n    \"DownloadTokens\": [\n        {\n            \"TokenValue\": \"37ecc842dac353708v941e8e09vf42c3l0\"\n        }\n    ],\n    \"BlockedContentIDs\": []\n}"},{"id":"209bb1a3-aebb-4024-b782-99480bff7b06","name":"Get Music Download (XML)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/xml"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"<downloadextended>\r\n    <identifier>1f9345scb3836e55c3</identifier>\r\n    <downloadtype>track</downloadtype>\r\n    <format>mp3</format>\r\n    <trimstartsecs>0</trimstartsecs>\r\n    <trimendsecs>0</trimendsecs>\r\n    <email>email@domain.com</email>\r\n    <isshare>false</isshare>\r\n    <message></message>\r\n    <senderemail></senderemail>\r\n    <forceemail>false</forceemail>\r\n    <includeversions>false</includeversions>\r\n    <versionfoldername></versionfoldername>\r\n    <downloadfilename></downloadfilename>\r\n    <cuesheetfilename></cuesheetfilename>\r\n</downloadextended>","options":{"raw":{"language":"xml"}}},"url":"{{HM_ServiceAPI_URL}}/getmusicdownload/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Date","value":"Fri, 23 Aug 2019 01:43:42 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Content-Length","value":"359","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<responsemusicdownload xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <requestsent>false</requestsent>\n    <downloadtokens>\n        <downloadtoken>\n            <tokenvalue>37ecc842dac353708v941e8e09vf42c3l0</tokenvalue>\n            <part xsi:nil=\"true\"/>\n        </downloadtoken>\n    </downloadtokens>\n</responsemusicdownload>"},{"id":"c9ac4727-9fc7-4da4-a573-3e4435040376","name":"Get Music Download Stems (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"Identifier\":\"1f9345scb3836e55c3\",\r\n\t\"DownloadType\":\"stems\",\r\n\t\"Format\":\"wav\",\r\n\t\"TrimStartSecs\":0,\r\n\t\"TrimEndSecs\":0,\r\n\t\"Email\":\"email@domain.com\",\r\n\t\"IsShare\":false,\r\n\t\"Message\":\"\",\r\n\t\"SenderEmail\":\"\",\r\n\t\"ForceEmail\":false,\r\n\t\"IncludeVersions\":false,\r\n\t\"VersionFolderName\":\"\",\r\n\t\"DownloadFileName\":\"\",\r\n\t\"CuesheetFileName\":\"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getmusicdownload/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Date","value":"Fri, 23 Aug 2019 01:39:32 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Content-Length","value":"199","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"RequestSent\": false,\n    \"DownloadTokens\": [\n        {\n            \"TokenValue\": \"37ecc842dac353708v941e8e09vf42c3l0\"\n        }\n    ],\n    \"BlockedContentIDs\": []\n}"},{"id":"ae204207-b0ca-457c-96aa-c85ef2ebd7b5","name":"Get Music Download Stems (XML)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/xml"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"<downloadextended>\r\n    <identifier>1f9345scb3836e55c3</identifier>\r\n    <downloadtype>stems</downloadtype>\r\n    <format>wav</format>\r\n    <trimstartsecs>0</trimstartsecs>\r\n    <trimendsecs>0</trimendsecs>\r\n    <email>email@domain.com</email>\r\n    <isshare>false</isshare>\r\n    <message></message>\r\n    <senderemail></senderemail>\r\n    <forceemail>false</forceemail>\r\n    <includeversions>false</includeversions>\r\n    <versionfoldername></versionfoldername>\r\n    <downloadfilename></downloadfilename>\r\n    <cuesheetfilename></cuesheetfilename>\r\n</downloadextended>","options":{"raw":{"language":"xml"}}},"url":"{{HM_ServiceAPI_URL}}/getmusicdownload/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Date","value":"Fri, 23 Aug 2019 01:43:42 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Content-Length","value":"359","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<responsemusicdownload xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <requestsent>false</requestsent>\n    <downloadtokens>\n        <downloadtoken>\n            <tokenvalue>37ecc842dac353708v941e8e09vf42c3l0</tokenvalue>\n            <part xsi:nil=\"true\"/>\n        </downloadtoken>\n    </downloadtokens>\n</responsemusicdownload>"}],"_postman_id":"e338d498-6689-4ba8-9fd1-46e3c3afc6cb"},{"name":"Get Music Download Info","id":"c205b536-1a65-430f-b550-aad51a80ca5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"Skip\": 0,\r\n    \"Limit\": 10,\r\n    \"DownloadID\": \"e6ee57b732ce88b2\",\r\n    \"DownloadGroupID\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getmusicdownloadinfo/{{HM_ServiceAPI_Token}}","description":"<p>Returns information on the current status of a download, including download links to each item contained within.</p>\n<p>There are two possible usages here; retrieving information on a singular download (album, playlist) or a grouped download (playlist categories).</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ServiceToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Skip</td>\n<td></td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Limit</td>\n<td></td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>DownloadID</td>\n<td></td>\n<td>Optional, if this is not provided then <code>DownloadGroupID</code> must be provided.</td>\n</tr>\n<tr>\n<td>DownloadGroupID</td>\n<td></td>\n<td>Optional, if this is not provided then <code>DownloadID</code> must be provided.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Skip &amp; Limit</strong></p>\n<p>The Skip and Limit parameters come together to allow for paging of results.</p>\n<p>Skip is the number of results to skip.</p>\n<p>Limit is the number of results to return.</p>\n<p>An example; if your page size is 10 and the user is on page 2 then Skip would be 10 and Limit would be 10.</p>\n<p><strong>Request Notes: DownloadID</strong></p>\n<p><code>DownloadID</code> should be used for downloads of type Album or Playlist.</p>\n<p><strong>Request Notes: DownloadGroupID</strong></p>\n<p><code>DownloadID</code> should be used for downloads of type Playlist Category.</p>\n<p><strong>Request Notes: DownloadID or DownloadGroupID</strong></p>\n<p>From a website implementation perspective, you can determine which request property to populate based on the URL that the user navigated to. The routes for each is configured in the Admin portal - we recommend making different routes to handle each scenario.</p>\n<p><strong>Request Notes: DownloadGroupID</strong></p>\n<p><code>DownloadID</code> should be used for downloads of type Playlist Category.</p>\n<p><strong>Response Notes: Status</strong></p>\n<p>There are four possible states;</p>\n<ol>\n<li>InProgress</li>\n<li>Prepared</li>\n<li>Downloaded</li>\n<li>Expired</li>\n</ol>\n<p><code>InProgess</code> - you will receive this status if the download is still being prepared.</p>\n<p><code>Prepared</code> - you will receive this status if the download has finished being prepared and is now available for download.</p>\n<p><code>Downloaded</code> - you will receive this status if the particular item has been downloaded previously. It is still possible to download this again.</p>\n<p><code>Expired</code> - you will receive this status if the download is no longer available. This expiration time can vary based on account settings, but usually this is somewhere between 7-30 days.</p>\n","urlObject":{"path":["getmusicdownloadinfo","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c205b536-1a65-430f-b550-aad51a80ca5a"},{"name":"Get Invoice Download URL","event":[{"listen":"test","script":{"id":"0a513f1c-9154-434c-9899-236e75a70447","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Get Invoice Document\");"],"type":"text/javascript"}}],"id":"f0599ef9-410a-454f-a3f1-63242ab6cded","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getinvoicedownloadurl/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_InvoiceID}}","description":"<p>Search invoices by amounts and dates.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FromAmount</td>\n<td>Optional, default value is 0. The lower invoice amount for which to filter by</td>\n</tr>\n<tr>\n<td>FromDate</td>\n<td>Optional, the lower due date for which to filter by</td>\n</tr>\n<tr>\n<td>ToAmount</td>\n<td>Optional, the upper invoice amount for which to filter by</td>\n</tr>\n<tr>\n<td>ToDate</td>\n<td>Optional, the upper due date for which to filter by</td>\n</tr>\n<tr>\n<td>Skip</td>\n<td>Optional, the number of results to skip</td>\n</tr>\n<tr>\n<td>Limit</td>\n<td>Required, the number of results to return</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["getinvoicedownloadurl","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_InvoiceID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"378db561-e2ee-47e4-9005-73cc0d5b8a0d","name":"Get Invoice Download URL","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getinvoicedownloadurl/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_InvoiceID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 29 Feb 2024 05:37:18 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Url\": \"https://cf.harvestmedia.net/CDN/downloads/invoices/7f9ad20a0fbc0524/6961e7f1-68d2-4c17-b56e-e85db56eb88b/.pdf\"\n}"}],"_postman_id":"f0599ef9-410a-454f-a3f1-63242ab6cded"}],"id":"1e6d66ec-a797-4413-961a-292c31840ad5","_postman_id":"1e6d66ec-a797-4413-961a-292c31840ad5","description":""},{"name":"My History","item":[{"name":"Get Member Download History","id":"7fdbca4c-cdf1-4334-a63d-eb83ffe32a79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getdownloadhistorybymembertoken/{{HM_ServiceAPI_MemberToken}}?startdate={startDate}&enddate={endDate}&skip={{HM_ServiceAPI_Skip}}&limit={{HM_ServiceAPI_Limit}}","description":"<p>Returns records associated with a member, based on their download history.</p>\n<p>The response will not include the full track metadata, instead we recommend that you retrieve this using <code>Get Tracks</code></p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>Skip</td>\n<td>Integer</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Limit</td>\n<td>Integer</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td>String</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td>String</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Skip &amp; Limit</strong></p>\n<p>The <code>Skip</code> and <code>Limit</code> parameters come together to allow for paging of results.</p>\n<p><code>Skip</code> is the number of results to skip.</p>\n<p><code>Limit</code> is the number of results to return.</p>\n<p>An example; if your page size is 10 and the user is on page 2 then Skip would be 10 and Limit would be 10.</p>\n<p><strong>Request Notes: Start &amp; End Dates</strong></p>\n<p>The <code>StartDate</code> and <code>EndDate</code> parameters can be used to return downloads within a date range..</p>\n<p><code>StartDate</code> and <code>EndDate</code> must be supplied in UTC.</p>\n<p>The date should be supplied in <code>yyyy-mm-dd</code> format.</p>\n<p>There are a few ways this can be set:</p>\n<ul>\n<li><code>StartDate</code> set, with <code>EndDate</code> not set; this will return all results on or after the StartDate</li>\n<li><code>EndDate</code> set, with <code>StartDate</code> not set; this will return all results on or before the EndDate</li>\n<li><code>StartDate</code> and <code>EndDate</code> both set; this will return all results within the date range</li>\n<li><code>StartDate</code> and <code>EndDate</code> both not set; this is the default and will return all results regardless of date</li>\n</ul>\n","urlObject":{"path":["getdownloadhistorybymembertoken","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"startdate","value":"{startDate}"},{"key":"enddate","value":"{endDate}"},{"key":"skip","value":"{{HM_ServiceAPI_Skip}}"},{"key":"limit","value":"{{HM_ServiceAPI_Limit}}"}],"variable":[]}},"response":[{"id":"22f02512-e504-4e40-b765-1baa8f4e8c1c","name":"Get Member Download History (JSON)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":{"raw":"{{HM_ServiceAPI_URL}}/getdownloadhistorybymembertoken/{{HM_ServiceAPI_MemberToken}}?skip=0&limit=2","host":["{{HM_ServiceAPI_URL}}"],"path":["getdownloadhistorybymembertoken","{{HM_ServiceAPI_MemberToken}}"],"query":[{"key":"skip","value":"0"},{"key":"limit","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Date","value":"Tue, 20 Aug 2019 23:56:31 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Content-Length","value":"2957","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"History\": {\n        \"Tracks\": [\n            {\n                \"ID\": \"8dcc714a243738ddbb\",\n                \"LengthSecondsTrimStart\": \"\",\n                \"LengthSecondsTrimEnd\": \"\",\n                \"LibraryFeatured\": false,\n                \"Alternates\": [],\n                \"AlternateTracks\": [],\n                \"RelatedTracks\": [],\n                \"Categories\": [],\n                \"Composers\": [],\n                \"Highlighted\": false,\n                \"HighlightedInPlaylists\": [],\n                \"Tags\": []\n            },\n            {\n                \"ID\": \"q152c02f555oc74436\",\n                \"LibraryFeatured\": false,\n                \"Alternates\": [],\n                \"AlternateTracks\": [],\n                \"RelatedTracks\": [],\n                \"Categories\": [],\n                \"Composers\": [],\n                \"Highlighted\": false,\n                \"HighlightedInPlaylists\": [],\n                \"Tags\": []\n            }\n        ],\n        \"HistoryItems\": [\n            {\n                \"TrackID\": \"8dcc714a243738ddbb\",\n                \"DeliveryDate\": \"2021-03-11T14:21:11.653\",\n                \"ItemType\": \"Download\"\n            },\n            {\n                \"TrackID\": \"q152c02f555oc74436\",\n                \"DeliveryDate\": \"2021-03-11T14:21:11.653\",\n                \"ItemType\": \"Download\"\n            }\n        ],\n        \"TotalHistoryItems\": 2\n    }\n}"},{"id":"95e25ee0-0a26-4503-b715-fe987dfff16d","name":"Get Member Download History (XML)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":{"raw":"{{HM_ServiceAPI_URL}}/getdownloadhistorybymembertoken/{{HM_ServiceAPI_MemberToken}}?skip=0&limit=2","host":["{{HM_ServiceAPI_URL}}"],"path":["getdownloadhistorybymembertoken","{{HM_ServiceAPI_MemberToken}}"],"query":[{"key":"skip","value":"0"},{"key":"limit","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Date","value":"Tue, 20 Aug 2019 23:58:14 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Content-Length","value":"440","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<responsehistory xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <history>\n        <tracks>\n            <track id=\"8dcc714a243738ddbb\" lengthsecondstrimstart=\"\" lengthsecondstrimend=\"\" libraryfeatured=\"false\">\n                <alternates/>\n                <alternatetracks/>\n                <relatedtracks/>\n                <categories/>\n                <composers/>\n                <highlightedinplaylists />\n                <tags/>\n            </track>\n            <track id=\"q152c02f555oc74436\" lengthsecondstrimstart=\"\" lengthsecondstrimend=\"\" libraryfeatured=\"false\">\n                <alternates/>\n                <alternatetracks/>\n                <relatedtracks/>\n                <categories/>\n                <composers/>\n                <highlightedinplaylists />\n                <tags/>\n            </track>\n        </tracks>\n        <historyitems>\n            <historyitem trackid=\"8dcc714a243738ddbb\" deliverydate=\"2021-03-11T14:21:11.653\" itemtype=\"Download\" />\n            <historyitem trackid=\"q152c02f555oc74436\" deliverydate=\"2021-03-11T14:21:11.653\" itemtype=\"Download\" />\n        </historyitems>\n        <totalhistoryitems>1</totalhistoryitems>\n    </history>\n</responsehistory>"}],"_postman_id":"7fdbca4c-cdf1-4334-a63d-eb83ffe32a79"}],"id":"824e9946-f2ce-4b4e-ae81-1630450a0e73","_postman_id":"824e9946-f2ce-4b4e-ae81-1630450a0e73","description":""},{"name":"Tag Manager","item":[{"name":"Create Member Tag","id":"c17b5a34-fc66-4eb6-96ee-469fe6695e36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/addmembertag/{{HM_ServiceAPI_MemberToken}}","description":"<p>Allows a new tag to be created for a member, returning the new tag element.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TagName</td>\n<td>Required, the name of the tag</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["addmembertag","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"5594bfbf-64f9-472c-b859-0662279b03b9","name":"Create Member Tag (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"TagName\": \"Tag Name\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/addmembertag/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 04 Jan 2023 05:04:52 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Tags\": [\n        {\n            \"TagID\": \"12e4039c7b5f68bcf0\",\n            \"TagName\": \"Tag Name\",\n            \"Type\": \"UnAttached\",\n            \"CreateDate\": \"2023-01-04T16:04:52.183\",\n            \"LastUpdateDate\": \"2023-01-04T16:04:52.183\"\n        }\n    ]\n}"},{"id":"cee6dae8-c0ed-49b4-bfe1-fbe03d64620c","name":"Create Member Tag (XML)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/xml"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"<requestaddupdatetag>\r\n <tagname>Tag Name</tagname>\r\n</requestaddupdatetag>","options":{"raw":{"language":"xml"}}},"url":"{{HM_ServiceAPI_URL}}/addmembertag/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Thu, 05 Jan 2023 02:51:28 GMT","enabled":true},{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<responsetags xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <tags>\n        <tag tagid=\"12e4039c7b5f68bcf0\" tagname=\"Tag Name\" type=\"UnAttached\" createdate=\"2023-01-04T16:04:52.183\">\n            <lastupdatedate>2023-01-05T13:51:26.853</lastupdatedate>\n        </tag>\n    </tags>\n    <totaltagscount xsi:nil=\"true\" />\n    <totaltracks xsi:nil=\"true\" />\n</responsetags>"}],"_postman_id":"c17b5a34-fc66-4eb6-96ee-469fe6695e36"},{"name":"Update Member Tag","id":"fc5f2851-4a81-4a66-8a0c-73fa847242d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/updatemembertag/{{HM_ServiceAPI_MemberToken}}/12340397b5f68cf0","description":"<p>Allows the update of a Tag.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>TagID</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["updatemembertag","{{HM_ServiceAPI_MemberToken}}","12340397b5f68cf0"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"829ba197-2b80-4508-bc82-6513bed29db2","name":"Update Member Tag (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"TagName\":\"Tag Name updated\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updatemembertag/{{HM_ServiceAPI_MemberToken}}/12e4039c7b5f68bcf0"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 04 Jan 2023 05:24:47 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Tags\": [\n        {\n            \"TagID\": \"12e4039c7b5f68bcf0\",\n            \"TagName\": \"Tag Name updated\",\n            \"Type\": \"UnAttached\",\n            \"CreateDate\": \"2023-01-04T16:04:52.183\",\n            \"LastUpdateDate\": \"2023-01-04T16:24:47.2\"\n        }\n    ]\n}"},{"id":"1af41af6-474a-4b7f-9818-3e54e4985310","name":"Update Member Tag (XML)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/xml"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"<requestaddupdatetag>\r\n <tagname>Tag Name</tagname>\r\n</requestaddupdatetag>","options":{"raw":{"language":"xml"}}},"url":"{{HM_ServiceAPI_URL}}/updatemembertag/{{HM_ServiceAPI_MemberToken}}/12e4039c7b5f68bcf0"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Thu, 05 Jan 2023 02:55:35 GMT","enabled":true},{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<responsetags xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <tags>\n        <tag tagid=\"12e4039c7b5f68bcf0\" tagname=\"Tag Name updated\" type=\"UnAttached\" createdate=\"2023-01-04T16:04:52.183\">\n            <lastupdatedate>2023-01-05T13:51:26.853</lastupdatedate>\n        </tag>\n    </tags>\n    <totaltagscount xsi:nil=\"true\" />\n    <totaltracks xsi:nil=\"true\" />\n</responsetags>"}],"_postman_id":"fc5f2851-4a81-4a66-8a0c-73fa847242d5"},{"name":"Add to Member Tags","id":"79d9077d-1bf1-4b2a-9743-12dafb0fcea1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/addtomembertags/{{HM_ServiceAPI_MemberToken}}","description":"<p>Allows the addition of multiple objects to one or more member tags. The objects being added must all be of the same type.</p>\n<p>Response will include which tracks were added and which were existing.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ObjectType</td>\n<td>Mandatory, type of the object being added. Possible values include Track, Album or Playlist</td>\n</tr>\n<tr>\n<td>ObjectIDs</td>\n<td>Mandatory, identifiers of the object being added. For example, if `ObjectType = Track` then the identifier must be a TrackID</td>\n</tr>\n<tr>\n<td>AddToTagIDs</td>\n<td>Mandatory, identifiers of the member tags being added to</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AddedTracks</td>\n<td>The list of tracks that were added because they did not already exist in the AddedTracks &gt; ObjectID</td>\n</tr>\n<tr>\n<td>ExistingTracks</td>\n<td>The list of tracks that were not added because they already existed in the ExistingTracks &gt; ObjectID</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["addtomembertags","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"039f5650-61a3-4b2e-a994-a1648c9bc97f","name":"Add to Member Tags (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"ObjectType\": \"Track\",\r\n    \"ObjectIDs\": [\r\n        \"c2ee59f610e5d3e626\",\r\n        \"138b873c7f2fbee4f5\"\r\n    ],\r\n    \"AddToTagIDs\": [\r\n        \"12e4039c7b5f68bcf0\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/addtomembertags/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 04 Jan 2023 05:47:49 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Tags\": [\n        {\n            \"TagID\": \"12e4039c7b5f68bcf0\",\n            \"TagName\": \"Tag Name updated\",\n            \"Type\": \"Track\",\n            \"AddedObjects\": [\n                {\n                    \"ObjectID\": \"c2ee59f610e5d3e626\",\n                    \"ObjectType\": \"Track\"\n                },\n                {\n                    \"ObjectID\": \"138b873c7f2fbee4f5\",\n                    \"ObjectType\": \"Track\"\n                }\n            ]\n        }\n    ]\n}"},{"id":"6afcef86-250a-4523-bdb7-92655b557e8e","name":"Add to Member Tags (XML)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/xml"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"<requestaddtomembertags>\r\n <objecttype>Track</objecttype>\r\n <objectids>\r\n     <objectid>b2ee59610e5d2626</objectid>\r\n     <objectid>138b83c8f2fbef45</objectid>\r\n </objectids>\r\n <addtotagids>\r\n     <tagid>15e1583fbb4fe49f</tagid>\r\n </addtotagids>\r\n</requestaddtomembertags>","options":{"raw":{"language":"xml"}}},"url":"{{HM_ServiceAPI_URL}}/addtomembertags/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Thu, 05 Jan 2023 03:01:48 GMT","enabled":true},{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<responseaddtomembertags xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <tags>\n        <tags>\n            <tagid>12e4039c7b5f68bcf0</tagid>\n            <tagname>Tag Name updated</tagname>\n            <type>Track</type>\n            <addedobjects>\n                <addedobjects>\n                    <objectid>c2ee59f610e5d3e626</objectid>\n                    <objecttype>Track</objecttype>\n                </addedobjects>\n                <addedobjects>\n                    <objectid>138b873c7f2fbee4f5</objectid>\n                    <objecttype>Track</objecttype>\n                </addedobjects>\n            </addedobjects>\n        </tags>\n    </tags>\n</responseaddtomembertags>"}],"_postman_id":"79d9077d-1bf1-4b2a-9743-12dafb0fcea1"},{"name":"Get Member Tags","id":"33bdfb4a-3120-4c5a-a5c1-0b8b822d9588","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getmembertags/{{HM_ServiceAPI_MemberToken}}?Skip={Skip}&Limit={Limit}&Sort={Sort}","description":"<p>Returns tags associated with a member.</p>\n<p><strong>Request elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>ReturnTagCount</td>\n<td>Integer</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Skip</td>\n<td>Integer</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Limit</td>\n<td>Integer</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Sort</td>\n<td>String</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Skip &amp; Limit</strong></p>\n<p>The Skip and Limit parameters come together to allow for paging of results.</p>\n<p>Skip is the number of results to skip.</p>\n<p>Limit is the number of results to return.</p>\n<p>An example; if your page size is 10 and the user is on page 2 then Skip would be 10 and Limit would be 10.</p>\n<p><strong>Request Notes: Sort</strong></p>\n<p>Sort is optional and defaults to Created_Asc if not provided. Possible values include; Alphabetic_Asc, Alphabetic_Desc, Created_Asc, Created_Desc, LastUpdated_Asc, LastUpdated_Desc</p>\n","urlObject":{"path":["getmembertags","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"Skip","value":"{Skip}"},{"key":"Limit","value":"{Limit}"},{"key":"Sort","value":"{Sort}"}],"variable":[]}},"response":[{"id":"7093991b-374d-4493-a9dc-ccf755aa0108","name":"Get Member Tags (JSON)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":{"raw":"{{HM_ServiceAPI_URL}}/getmembertags/{{HM_ServiceAPI_MemberToken}}?Skip=0&Limit=10&Sort=Alphabetic_Asc","host":["{{HM_ServiceAPI_URL}}"],"path":["getmembertags","{{HM_ServiceAPI_MemberToken}}"],"query":[{"key":"Skip","value":"0"},{"key":"Limit","value":"10"},{"key":"Sort","value":"Alphabetic_Asc"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Date","value":"Fri, 23 Aug 2019 04:06:12 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"transfer-encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Tags\": [\n        {\n            \"TagID\": \"12e4039c7b5f68bcf0\",\n            \"TagName\": \"Tag Name\",\n            \"Type\": \"Track\",\n            \"CreateDate\": \"2023-01-04T16:04:52.183\",\n            \"LastUpdateDate\": \"2023-01-04T16:24:47.2\"\n        },\n        {\n            \"TagID\": \"fe6493545c95f6agl2\",\n            \"TagName\": \"Tag Name 2\",\n            \"Type\": \"Track\",\n            \"CreateDate\": \"2019-08-23T14:01:42.4\",\n            \"LastUpdateDate\": \"2019-08-23T14:01:42.4\"\n        }\n    ],\n    \"TotalTagsCount\": 2\n}"},{"id":"b3e71257-9773-41e7-a5cc-1d5077f6ed43","name":"Get Member Tags (XML)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":{"raw":"{{HM_ServiceAPI_URL}}/getmembertags/{{HM_ServiceAPI_MemberToken}}?Skip=0&Limit=10&Sort=Alphabetic_Asc","host":["{{HM_ServiceAPI_URL}}"],"path":["getmembertags","{{HM_ServiceAPI_MemberToken}}"],"query":[{"key":"Skip","value":"0"},{"key":"Limit","value":"10"},{"key":"Sort","value":"Alphabetic_Asc"}]}},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Cache-Control","value":"private","enabled":true},{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Date","value":"Fri, 23 Aug 2019 04:07:12 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"transfer-encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<responsetags xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <tags>\n        <tag tagid=\"12e4039c7b5f68bcf0\" tagname=\"Tag Name\" type=\"Track\" createdate=\"2023-01-04T16:04:52.183\">\n            <lastupdatedate>2023-01-05T13:51:26.853</lastupdatedate>\n        </tag>\n        <tag tagid=\"fe6493545c95f6agl2\" tagname=\"Tag Name 2\" type=\"Track\" createdate=\"2019-08-23T14:01:42.4\">\n            <lastupdatedate>2023-01-05T13:51:26.853</lastupdatedate>\n        </tag>\n    </tags>\n    <totaltagscount>2</totaltagscount>\n    <totaltracks xsi:nil=\"true\" />\n</responsetags>"}],"_postman_id":"33bdfb4a-3120-4c5a-a5c1-0b8b822d9588"},{"name":"Get Member Tag Tracks","id":"a148bd94-fa2e-4300-bd15-7181f075b33f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getmembertagtracks/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_NewMemberTagID}}?Skip={Skip}&Limit={limit}&Sort={Sort}","description":"<p>Returns tracks based on a member tag.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>TagID</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>Skip</td>\n<td>Integer</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Limit</td>\n<td>Integer</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Sort</td>\n<td>String</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Skip &amp; Limit</strong></p>\n<p>The Skip and Limit parameters come together to allow for paging of results.</p>\n<p>Skip is the number of results to skip.</p>\n<p>Limit is the number of results to return.</p>\n<p>An example; if your page size is 10 and the user is on page 2 then Skip would be 10 and Limit would be 10.</p>\n<p><strong>Request Notes: Sort</strong></p>\n<p>Sort is optional and defaults to Created_Asc if not provided. Possible values include; Alphabetic_Asc, Alphabetic_Desc, Created_Asc, Created_Desc, ReleaseDate_Asc, ReleaseDate_Desc</p>\n","urlObject":{"path":["getmembertagtracks","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_NewMemberTagID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"Skip","value":"{Skip}"},{"key":"Limit","value":"{limit}"},{"key":"Sort","value":"{Sort}"}],"variable":[]}},"response":[{"id":"2d08118a-94f5-4bee-8f51-426c6be47226","name":"Get Member Tag Tracks (JSON)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getmembertagtracks/{{HM_ServiceAPI_MemberToken}}/12e4039c7b5f68bcf0"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Date","value":"Fri, 23 Aug 2019 04:08:36 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"transfer-encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Tags\": [\n        {\n            \"TagID\": \"12e4039c7b5f68bcf0\",\n            \"TagName\": \"Tag Name\",\n            \"Type\": \"Track\",\n            \"CreateDate\": \"2023-01-04T16:04:52.183\",\n            \"LastUpdateDate\": \"2023-01-04T16:24:47.2\",\n            \"Tracks\": [\n                {\n                    \"TrackNumber\": \"046\",\n                    \"Time\": \"01:06\",\n                    \"LengthSeconds\": \"66\",\n                    \"Comment\": \"Pounding, oriental percussion.\",\n                    \"Composer\": \" John Gregory Knowles (PRS)\",\n                    \"Publisher\": \" The Scoring House\",\n                    \"Name\": \"Dragon Boat\",\n                    \"AlbumID\": \"211155341eb934j5ua\",\n                    \"LibraryID\": \"m9l2fte85eb44fedt4\",\n                    \"ID\": \"x57de47b6364cd16g1\",\n                    \"Keywords\": \"MAIN, DRAMATIC, ETHNIC, TAIKO DRUM, MOVIES, MARTIAL ARTS, ETHNIC STYLINGS, GLOBAL, ASIA, EAST ASIA, JAPAN, ASIA, SOUTHEASTERN ASIA, TEMPO, 120 - 168 FAST (ALLEGRO), TV, RADIO PROGRAM FORMATS, TRAVEL, DOCUMENTARY, BIOGRAPHICAL, HISTORICAL, THE ARTS, ASIA, EAST ASIA, CHINA (PEOPLES REPUBLIC OF CHINA)\",\n                    \"Lyrics\": \"\",\n                    \"DisplayTitle\": \"Dragon Boat (a)\",\n                    \"alternatetitle\": \"\",\n                    \"Genre\": \"Trailer\",\n                    \"Tempo\": \"TEMPO, 120 - 168 FAST (ALLEGRO)\",\n                    \"Instrumentation\": \"ETHNIC, TAIKO DRUM\",\n                    \"Bpm\": \"\",\n                    \"Mixout\": \"\",\n                    \"Frequency\": \"48000\",\n                    \"Bitrate\": \"1536\",\n                    \"DateIngested\": \"2011-11-07 20:58:35\",\n                    \"Version\": \"Main\",\n                    \"Status\": \"active\",\n                    \"CDCode\": \"TSH 032A\",\n                    \"AlbumName\": \"TSH 032A Big Bang Percussion\",\n                    \"LibraryName\": \"The Scoring House\",\n                    \"LibraryFeatured\": false,\n                    \"FileName\": \"WOM_TSH_0032_04601.wav\",\n                    \"AlternateCount\": \"3\",\n                    \"Mood\": \"\",\n                    \"MusicFor\": \"\",\n                    \"Highlighted\": false,\n                    \"HighlightedInPlaylists\": [],\n                    \"Tags\": []\n                }\n            ]\n        }\n    ]\n}"},{"id":"018ca9fa-0848-4d93-9e72-0e4f4ad00121","name":"Get Member Tag Tracks (XML)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getmembertagtracks/{{HM_ServiceAPI_MemberToken}}/12e4039c7b5f68bcf0"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Cache-Control","value":"private","enabled":true},{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Date","value":"Fri, 23 Aug 2019 04:11:01 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"transfer-encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<responsetags xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <tags>\n        <tag tagid=\"12e4039c7b5f68bcf0\" tagname=\"Tag Name\" type=\"Track\" createdate=\"2023-01-04T16:04:52.183\">\n            <lastupdatedate>2023-01-05T13:51:26.853</lastupdatedate>\n            <tracks>\n                <track mood=\"\" musicfor=\"\" tracknumber=\"046\" time=\"01:06\" lengthseconds=\"66\" comment=\"Pounding, oriental percussion.\" composer=\" John Gregory Knowles (PRS)\" publisher=\" The Scoring House\" name=\"Dragon Boat\" albumid=\"211155341eb934j5ua\" libraryid=\"m9l2fte85eb44fedt4\" id=\"x57de47b6364cd16g1\" keywords=\"MAIN, DRAMATIC, ETHNIC, TAIKO DRUM, MOVIES, MARTIAL ARTS, ETHNIC STYLINGS, GLOBAL, ASIA, EAST ASIA, JAPAN, ASIA, SOUTHEASTERN ASIA, TEMPO, 120 - 168 FAST (ALLEGRO), TV, RADIO PROGRAM FORMATS, TRAVEL, DOCUMENTARY, BIOGRAPHICAL, HISTORICAL, THE ARTS, ASIA, EAST ASIA, CHINA (PEOPLES REPUBLIC OF CHINA)\" lyrics=\"\" displaytitle=\"Dragon Boat (a)\" alternatetitle=\"\" genre=\"Trailer\" tempo=\"TEMPO, 120 - 168 FAST (ALLEGRO)\" instrumentation=\"ETHNIC, TAIKO DRUM\" bpm=\"\" mixout=\"\" frequency=\"48000\" bitrate=\"1536\" dateingested=\"2011-11-07 20:58:35\" version=\"Main\" status=\"active\" cdcode=\"TSH 032A\" albumname=\"TSH 032A Big Bang Percussion\" libraryname=\"The Scoring House\" libraryfeatured=\"false\" filename=\"WOM_TSH_0032_04601.wav\" alternatecount=\"3\" highlighted=\"false\">\n                    <highlightedinplaylists />\n                    <tags />\n                </track>\n            </tracks>\n        </tag>\n    </tags>\n</responsetags>"}],"_postman_id":"a148bd94-fa2e-4300-bd15-7181f075b33f"},{"name":"Get Member Tags By Track","id":"f153a1c2-513d-4acc-b9f6-4cd75f179f32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getmembertagsbytrack/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_TrackID}}","description":"<p>Returns tags for a specified track or tracks.</p>\n<p><strong>Request elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>TrackID</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["getmembertagsbytrack","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_TrackID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"09d6b9c8-50cd-4926-889d-8ca085171940","name":"Get Member Tags By Track (JSON)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getmembertagsbytrack/{{HM_ServiceAPI_MemberToken}}/x57de47b6364cd16g1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Date","value":"Fri, 23 Aug 2019 04:13:34 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"transfer-encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Tags\": [\n        {\n            \"TagID\": \"12e4039c7b5f68bcf0\",\n            \"TagName\": \"Tag Name\",\n            \"Type\": \"Track\",\n            \"CreateDate\": \"2023-01-04T16:04:52.183\",\n            \"LastUpdateDate\": \"2023-01-04T16:24:47.2\"\n        },\n        {\n            \"TagID\": \"fe6493545c95f6agl2\",\n            \"TagName\": \"Tag Name 2\",\n            \"Type\": \"Track\",\n            \"CreateDate\": \"2019-08-23T14:01:42.4\",\n            \"LastUpdateDate\": \"2019-08-23T14:01:42.4\"\n        }\n    ]\n}"},{"id":"dc52a81f-ca50-406e-be58-6f76d264a87b","name":"Get Member Tags By Track (XML)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getmembertagsbytrack/{{HM_ServiceAPI_MemberToken}}/x57de47b6364cd16g1"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Cache-Control","value":"private","enabled":true},{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Date","value":"Fri, 23 Aug 2019 04:14:27 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"transfer-encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<responsetags xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <tags>\n        <tag tagid=\"12e4039c7b5f68bcf0\" tagname=\"Tag Name\" type=\"Track\" createdate=\"2023-01-04T16:04:52.183\">\n            <lastupdatedate>2023-01-05T13:51:26.853</lastupdatedate>\n        </tag>\n        <tag tagid=\"fe6493545c95f6agl2\" tagname=\"Tag Name 2\" type=\"Track\" createdate=\"2019-08-23T14:01:42.4\">\n            <lastupdatedate>2023-01-05T13:51:26.853</lastupdatedate>\n        </tag>\n    </tags>\n</responsetags>"}],"_postman_id":"f153a1c2-513d-4acc-b9f6-4cd75f179f32"},{"name":"Remove Track Tag","id":"a63ed383-5edc-4743-bd62-03858200fa9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{HM_ServiceAPI_URL}}/removetrackmembertag/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_NewMemberTagID}}/{{HM_ServiceAPI_TrackID}}","description":"<p>Allows the removal of a Tag from a specific Track.</p>\n<p><strong>Request elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>TagID</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>TrackID</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["removetrackmembertag","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_NewMemberTagID}}","{{HM_ServiceAPI_TrackID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"6dca1d04-a933-4ed4-af83-f314b8135950","name":"Remove Track Tag (JSON)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{HM_ServiceAPI_URL}}/removetrackmembertag/{{HM_ServiceAPI_MemberToken}}/12e4039c7b5f68bcf0/x57de47b6364cd16g1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Date","value":"Fri, 23 Aug 2019 04:27:46 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"transfer-encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Code\": \"OK\"\n}"},{"id":"d88753d2-c90c-4f5c-84b2-59cfc1b2e2fe","name":"Remove Track Tag (XML)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{HM_ServiceAPI_URL}}/removetrackmembertag/{{HM_ServiceAPI_MemberToken}}/12e4039c7b5f68bcf0/x57de47b6364cd16g1"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Cache-Control","value":"private","enabled":true},{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Date","value":"Fri, 23 Aug 2019 04:28:51 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"transfer-encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<responsecode xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <code>OK</code>\n</responsecode>"}],"_postman_id":"a63ed383-5edc-4743-bd62-03858200fa9d"},{"name":"Remove Tag","id":"526171ad-d76c-4f1c-9c0f-f052b63e5754","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{HM_ServiceAPI_URL}}/removemembertag/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_NewMemberTagID}}","description":"<p>Allows the removal of a Tag from all tracks for a specified member.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>TagID</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["removemembertag","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_NewMemberTagID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"e65d6444-38a8-46b5-aaa2-6da50257687c","name":"Remove Tag (JSON)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{HM_ServiceAPI_URL}}/removemembertag/{{HM_ServiceAPI_MemberToken}}/12e4039c7b5f68bcf0"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Date","value":"Fri, 23 Aug 2019 03:44:00 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"transfer-encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Code\": \"OK\"\n}"},{"id":"93e245be-113d-4d46-ac4f-befce999c15f","name":"Remove Tag (XML)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{HM_ServiceAPI_URL}}/removemembertag/{{HM_ServiceAPI_MemberToken}}/12e4039c7b5f68bcf0"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Cache-Control","value":"private","enabled":true},{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Date","value":"Fri, 23 Aug 2019 03:46:31 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"transfer-encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<responsecode xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <code>OK</code>\n</responsecode>"}],"_postman_id":"526171ad-d76c-4f1c-9c0f-f052b63e5754"},{"name":"Remove All Tags","id":"7ecde314-d970-4593-9f9c-cca475201a7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{HM_ServiceAPI_URL}}/removemembertags/{{HM_ServiceAPI_MemberToken}}","description":"<p>Allows the removal of all tags from all tracks for a specified member.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["removemembertags","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"5fc9f4ff-9769-4dea-a81c-abe62312f104","name":"Remove All Tags (JSON)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{HM_ServiceAPI_URL}}/removemembertags/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Date","value":"Fri, 23 Aug 2019 03:48:48 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"transfer-encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Code\": \"OK\"\n}"},{"id":"597bbef3-a455-424b-a5fb-1d62927c0ce4","name":"Remove All Tags (XML)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{HM_ServiceAPI_URL}}/removemembertags/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Cache-Control","value":"private","enabled":true},{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Date","value":"Fri, 23 Aug 2019 03:49:51 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"transfer-encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<responsecode xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <code>OK</code>\n</responsecode>"}],"_postman_id":"7ecde314-d970-4593-9f9c-cca475201a7f"}],"id":"57041c08-3ed8-49e8-a656-56b80205b3e7","_postman_id":"57041c08-3ed8-49e8-a656-56b80205b3e7","description":""}],"id":"043290c9-9b55-46f8-9c5f-40fb2d6681a0","description":"<p>For Album/Tracks purchases, cloudsearch/ needs to be hit with a \"ReturnRates=true\" so the response will return back the rates associated with the album or the album track, depending on the request View type.</p>\n","_postman_id":"043290c9-9b55-46f8-9c5f-40fb2d6681a0"},{"name":"Ecom Single Licensing Track","item":[{"name":"Core Search","item":[{"name":"Get Search Default","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"53721b69-2112-424a-9da9-c766e35e3e76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"true\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"%\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n<p>NOTE2: Use ReturnRates to get the rates for album or album track</p>\n<ul>\n<li>ReturnRates = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"d5ee93ac-68d7-4537-9e09-a6a8254cca2c","name":"Get Search Default (JSON)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":""}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"true\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"%\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://service-public-staging.harvestmedia.net/HMP-WS.svc//cloudsearch/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Nov 2023 04:02:26 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalTracks\": 1285,\n    \"TotalAlbums\": 116,\n    \"TotalLibraries\": 8,\n    \"TotalStyles\": 8,\n    \"TotalPlaylists\": 10,\n    \"SearchParameters\": {\n        \"searchtype\": \"Normal\",\n        \"memberaccount\": \"ad5725d472ad6d6d\",\n        \"region\": \"88f8791e732f07e1\",\n        \"includeinactive\": false,\n        \"mainonly\": true,\n        \"alternativeonly\": false,\n        \"resultview\": {\n            \"view\": \"Track\",\n            \"sort_predefined\": \"ReleaseDate_Desc\",\n            \"rankexpression\": \"\",\n            \"skip\": 0,\n            \"limit\": 10,\n            \"saved\": false,\n            \"mincount\": 0,\n            \"returntrackcategoryid\": false,\n            \"facet_album\": false,\n            \"facet_albumskip\": 0,\n            \"facet_albumlimit\": 0,\n            \"facet_library\": true,\n            \"facet_libraryskip\": 0,\n            \"facet_librarylimit\": 0,\n            \"facet_librarysort\": \"Count_Desc\",\n            \"facet_style\": false,\n            \"facet_styleskip\": 0,\n            \"facet_stylelimit\": 0,\n            \"facet_category\": true,\n            \"facet_categoryskip\": 0,\n            \"facet_categorylimit\": 0,\n            \"facet_categorysort\": \"Count_Desc\",\n            \"facet_composer\": false,\n            \"facet_composerskip\": 0,\n            \"facet_composerlimit\": 0,\n            \"bpm_range\": false,\n            \"duration_range\": false,\n            \"include_alternates\": false,\n            \"include_rightholders\": false,\n            \"include_lyrics\": false,\n            \"include_keywords\": false,\n            \"tracks_per_album\": 0,\n            \"facet_bpm\": true,\n            \"facet_duration\": true,\n            \"facet_releaseyear\": false,\n            \"view_style_album_count\": false,\n            \"view_style_playlist_count\": false,\n            \"view_track_categories\": false,\n            \"evoke_prioritizebpm\": false,\n            \"evoke_suppressvocals\": false,\n            \"view_album_assigned_to_style\": false,\n            \"view_playlist_assigned_to_style\": false,\n            \"returnrates\": true\n        },\n        \"nearestduration\": false,\n        \"nearestbpm\": false,\n        \"nearestalternate\": false,\n        \"PreviousSearchTermBundles\": [\n            {\n                \"SearchHistoryID\": 0,\n                \"st_keyword_aggregated\": {\n                    \"searchtermid\": 1,\n                    \"Keywords\": \"%\",\n                    \"exactphrase\": false,\n                    \"oroperation\": false,\n                    \"wildcard\": true,\n                    \"disablekeywordgroup\": false,\n                    \"negative\": false\n                }\n            }\n        ]\n    },\n    \"Tracks\": [\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": \"false\",\n            \"IsExplicit\": \"false\",\n            \"TrackNumber\": \"001\",\n            \"LengthSeconds\": \"133\",\n            \"Comment\": \"N/A\",\n            \"Composer\": \"Gordon Minette\",\n            \"Publisher\": \"Human Music\",\n            \"Artist\": \"\",\n            \"Name\": \"Rustic Justice 1\",\n            \"AlbumID\": \"c1f9a8886354eeef\",\n            \"LibraryID\": \"96999f76405b4013\",\n            \"ID\": \"3d90090edb748a45\",\n            \"Keywords\": \"\",\n            \"DisplayTitle\": \"Rustic Justice 1\",\n            \"alternatetitle\": \"\",\n            \"Genre\": \"N/A\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"85\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"085\",\n            \"AlbumName\": \"085 Human Music\",\n            \"LibraryName\": \"Label StorageType External\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"0\",\n            \"RightHolderIDs\": [\n                {\n                    \"ID\": \"357adb6f79324aa1\"\n                },\n                {\n                    \"ID\": \"68230d61ad28b274\"\n                }\n            ],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"Rustic Justice 1\",\n            \"AlbumTitle\": \"Human Music\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"ID\": \"d24e2dabcaa1e446\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT002\",\n                \"Description\": \"FLAT002\",\n                \"Fee\": 7,\n                \"RateType\": \"AlbumTrack\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": \"false\",\n            \"IsExplicit\": \"false\",\n            \"TrackNumber\": \"002\",\n            \"LengthSeconds\": \"135\",\n            \"Comment\": \"N/A\",\n            \"Composer\": \"Gordon Minette\",\n            \"Publisher\": \"Human Music\",\n            \"Artist\": \"\",\n            \"Name\": \"Rustic Justice 2\",\n            \"AlbumID\": \"f9deae397cf426b8\",\n            \"LibraryID\": \"e7c8d103f011e6e7\",\n            \"ID\": \"cd86cec9e27b8756\",\n            \"Keywords\": \"\",\n            \"DisplayTitle\": \"Rustic Justice 2\",\n            \"alternatetitle\": \"\",\n            \"Genre\": \"N/A\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"85\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"078\",\n            \"AlbumName\": \"078 Human Music\",\n            \"LibraryName\": \"Label Manual Upload\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"0\",\n            \"RightHolderIDs\": [\n                {\n                    \"ID\": \"357adb6f79324aa1\"\n                },\n                {\n                    \"ID\": \"68230d61ad28b274\"\n                }\n            ],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"Rustic Justice 2\",\n            \"AlbumTitle\": \"Human Music\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"Fee\": 0\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": \"false\",\n            \"IsExplicit\": \"false\",\n            \"TrackNumber\": \"001\",\n            \"LengthSeconds\": \"133\",\n            \"Comment\": \"N/A\",\n            \"Composer\": \"Gordon Minette\",\n            \"Publisher\": \"Human Music\",\n            \"Artist\": \"\",\n            \"Name\": \"Rustic Justice 1\",\n            \"AlbumID\": \"284c79a3386d499f\",\n            \"LibraryID\": \"96999f76405b4013\",\n            \"ID\": \"a51f71d3eabc9718\",\n            \"Keywords\": \"\",\n            \"DisplayTitle\": \"Rustic Justice 1\",\n            \"alternatetitle\": \"\",\n            \"Genre\": \"N/A\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"85\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"074\",\n            \"AlbumName\": \"074 Human Music\",\n            \"LibraryName\": \"Label StorageType External\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"0\",\n            \"RightHolderIDs\": [\n                {\n                    \"ID\": \"357adb6f79324aa1\"\n                },\n                {\n                    \"ID\": \"68230d61ad28b274\"\n                }\n            ],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"Rustic Justice 1\",\n            \"AlbumTitle\": \"Human Music\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"ID\": \"d24e2dabcaa1e446\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT002\",\n                \"Description\": \"FLAT002\",\n                \"Fee\": 7,\n                \"RateType\": \"AlbumTrack\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": \"false\",\n            \"IsExplicit\": \"false\",\n            \"TrackNumber\": \"001\",\n            \"LengthSeconds\": \"133\",\n            \"Comment\": \"N/A\",\n            \"Composer\": \"Gordon Minette\",\n            \"Publisher\": \"Human Music\",\n            \"Artist\": \"\",\n            \"Name\": \"Rustic Justice 1\",\n            \"AlbumID\": \"284c79a3386d499f\",\n            \"LibraryID\": \"96999f76405b4013\",\n            \"ID\": \"8db322dad10be047\",\n            \"Keywords\": \"\",\n            \"DisplayTitle\": \"Rustic Justice 1\",\n            \"alternatetitle\": \"\",\n            \"Genre\": \"N/A\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"85\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"074\",\n            \"AlbumName\": \"074 Human Music\",\n            \"LibraryName\": \"Label StorageType External\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"0\",\n            \"RightHolderIDs\": [\n                {\n                    \"ID\": \"357adb6f79324aa1\"\n                },\n                {\n                    \"ID\": \"68230d61ad28b274\"\n                }\n            ],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"Rustic Justice 1\",\n            \"AlbumTitle\": \"Human Music\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"ID\": \"d24e2dabcaa1e446\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT002\",\n                \"Description\": \"FLAT002\",\n                \"Fee\": 7,\n                \"RateType\": \"AlbumTrack\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": \"false\",\n            \"IsExplicit\": \"false\",\n            \"TrackNumber\": \"002\",\n            \"LengthSeconds\": \"135\",\n            \"Comment\": \"N/A\",\n            \"Composer\": \"Gordon Minette\",\n            \"Publisher\": \"Human Music\",\n            \"Artist\": \"\",\n            \"Name\": \"Rustic Justice 2\",\n            \"AlbumID\": \"284c79a3386d499f\",\n            \"LibraryID\": \"96999f76405b4013\",\n            \"ID\": \"b6c0189303439905\",\n            \"Keywords\": \"\",\n            \"DisplayTitle\": \"Rustic Justice 2\",\n            \"alternatetitle\": \"\",\n            \"Genre\": \"N/A\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"85\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"074\",\n            \"AlbumName\": \"074 Human Music\",\n            \"LibraryName\": \"Label StorageType External\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"0\",\n            \"RightHolderIDs\": [\n                {\n                    \"ID\": \"357adb6f79324aa1\"\n                },\n                {\n                    \"ID\": \"68230d61ad28b274\"\n                }\n            ],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"Rustic Justice 2\",\n            \"AlbumTitle\": \"Human Music\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"ID\": \"d24e2dabcaa1e446\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT002\",\n                \"Description\": \"FLAT002\",\n                \"Fee\": 7,\n                \"RateType\": \"AlbumTrack\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": \"false\",\n            \"IsExplicit\": \"false\",\n            \"TrackNumber\": \"002\",\n            \"LengthSeconds\": \"135\",\n            \"Comment\": \"N/A\",\n            \"Composer\": \"Gordon Minette\",\n            \"Publisher\": \"Human Music\",\n            \"Artist\": \"\",\n            \"Name\": \"Rustic Justice 2\",\n            \"AlbumID\": \"284c79a3386d499f\",\n            \"LibraryID\": \"96999f76405b4013\",\n            \"ID\": \"c4e6c92e50d4188b\",\n            \"Keywords\": \"\",\n            \"DisplayTitle\": \"Rustic Justice 2\",\n            \"alternatetitle\": \"\",\n            \"Genre\": \"N/A\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"85\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"074\",\n            \"AlbumName\": \"074 Human Music\",\n            \"LibraryName\": \"Label StorageType External\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"0\",\n            \"RightHolderIDs\": [\n                {\n                    \"ID\": \"357adb6f79324aa1\"\n                },\n                {\n                    \"ID\": \"68230d61ad28b274\"\n                }\n            ],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"Rustic Justice 2\",\n            \"AlbumTitle\": \"Human Music\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"ID\": \"d24e2dabcaa1e446\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT002\",\n                \"Description\": \"FLAT002\",\n                \"Fee\": 7,\n                \"RateType\": \"AlbumTrack\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": \"false\",\n            \"IsExplicit\": \"false\",\n            \"TrackNumber\": \"001\",\n            \"LengthSeconds\": \"133\",\n            \"Comment\": \"N/A\",\n            \"Composer\": \"Gordon Minette\",\n            \"Publisher\": \"Human Music\",\n            \"Artist\": \"\",\n            \"Name\": \"Rustic Justice 1\",\n            \"AlbumID\": \"1c01f46050cdaa65\",\n            \"LibraryID\": \"96999f76405b4013\",\n            \"ID\": \"5172fc246177b478\",\n            \"Keywords\": \"\",\n            \"DisplayTitle\": \"Rustic Justice 1\",\n            \"alternatetitle\": \"\",\n            \"Genre\": \"N/A\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"85\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"066\",\n            \"AlbumName\": \"066 Human Music\",\n            \"LibraryName\": \"Label StorageType External\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"0\",\n            \"RightHolderIDs\": [\n                {\n                    \"ID\": \"357adb6f79324aa1\"\n                },\n                {\n                    \"ID\": \"68230d61ad28b274\"\n                }\n            ],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"Rustic Justice 1\",\n            \"AlbumTitle\": \"Human Music\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"ID\": \"d24e2dabcaa1e446\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT002\",\n                \"Description\": \"FLAT002\",\n                \"Fee\": 7,\n                \"RateType\": \"AlbumTrack\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": \"false\",\n            \"IsExplicit\": \"false\",\n            \"TrackNumber\": \"001\",\n            \"LengthSeconds\": \"133\",\n            \"Comment\": \"N/A\",\n            \"Composer\": \"Gordon Minette\",\n            \"Publisher\": \"Human Music\",\n            \"Artist\": \"\",\n            \"Name\": \"Rustic Justice 1\",\n            \"AlbumID\": \"ac5a185acd79de48\",\n            \"LibraryID\": \"96999f76405b4013\",\n            \"ID\": \"e5833a771a745512\",\n            \"Keywords\": \"\",\n            \"DisplayTitle\": \"Rustic Justice 1\",\n            \"alternatetitle\": \"\",\n            \"Genre\": \"N/A\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"85\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"064\",\n            \"AlbumName\": \"064 Human Music\",\n            \"LibraryName\": \"Label StorageType External\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"1\",\n            \"RightHolderIDs\": [\n                {\n                    \"ID\": \"357adb6f79324aa1\"\n                },\n                {\n                    \"ID\": \"68230d61ad28b274\"\n                }\n            ],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"Rustic Justice 1\",\n            \"AlbumTitle\": \"Human Music\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"ID\": \"d24e2dabcaa1e446\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT002\",\n                \"Description\": \"FLAT002\",\n                \"Fee\": 7,\n                \"RateType\": \"AlbumTrack\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": \"false\",\n            \"IsExplicit\": \"false\",\n            \"TrackNumber\": \"002\",\n            \"LengthSeconds\": \"135\",\n            \"Comment\": \"N/A\",\n            \"Composer\": \"Gordon Minette\",\n            \"Publisher\": \"Human Music\",\n            \"Artist\": \"\",\n            \"Name\": \"Rustic Justice 2\",\n            \"AlbumID\": \"ac5a185acd79de48\",\n            \"LibraryID\": \"96999f76405b4013\",\n            \"ID\": \"3ef7ad69937cef03\",\n            \"Keywords\": \"\",\n            \"DisplayTitle\": \"Rustic Justice 2\",\n            \"alternatetitle\": \"\",\n            \"Genre\": \"N/A\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"85\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"064\",\n            \"AlbumName\": \"064 Human Music\",\n            \"LibraryName\": \"Label StorageType External\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"0\",\n            \"RightHolderIDs\": [\n                {\n                    \"ID\": \"357adb6f79324aa1\"\n                },\n                {\n                    \"ID\": \"68230d61ad28b274\"\n                }\n            ],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"Rustic Justice 2\",\n            \"AlbumTitle\": \"Human Music\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"ID\": \"d24e2dabcaa1e446\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT002\",\n                \"Description\": \"FLAT002\",\n                \"Fee\": 7,\n                \"RateType\": \"AlbumTrack\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"HasLyrics\": \"false\",\n            \"IsExplicit\": \"false\",\n            \"TrackNumber\": \"001\",\n            \"LengthSeconds\": \"133\",\n            \"Comment\": \"N/A\",\n            \"Composer\": \"Gordon Minette\",\n            \"Publisher\": \"Human Music\",\n            \"Artist\": \"\",\n            \"Name\": \"Rustic Justice 1\",\n            \"AlbumID\": \"dc335117810b8141\",\n            \"LibraryID\": \"96999f76405b4013\",\n            \"ID\": \"4a39a9609c875146\",\n            \"Keywords\": \"\",\n            \"DisplayTitle\": \"Rustic Justice 1\",\n            \"alternatetitle\": \"\",\n            \"Genre\": \"N/A\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"85\",\n            \"Version\": \"Main\",\n            \"Relations\": [],\n            \"CDCode\": \"060\",\n            \"AlbumName\": \"060 Human Music\",\n            \"LibraryName\": \"Label StorageType External\",\n            \"IsAlternate\": \"false\",\n            \"AlternateCount\": \"0\",\n            \"RightHolderIDs\": [\n                {\n                    \"ID\": \"357adb6f79324aa1\"\n                },\n                {\n                    \"ID\": \"68230d61ad28b274\"\n                }\n            ],\n            \"RightHolders\": [],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"Title\": \"Rustic Justice 1\",\n            \"AlbumTitle\": \"Human Music\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"ID\": \"d24e2dabcaa1e446\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT002\",\n                \"Description\": \"FLAT002\",\n                \"Fee\": 7,\n                \"RateType\": \"AlbumTrack\"\n            }\n        }\n    ],\n    \"Facets\": {\n        \"Libraries\": {\n            \"Items\": [\n                {\n                    \"ID\": \"6cbeb8fab0a84e83\",\n                    \"Name\": \"Harvest Media\",\n                    \"Count\": 57\n                },\n                {\n                    \"ID\": \"ee6542379bf2457c\",\n                    \"Name\": \"West One Music Group\",\n                    \"Count\": 17\n                },\n                {\n                    \"ID\": \"bbe0c33ec89abd0c\",\n                    \"Name\": \"Harvest Lyrics\",\n                    \"Count\": 14\n                },\n                {\n                    \"ID\": \"97c462d9752994f4\",\n                    \"Name\": \"Harvest Exclusives\",\n                    \"Count\": 9\n                },\n                {\n                    \"ID\": \"96999f76405b4013\",\n                    \"Name\": \"Label StorageType External\",\n                    \"Count\": 5\n                },\n                {\n                    \"ID\": \"de38b944de8f3c90\",\n                    \"Name\": \"Harvest Languages\",\n                    \"Count\": 3\n                },\n                {\n                    \"ID\": \"a9b449ccaa8a0748\",\n                    \"Name\": \"Ingestion Tool 3.0 BETA-OUTASTFF\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"e7c8d103f011e6e7\",\n                    \"Name\": \"Label Manual Upload\",\n                    \"Count\": 1\n                }\n            ]\n        },\n        \"Categories\": {\n            \"Items\": [\n                {\n                    \"ID\": \"2f96d2b691767792\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"Japan\",\n                    \"Count\": 57\n                },\n                {\n                    \"ID\": \"c90f2f9fd13593c5\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"South India\",\n                    \"Count\": 57\n                },\n                {\n                    \"ID\": \"4896f1bfe0bdb283\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"China\",\n                    \"Count\": 47\n                },\n                {\n                    \"ID\": \"925c6c46d41b6a33\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"North India\",\n                    \"Count\": 29\n                },\n                {\n                    \"ID\": \"e1e3b9f0a4911e2c\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"North India\",\n                    \"Count\": 28\n                },\n                {\n                    \"ID\": \"ea8d367e52da9d81\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"Singapore\",\n                    \"Count\": 28\n                },\n                {\n                    \"ID\": \"c5afcbdc3479da84\",\n                    \"ParentID\": \"c2f56eb1ffd4495b\",\n                    \"Name\": \"China\",\n                    \"Count\": 18\n                },\n                {\n                    \"ID\": \"e072bf2b0afbe7a9\",\n                    \"ParentID\": \"1f29a9dd77b93f15\",\n                    \"Name\": \"Emotional\",\n                    \"Count\": 13\n                },\n                {\n                    \"ID\": \"2e35982d3ec35b88\",\n                    \"ParentID\": \"1f29a9dd77b93f15\",\n                    \"Name\": \"Inspirational\",\n                    \"Count\": 13\n                },\n                {\n                    \"ID\": \"b96b06de70bc2bdc\",\n                    \"ParentID\": \"1f29a9dd77b93f15\",\n                    \"Name\": \"Moody\",\n                    \"Count\": 13\n                },\n                {\n                    \"ID\": \"a9836fb3a3082fc3\",\n                    \"ParentID\": \"1f29a9dd77b93f15\",\n                    \"Name\": \"Organic\",\n                    \"Count\": 13\n                },\n                {\n                    \"ID\": \"6c28fa0da4684849\",\n                    \"ParentID\": \"1f29a9dd77b93f15\",\n                    \"Name\": \"Pharma\",\n                    \"Count\": 13\n                },\n                {\n                    \"ID\": \"f08aa2b7aa2129ef\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"1920/20s\",\n                    \"Count\": 9\n                },\n                {\n                    \"ID\": \"dfea44c55902975d\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"1980's\",\n                    \"Count\": 8\n                },\n                {\n                    \"ID\": \"b9204c7b5a3e4a25\",\n                    \"ParentID\": \"1f29a9dd77b93f15\",\n                    \"Name\": \"Furious\",\n                    \"Count\": 8\n                },\n                {\n                    \"ID\": \"976e6367eefae4b2\",\n                    \"ParentID\": \"1f29a9dd77b93f15\",\n                    \"Name\": \"Angry\",\n                    \"Count\": 6\n                },\n                {\n                    \"ID\": \"1c72e59e53f54019\",\n                    \"ParentID\": \"1f29a9dd77b93f15\",\n                    \"Name\": \"Excited\",\n                    \"Count\": 6\n                },\n                {\n                    \"ID\": \"397fcebcf96c5b36\",\n                    \"ParentID\": \"09f3e80afb45be67\",\n                    \"Name\": \"Strings\",\n                    \"Count\": 6\n                },\n                {\n                    \"ID\": \"c7ce12002bf9d360\",\n                    \"ParentID\": \"1f29a9dd77b93f15\",\n                    \"Name\": \"Super Happy\",\n                    \"Count\": 6\n                },\n                {\n                    \"ID\": \"64557b5cfbf4ca45\",\n                    \"ParentID\": \"09f3e80afb45be67\",\n                    \"Name\": \"Brass\",\n                    \"Count\": 5\n                },\n                {\n                    \"ID\": \"3913f73e7d847bbf\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"1950's\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"8d5fecc17df06d71\",\n                    \"ParentID\": \"1f29a9dd77b93f15\",\n                    \"Name\": \"Cheery\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"e097c7368c24bd6b\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"China\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"d9f84ec5bcaddd83\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"Durst, Fred\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"804e6297d0c0ab0d\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"Flow, Joe\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"cb3604ef4794897c\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"Japan\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"2e2ad956e862013d\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"North India\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"e14c27ca9adddede\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"South India\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"5fdafd8ce51a5705\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"T-123.456.789-Z\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"5038a07b58d33e63\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"T-223.456.789-Z\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"e6cca3fc6344a06f\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"1500\",\n                    \"Count\": 2\n                },\n                {\n                    \"ID\": \"a32c01fae5180866\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"1970's\",\n                    \"Count\": 2\n                },\n                {\n                    \"ID\": \"5943ef97b7c2011e\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"Brazil\",\n                    \"Count\": 2\n                },\n                {\n                    \"ID\": \"355c9dc4d0407acc\",\n                    \"ParentID\": \"09f3e80afb45be67\",\n                    \"Name\": \"Double Bass\",\n                    \"Count\": 2\n                },\n                {\n                    \"ID\": \"768e3fd185c1934a\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"Germany\",\n                    \"Count\": 2\n                },\n                {\n                    \"ID\": \"e22bb98cd10b3d90\",\n                    \"ParentID\": \"1f29a9dd77b93f15\",\n                    \"Name\": \"Intelligent\",\n                    \"Count\": 2\n                },\n                {\n                    \"ID\": \"51e218610b5d0d81\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"1920s\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"f57c9986974b314f\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"Durst, Fred\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"2dea59413f8b443a\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"Flow, Joe\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"411a347bf61ff0b8\",\n                    \"ParentID\": \"09f3e80afb45be67\",\n                    \"Name\": \"Percussion\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"c3100ab556d3edd7\",\n                    \"ParentID\": \"09f3e80afb45be67\",\n                    \"Name\": \"Piano\",\n                    \"Count\": 1\n                }\n            ]\n        },\n        \"BPM\": {\n            \"Min\": 0,\n            \"Max\": 200\n        },\n        \"Duration\": {\n            \"Min\": 2,\n            \"Max\": 264\n        }\n    },\n    \"UseDatabase\": true\n}"}],"_postman_id":"53721b69-2112-424a-9da9-c766e35e3e76"},{"name":"Get Search View By Album","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"3950cc46-0733-4edf-aa60-90e73f2f4d80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"true\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"pop\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Album\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use the facets to load the BPM, Duration, Label, Mood, Instrument etc panels</p>\n<ul>\n<li>Facet_Library = true</li>\n<li>Facet_Category = true</li>\n<li>Facet_BPM = true</li>\n<li>Facet_Duration = true</li>\n</ul>\n<p>NOTE2: Use ReturnRates to get the rates for album or album track</p>\n<ul>\n<li>ReturnRates = true</li>\n</ul>\n","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"c6bf5f90-afab-4404-984d-f4be1ebce9ec","name":"Get Search View By Album (JSON)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":""}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"true\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Keyword_Aggregated\": {\r\n                \"ExactPhrase\": \"false\",\r\n                \"Wildcard\": \"true\",\r\n                \"DisableKeywordGroup\": \"false\",\r\n                \"OrOperation\": \"false\",\r\n                \"Keywords\": \"pop\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Album\",\r\n            \"Sort_Predefined\": \"ReleaseDate_Desc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"10\",\r\n            \"Facet_Library\": \"true\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"true\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"true\",\r\n            \"Facet_Duration\": \"true\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://service-public-staging.harvestmedia.net/HMP-WS.svc//cloudsearch/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Nov 2023 04:14:19 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalTracks\": 316,\n    \"TotalAlbums\": 24,\n    \"TotalLibraries\": 3,\n    \"TotalStyles\": 7,\n    \"TotalPlaylists\": 1,\n    \"SearchParameters\": {\n        \"searchtype\": \"Normal\",\n        \"memberaccount\": \"ad5725d472ad6d6d\",\n        \"region\": \"88f8791e732f07e1\",\n        \"includeinactive\": false,\n        \"mainonly\": true,\n        \"alternativeonly\": false,\n        \"resultview\": {\n            \"view\": \"Album\",\n            \"sort_predefined\": \"ReleaseDate_Desc\",\n            \"rankexpression\": \"\",\n            \"skip\": 0,\n            \"limit\": 10,\n            \"saved\": false,\n            \"mincount\": 0,\n            \"returntrackcategoryid\": false,\n            \"facet_album\": false,\n            \"facet_albumskip\": 0,\n            \"facet_albumlimit\": 0,\n            \"facet_library\": true,\n            \"facet_libraryskip\": 0,\n            \"facet_librarylimit\": 0,\n            \"facet_librarysort\": \"Count_Desc\",\n            \"facet_style\": false,\n            \"facet_styleskip\": 0,\n            \"facet_stylelimit\": 0,\n            \"facet_category\": true,\n            \"facet_categoryskip\": 0,\n            \"facet_categorylimit\": 0,\n            \"facet_categorysort\": \"Count_Desc\",\n            \"facet_composer\": false,\n            \"facet_composerskip\": 0,\n            \"facet_composerlimit\": 0,\n            \"bpm_range\": false,\n            \"duration_range\": false,\n            \"include_alternates\": false,\n            \"include_rightholders\": false,\n            \"include_lyrics\": false,\n            \"include_keywords\": false,\n            \"tracks_per_album\": 0,\n            \"facet_bpm\": true,\n            \"facet_duration\": true,\n            \"facet_releaseyear\": false,\n            \"view_style_album_count\": false,\n            \"view_style_playlist_count\": false,\n            \"view_track_categories\": false,\n            \"evoke_prioritizebpm\": false,\n            \"evoke_suppressvocals\": false,\n            \"view_album_assigned_to_style\": false,\n            \"view_playlist_assigned_to_style\": false,\n            \"returnrates\": true\n        },\n        \"nearestduration\": false,\n        \"nearestbpm\": false,\n        \"nearestalternate\": false,\n        \"PreviousSearchTermBundles\": [\n            {\n                \"SearchHistoryID\": 0,\n                \"st_keyword_aggregated\": {\n                    \"searchtermid\": 1,\n                    \"Keywords\": \"pop\",\n                    \"exactphrase\": false,\n                    \"oroperation\": false,\n                    \"wildcard\": true,\n                    \"disablekeywordgroup\": false,\n                    \"negative\": false\n                }\n            }\n        ]\n    },\n    \"Albums\": [\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"6cbeb8fab0a84e83\",\n            \"LibraryName\": \"Harvest Media\",\n            \"ReleaseDate\": \"2019-01-04 00:00:00\",\n            \"Code\": \"TEST041\",\n            \"Detail\": \"Testing categories\",\n            \"Name\": \"Category Testing\",\n            \"DisplayTitle\": \"TEST041 Category Testing\",\n            \"Keywords\": \"\",\n            \"ID\": \"8dca03e951705cd6\",\n            \"TrackCount\": \"2\",\n            \"AlbumRate\": {\n                \"ID\": \"1fbf8d2559330f4f\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT001\",\n                \"Description\": \"FLAT001\",\n                \"Fee\": 50,\n                \"RateType\": \"Album\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"6cbeb8fab0a84e83\",\n            \"LibraryName\": \"Harvest Media\",\n            \"ReleaseDate\": \"2018-09-17 00:00:00\",\n            \"Code\": \"TEST033\",\n            \"Detail\": \"Track Description\",\n            \"Name\": \"AlbumTitle\",\n            \"DisplayTitle\": \"AlbumTitle\",\n            \"Keywords\": \"\",\n            \"ID\": \"7855fdf0a0ecc377\",\n            \"TrackCount\": \"6\",\n            \"AlbumRate\": {\n                \"ID\": \"1fbf8d2559330f4f\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT001\",\n                \"Description\": \"FLAT001\",\n                \"Fee\": 50,\n                \"RateType\": \"Album\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"6cbeb8fab0a84e83\",\n            \"LibraryName\": \"Harvest Media\",\n            \"ReleaseDate\": \"2018-07-23 00:00:00\",\n            \"Code\": \"TEST067\",\n            \"Detail\": \"Harvest Media\",\n            \"Name\": \"Artwork Test\",\n            \"DisplayTitle\": \"TEST067 Artwork Test\",\n            \"Keywords\": \"\",\n            \"ID\": \"26da410a3374f7fb\",\n            \"TrackCount\": \"2\",\n            \"AlbumRate\": {\n                \"ID\": \"1fbf8d2559330f4f\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT001\",\n                \"Description\": \"FLAT001\",\n                \"Fee\": 50,\n                \"RateType\": \"Album\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"6cbeb8fab0a84e83\",\n            \"LibraryName\": \"Harvest Media\",\n            \"ReleaseDate\": \"2018-07-23 00:00:00\",\n            \"Code\": \"TEST066\",\n            \"Detail\": \"Harvest Media\",\n            \"Name\": \"Artwork Test vol.2\",\n            \"DisplayTitle\": \"TEST066 Artwork Test vol.2\",\n            \"Keywords\": \"\",\n            \"ID\": \"e29f0224fe94731e\",\n            \"TrackCount\": \"2\",\n            \"AlbumRate\": {\n                \"ID\": \"1fbf8d2559330f4f\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT001\",\n                \"Description\": \"FLAT001\",\n                \"Fee\": 50,\n                \"RateType\": \"Album\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"6cbeb8fab0a84e83\",\n            \"LibraryName\": \"Harvest Media\",\n            \"ReleaseDate\": \"2018-07-23 00:00:00\",\n            \"Code\": \"TEST040\",\n            \"Detail\": \"Harvest Media\",\n            \"Name\": \"Artwork Test\",\n            \"DisplayTitle\": \"TEST040 Merge rightholders from the same track\",\n            \"Keywords\": \"\",\n            \"ID\": \"26b85459ead14e61\",\n            \"TrackCount\": \"2\",\n            \"AlbumRate\": {\n                \"ID\": \"1fbf8d2559330f4f\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT001\",\n                \"Description\": \"FLAT001\",\n                \"Fee\": 50,\n                \"RateType\": \"Album\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"ee6542379bf2457c\",\n            \"LibraryName\": \"West One Music Group\",\n            \"ReleaseDate\": \"2018-02-20 00:00:00\",\n            \"Code\": \"WOMG 033\",\n            \"Detail\": \"A vibrant, catchy and upbeat soundtrack full of optimism and whimsy, perfect for fun and playful content\",\n            \"Name\": \"Positively Playful\",\n            \"DisplayTitle\": \"WOMG 033 Positively Playful\",\n            \"Keywords\": \"\",\n            \"ID\": \"3d4487797a9bc987\",\n            \"TrackCount\": \"1\",\n            \"AlbumRate\": {\n                \"ID\": \"1fbf8d2559330f4f\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT001\",\n                \"Description\": \"FLAT001\",\n                \"Fee\": 50,\n                \"RateType\": \"Album\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"6cbeb8fab0a84e83\",\n            \"LibraryName\": \"Harvest Media\",\n            \"ReleaseDate\": \"2018-01-07 00:00:00\",\n            \"Code\": \"TEST029\",\n            \"Detail\": \"testing advanced import\",\n            \"Name\": \"Garage Rock - Pop Styles\",\n            \"DisplayTitle\": \"TEST029 Garage Rock - Pop Styles\",\n            \"Keywords\": \"testing advanced import\",\n            \"ID\": \"822308c91a7f5e66\",\n            \"TrackCount\": \"8\",\n            \"AlbumRate\": {\n                \"ID\": \"1fbf8d2559330f4f\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT001\",\n                \"Description\": \"FLAT001\",\n                \"Fee\": 50,\n                \"RateType\": \"Album\"\n            }\n        },\n        {\n            \"LibraryFeatured\": false,\n            \"LibraryID\": \"6cbeb8fab0a84e83\",\n            \"LibraryName\": \"Harvest Media\",\n            \"ReleaseDate\": \"2017-08-11 00:00:00\",\n            \"Code\": \"TEST060B\",\n            \"Detail\": \"Version 3.0 Staging\",\n            \"Name\": \"Multi W - OP - SP_v2\",\n            \"DisplayTitle\": \"TEST060B Multi W - OP - SP_v2\",\n            \"Keywords\": \"Album Keyword test 01\",\n            \"ID\": \"15402a8951c74f65\",\n            \"TrackCount\": \"4\",\n            \"AlbumRate\": {\n                \"ID\": \"1fbf8d2559330f4f\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT001\",\n                \"Description\": \"FLAT001\",\n                \"Fee\": 50,\n                \"RateType\": \"Album\"\n            }\n        }\n    ],\n    \"Facets\": {\n        \"Libraries\": {\n            \"Items\": [\n                {\n                    \"ID\": \"ee6542379bf2457c\",\n                    \"Name\": \"West One Music Group\",\n                    \"Count\": 11\n                },\n                {\n                    \"ID\": \"6cbeb8fab0a84e83\",\n                    \"Name\": \"Harvest Media\",\n                    \"Count\": 10\n                },\n                {\n                    \"ID\": \"a9b449ccaa8a0748\",\n                    \"Name\": \"Ingestion Tool 3.0 BETA-OUTASTFF\",\n                    \"Count\": 1\n                }\n            ]\n        },\n        \"Categories\": {\n            \"Items\": [\n                {\n                    \"ID\": \"dfea44c55902975d\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"1980's\",\n                    \"Count\": 6\n                },\n                {\n                    \"ID\": \"397fcebcf96c5b36\",\n                    \"ParentID\": \"09f3e80afb45be67\",\n                    \"Name\": \"Strings\",\n                    \"Count\": 6\n                },\n                {\n                    \"ID\": \"8d5fecc17df06d71\",\n                    \"ParentID\": \"1f29a9dd77b93f15\",\n                    \"Name\": \"Cheery\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"e097c7368c24bd6b\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"China\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"d9f84ec5bcaddd83\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"Durst, Fred\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"804e6297d0c0ab0d\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"Flow, Joe\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"cb3604ef4794897c\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"Japan\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"2e2ad956e862013d\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"North India\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"e14c27ca9adddede\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"South India\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"5fdafd8ce51a5705\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"T-123.456.789-Z\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"5038a07b58d33e63\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"T-223.456.789-Z\",\n                    \"Count\": 4\n                },\n                {\n                    \"ID\": \"e6cca3fc6344a06f\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"1500\",\n                    \"Count\": 2\n                },\n                {\n                    \"ID\": \"64557b5cfbf4ca45\",\n                    \"ParentID\": \"09f3e80afb45be67\",\n                    \"Name\": \"Brass\",\n                    \"Count\": 2\n                },\n                {\n                    \"ID\": \"355c9dc4d0407acc\",\n                    \"ParentID\": \"09f3e80afb45be67\",\n                    \"Name\": \"Double Bass\",\n                    \"Count\": 2\n                },\n                {\n                    \"ID\": \"e22bb98cd10b3d90\",\n                    \"ParentID\": \"1f29a9dd77b93f15\",\n                    \"Name\": \"Intelligent\",\n                    \"Count\": 2\n                },\n                {\n                    \"ID\": \"51e218610b5d0d81\",\n                    \"ParentID\": \"0b4160fbf2a8a843\",\n                    \"Name\": \"1920s\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"4896f1bfe0bdb283\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"China\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"f57c9986974b314f\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"Durst, Fred\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"2dea59413f8b443a\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"Flow, Joe\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"2f96d2b691767792\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"Japan\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"925c6c46d41b6a33\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"North India\",\n                    \"Count\": 1\n                },\n                {\n                    \"ID\": \"c90f2f9fd13593c5\",\n                    \"ParentID\": \"3aafb445566fbe34\",\n                    \"Name\": \"South India\",\n                    \"Count\": 1\n                }\n            ]\n        },\n        \"BPM\": {\n            \"Min\": 0,\n            \"Max\": 200\n        },\n        \"Duration\": {\n            \"Min\": 2,\n            \"Max\": 240\n        }\n    },\n    \"UseDatabase\": true\n}"}],"_postman_id":"3950cc46-0733-4edf-aa60-90e73f2f4d80"},{"name":"Get Track Details","event":[{"listen":"test","script":{"id":"d523a71a-0877-4323-8702-7b9060788951","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"dcb19ba7-8723-4acb-9a30-ff4fed84d929","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"ReturnAlternateVersions\":\"true\",\r\n\t\"ReturnAttributes\":\"false\",\r\n\t\"ReturnCategories\":\"false\",\r\n\t\"ReturnCategoryFacet\":\"false\",\r\n\t\"ReturnCodes\":\"false\",\r\n\t\"ReturnComposers\":\"false\",\r\n\t\"ReturnRelatedTracks\":\"false\",\r\n\t\"ReturnRightHolders\":\"true\",\r\n    \"ReturnStems\": \"false\",\r\n\t\"GetMainVersionFromAlternate\":\"false\",\r\n\t\"CuesheetOnlyCodesAndAttribute\":\"false\",\r\n\t\"ReturnInactiveTracks\":\"false\",\r\n    \"ReturnRegionOnlyTracks\":\"false\",\r\n\t\"track\":[\"{{HM_ServiceAPI_TrackID}}\"]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/gettracks/{{HM_ServiceAPI_MemberToken}}","description":"<p>NOTE: Use ReturnRates to get the track rate on the response</p>\n<ul>\n<li>ReturnRates = true</li>\n</ul>\n","urlObject":{"path":["gettracks","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"44ea2d1d-a951-4a54-ac2c-c52dcc50e820","name":"Get Track Details (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"ReturnAlternateVersions\":\"true\",\r\n\t\"ReturnAttributes\":\"false\",\r\n\t\"ReturnCategories\":\"false\",\r\n\t\"ReturnCategoryFacet\":\"false\",\r\n\t\"ReturnCodes\":\"false\",\r\n\t\"ReturnComposers\":\"false\",\r\n\t\"ReturnRelatedTracks\":\"false\",\r\n\t\"ReturnRightHolders\":\"true\",\r\n    \"ReturnStems\": \"false\",\r\n\t\"GetMainVersionFromAlternate\":\"false\",\r\n\t\"CuesheetOnlyCodesAndAttribute\":\"false\",\r\n\t\"ReturnInactiveTracks\":\"false\",\r\n    \"ReturnRegionOnlyTracks\":\"false\",\r\n    \"ReturnRates\": \"true\",\r\n\t\"track\":[\"3d90090edb748a45\"]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/gettracks/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 29 Nov 2023 04:09:01 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Tracks\": [\n        {\n            \"LibraryFeatured\": false,\n            \"Highlighted\": false,\n            \"EvokeSegments\": [],\n            \"HighlightedInPlaylists\": [],\n            \"IsOriginator\": false,\n            \"TrackNumber\": \"001\",\n            \"Time\": \"02:13\",\n            \"LengthSeconds\": \"133\",\n            \"Comment\": \"N/A\",\n            \"Composer\": \"Gordon Minette\",\n            \"Publisher\": \"Human Music\",\n            \"Artist\": \"\",\n            \"Name\": \"Rustic Justice 1\",\n            \"AlbumID\": \"c1f9a8886354eeef\",\n            \"LibraryID\": \"96999f76405b4013\",\n            \"ID\": \"3d90090edb748a45\",\n            \"Keywords\": \"\",\n            \"Lyrics\": \"\",\n            \"DisplayTitle\": \"Rustic Justice 1\",\n            \"alternatetitle\": \"\",\n            \"Genre\": \"N/A\",\n            \"Tempo\": \"\",\n            \"Instrumentation\": \"\",\n            \"Bpm\": \"85\",\n            \"Mixout\": \"\",\n            \"Frequency\": \"0\",\n            \"Bitrate\": \"0\",\n            \"DateIngested\": \"2023-11-25 12:57:25\",\n            \"Version\": \"Main\",\n            \"Alternates\": [],\n            \"AlternateTracks\": [],\n            \"RelatedTracks\": [],\n            \"Categories\": [],\n            \"Status\": \"active\",\n            \"Relations\": [],\n            \"CDCode\": \"087\",\n            \"Composers\": [],\n            \"AlbumName\": \"087 Human Music\",\n            \"LibraryName\": \"Label StorageType External\",\n            \"FileName\": \"LSTE_001-Rustic_Justice_1-MAIN.wav\",\n            \"IsAlternate\": \"false\",\n            \"TrackAttribute\": [],\n            \"AlternateCount\": \"0\",\n            \"RightHolderIDs\": [],\n            \"RightHolders\": [\n                {\n                    \"ID\": \"357adb6f79324aa1\",\n                    \"Name\": \"Human Music\",\n                    \"CollectingSociety\": \"NS\",\n                    \"Capacity\": \"Original Publisher\",\n                    \"OwnerPerformanceShare\": \"50.00\",\n                    \"OwnerMechanicalShare\": \"100.00\",\n                    \"CollectionPerformanceShare\": \"50.00\",\n                    \"CollectionMechanicalShare\": \"100.00\",\n                    \"Territory\": \"2WL\"\n                },\n                {\n                    \"OriginalPublisher\": \"Human Music\",\n                    \"ID\": \"68230d61ad28b274\",\n                    \"FirstName\": \"Gordo \",\n                    \"MiddleName\": \"\",\n                    \"LastName\": \"Minette\",\n                    \"CollectingSociety\": \"NS\",\n                    \"Capacity\": \"Composer/Author\",\n                    \"OwnerPerformanceShare\": \"50.00\",\n                    \"CollectionPerformanceShare\": \"50.00\",\n                    \"Territory\": \"2WL\"\n                }\n            ],\n            \"Mood\": \"\",\n            \"MusicFor\": \"\",\n            \"Tags\": [],\n            \"MainTrackID\": \"\",\n            \"IsCached\": false,\n            \"AlbumReleaseDate\": \"2021-05-21T00:00:00\",\n            \"StemCount\": \"0\",\n            \"Stems\": [],\n            \"LanguageItems\": [],\n            \"TrackRate\": {\n                \"ID\": \"d24e2dabcaa1e446\",\n                \"Style\": \"Flat\",\n                \"Code\": \"FLAT002\",\n                \"Description\": \"FLAT002\",\n                \"Fee\": 7,\n                \"RateType\": \"AlbumTrack\"\n            }\n        }\n    ],\n    \"CategoryFacet\": []\n}"}],"_postman_id":"dcb19ba7-8723-4acb-9a30-ff4fed84d929"}],"id":"628731a6-fdfc-4bd8-a549-7717666b635b","_postman_id":"628731a6-fdfc-4bd8-a549-7717666b635b","description":""},{"name":"Select Track to License","item":[{"name":"Get Pricing Groups","id":"21747741-44d1-44d4-b42c-f7f2d4cfc55e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"url":"{{HM_ServiceAPI_URL}}/GetPricingGroups/{{HM_ServiceAPI_MemberToken}}?currencycode=AUD","urlObject":{"path":["GetPricingGroups","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"currencycode","value":"AUD"}],"variable":[]}},"response":[{"id":"eacf77cb-9ff5-4479-a4f3-6fc9ce7ca47a","name":"Get Pricing Groups (JSON)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"url":{"raw":"{{HM_ServiceAPI_URL}}/GetPricingGroups/{{HM_ServiceAPI_MemberToken}}?currencycode=AUD","host":["{{HM_ServiceAPI_URL}}"],"path":["GetPricingGroups","{{HM_ServiceAPI_MemberToken}}"],"query":[{"key":"currencycode","value":"AUD"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Jun 2024 06:13:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"PricingGroups\": [\n        {\n            \"ID\": \"a89b1466396f7c0a\",\n            \"Name\": \"Local\",\n            \"Description\": \"Local\",\n            \"OrderID\": \"1995\",\n            \"Usage\": [\n                {\n                    \"ID\": \"33dcc2c9e4c61682\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Branded Content\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                },\n                {\n                    \"ID\": \"1f670d6cbb8a9a1b\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Commercial/Ad\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                },\n                {\n                    \"ID\": \"7e08f8497f4d5497\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Podcast\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                },\n                {\n                    \"ID\": \"06ae6c0be3f621bf\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Program\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                },\n                {\n                    \"ID\": \"e67630c40ed47e94\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Promo/PSA\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                }\n            ],\n            \"Rates\": [\n                {\n                    \"ID\": \"ec676789b1358444\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP001\",\n                    \"Title\": \"Promo/PSA / Program\",\n                    \"Description\": \"Local Internet/Social\",\n                    \"Fee\": 175,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:22:53\",\n                    \"OrderID\": \"1998\",\n                    \"CurrencyCode\": \"AUD\"\n                },\n                {\n                    \"ID\": \"e0da54a4bee1366a\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP002\",\n                    \"Title\": \"Promo/PSA / Program\",\n                    \"Description\": \"Local Radio\",\n                    \"Fee\": 125,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:32:34\",\n                    \"OrderID\": \"1999\",\n                    \"CurrencyCode\": \"AUD\"\n                },\n                {\n                    \"ID\": \"881629aaa45eaa73\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP003\",\n                    \"Title\": \"Promo/PSA /  Program\",\n                    \"Description\": \"Local All TV/Streaming\",\n                    \"Fee\": 200,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:34:12\",\n                    \"OrderID\": \"2000\",\n                    \"CurrencyCode\": \"AUD\"\n                },\n                {\n                    \"ID\": \"89b4e8664c662c05\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DROP004\",\n                    \"Title\": \"Promo/PSA / Program\",\n                    \"Description\": \"Local Industrial\",\n                    \"Fee\": 250,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:36:50\",\n                    \"OrderID\": \"2001\",\n                    \"CurrencyCode\": \"AUD\"\n                },\n                {\n                    \"ID\": \"3f399de182054188\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP005\",\n                    \"Title\": \"Promo/PSA / Program\",\n                    \"Description\": \"Local Internal\",\n                    \"Fee\": 150,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:38:42\",\n                    \"OrderID\": \"2002\",\n                    \"CurrencyCode\": \"AUD\"\n                }\n            ]\n        },\n        {\n            \"ID\": \"7489bf7337910b83\",\n            \"Name\": \"Regional\",\n            \"Description\": \"Regional\",\n            \"OrderID\": \"1996\",\n            \"Usage\": [\n                {\n                    \"ID\": \"33dcc2c9e4c61682\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Branded Content\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                },\n                {\n                    \"ID\": \"1f670d6cbb8a9a1b\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Commercial/Ad\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                },\n                {\n                    \"ID\": \"7e08f8497f4d5497\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Podcast\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                },\n                {\n                    \"ID\": \"06ae6c0be3f621bf\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Program\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                },\n                {\n                    \"ID\": \"e67630c40ed47e94\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Promo/PSA\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                }\n            ],\n            \"Rates\": [\n                {\n                    \"ID\": \"4251eff4483089cb\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP008\",\n                    \"Title\": \"Promo/PSA / Program\",\n                    \"Description\": \"Regional Internet/Social\",\n                    \"Fee\": 225,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:46:17\",\n                    \"OrderID\": \"2005\",\n                    \"CurrencyCode\": \"AUD\"\n                },\n                {\n                    \"ID\": \"921b4239606f2ca9\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP009\",\n                    \"Title\": \"Promo/PSA / Program\",\n                    \"Description\": \"Regional Radio\",\n                    \"Fee\": 170,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:46:58\",\n                    \"OrderID\": \"2006\",\n                    \"CurrencyCode\": \"AUD\"\n                },\n                {\n                    \"ID\": \"e197869d71502563\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP009\",\n                    \"Title\": \"Promo/PSA / Program\",\n                    \"Description\": \"Regional All TV/Streaming\",\n                    \"Fee\": 270,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:47:30\",\n                    \"OrderID\": \"2007\",\n                    \"CurrencyCode\": \"AUD\"\n                },\n                {\n                    \"ID\": \"64c909e89ef86636\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP010\",\n                    \"Title\": \"Promo/PSA / Program\",\n                    \"Description\": \"Regional Industrial\",\n                    \"Fee\": 325,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:48:26\",\n                    \"OrderID\": \"2008\",\n                    \"CurrencyCode\": \"AUD\"\n                },\n                {\n                    \"ID\": \"0cccbaf4941574b9\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP011\",\n                    \"Title\": \"Promo/PSA / Program\",\n                    \"Description\": \"Regional Internal\",\n                    \"Fee\": 150,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:49:03\",\n                    \"OrderID\": \"2009\",\n                    \"CurrencyCode\": \"AUD\"\n                }\n            ]\n        },\n        {\n            \"ID\": \"c1ed8dd27b09165c\",\n            \"Name\": \"National/Global\",\n            \"Description\": \"National/Global\",\n            \"OrderID\": \"1997\",\n            \"Usage\": [],\n            \"Rates\": []\n        }\n    ],\n    \"RateTags\": [\n        {\n            \"ID\": \"94e4ee1579d18252\",\n            \"GroupID\": \"15346e27fe392591\",\n            \"ItemName\": \"All TV/Streaming\",\n            \"Locked\": false,\n            \"GroupItemStatus\": \"Active\"\n        },\n        {\n            \"ID\": \"f627f6d4e5705cb6\",\n            \"GroupID\": \"15346e27fe392591\",\n            \"ItemName\": \"Industrial\",\n            \"Locked\": false,\n            \"GroupItemStatus\": \"Active\"\n        },\n        {\n            \"ID\": \"ab34bb4d5367526d\",\n            \"GroupID\": \"15346e27fe392591\",\n            \"ItemName\": \"Internal\",\n            \"Locked\": false,\n            \"GroupItemStatus\": \"Active\"\n        },\n        {\n            \"ID\": \"95ce6b8ced3020bd\",\n            \"GroupID\": \"15346e27fe392591\",\n            \"ItemName\": \"Internet/Social\",\n            \"Locked\": false,\n            \"GroupItemStatus\": \"Active\"\n        },\n        {\n            \"ID\": \"ea890f025962bf92\",\n            \"GroupID\": \"15346e27fe392591\",\n            \"ItemName\": \"Radio\",\n            \"Locked\": false,\n            \"GroupItemStatus\": \"Active\"\n        }\n    ]\n}"}],"_postman_id":"21747741-44d1-44d4-b42c-f7f2d4cfc55e"},{"name":"Get Rates","id":"cfa5afc2-b4f4-4196-8679-e2594486bef4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"url":"{{HM_ServiceAPI_URL}}/getrates/{{HM_ServiceAPI_Token}}/{{ratetype}}/{{currency}}?pricinggroupid={{pricinggroupid}}&usagetags=","description":"<p>Returns available rates as configured in the system.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ServiceToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>Style</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>CurrrencyCode</td>\n<td>String</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>PricingGroupID</td>\n<td>String</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Usage tags</td>\n<td>String</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<p>Possible values for Style include; duration, flat and special. These styles are assigned to the rates created via the Harvest Media Admin.</p>\n<p>Currency Code is optional. When not provided the accounts default currency fee amounts will be returned. If a currency code is provided, and that currency has been configured on the account, then that currencies fee amounts will be returned.</p>\n<p>For Single License, please filter the response based either using</p>\n<ul>\n<li><p>PricingGroupID - this will return all rates based on a specific group. See request above (getpricinggroups/) to see how to get the ID, or</p>\n</li>\n<li><p>Usage tags - will will return all the rates under many different groups as long as the group has the usage tags in it. *Use comma to request multiple tags. I.e., SFX,Music.</p>\n</li>\n</ul>\n","urlObject":{"path":["getrates","{{HM_ServiceAPI_Token}}","{{ratetype}}","{{currency}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"pricinggroupid","value":"{{pricinggroupid}}"},{"key":"usagetags","value":""}],"variable":[]}},"response":[{"id":"6d6fe392-91eb-4ce4-a562-53ec304dbf68","name":"Get Rates (JSON)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"url":"{{HM_ServiceAPI_URL}}/getrates/{{HM_ServiceAPI_Token}}/flat/USD"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 13 Mar 2024 00:34:47 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Rates\": [\n        {\n            \"ID\": \"450b366e4f7606a1\",\n            \"Style\": \"Flat\",\n            \"Code\": \"Basic\",\n            \"Title\": \"Basic\",\n            \"Description\": \"Videos and podcasts without marketing spend\",\n            \"Fee\": 1,\n            \"DatetimeStamp\": \"2023-10-17 11:18:38\",\n            \"OrderID\": \"1756\",\n            \"CurrencyCode\": \"USD\",\n            \"ParentRate\": {\n                \"ID\": \"47f77918b0b6d2ad\",\n                \"Code\": \"\",\n                \"Description\": \"Social Media/Podcasts\",\n                \"Fee\": 0,\n                \"OrderID\": \"1755\",\n                \"DescriptionNotes\": \"Single Use Track Licensing\"\n            }\n        },\n        {\n            \"ID\": \"2bdd5c33e02c0a71\",\n            \"Style\": \"Flat\",\n            \"Code\": \"Indie Film\",\n            \"Title\": \"Independent Film\",\n            \"Description\": \"Short film, feature film or trailer use. For indie films with budgets up to $250,000.\",\n            \"Fee\": 299,\n            \"DatetimeStamp\": \"2023-10-18 10:48:42\",\n            \"OrderID\": \"1757\",\n            \"CurrencyCode\": \"USD\",\n            \"ParentRate\": {\n                \"ID\": \"15346e27fe392591\",\n                \"Code\": \"\",\n                \"Description\": \"Film\",\n                \"Fee\": 0,\n                \"OrderID\": \"1787\",\n                \"DescriptionNotes\": \"Single Use Track Licensing\"\n            }\n        },\n        {\n            \"ID\": \"ae808c58b684190a\",\n            \"Style\": \"Flat\",\n            \"Code\": \"Social/Podcasts\",\n            \"Title\": \"Social Media and Podcasts\",\n            \"Description\": \"Branded content and podcasts with unlimited social media boosting\",\n            \"Fee\": 499,\n            \"DatetimeStamp\": \"2023-10-27 15:54:21\",\n            \"OrderID\": \"1758\",\n            \"CurrencyCode\": \"USD\",\n            \"ParentRate\": {\n                \"ID\": \"47f77918b0b6d2ad\",\n                \"Code\": \"\",\n                \"Description\": \"Social Media/Podcasts\",\n                \"Fee\": 0,\n                \"OrderID\": \"1755\",\n                \"DescriptionNotes\": \"Single Use Track Licensing\"\n            }\n        },\n        {\n            \"ID\": \"02194afc4861b28d\",\n            \"Style\": \"Flat\",\n            \"Code\": \"Online Ads\",\n            \"Title\": \"Online Global Advertisements\",\n            \"Description\": \"Online global advertisements\",\n            \"Fee\": 1499,\n            \"DatetimeStamp\": \"2023-10-27 15:55:07\",\n            \"OrderID\": \"1759\",\n            \"CurrencyCode\": \"USD\",\n            \"ParentRate\": {\n                \"ID\": \"2d112e9e87a1a590\",\n                \"Code\": \"\",\n                \"Description\": \"Advertisements\",\n                \"Fee\": 0,\n                \"OrderID\": \"1788\",\n                \"DescriptionNotes\": \"Single Use Track Licensing\"\n            }\n        },\n        {\n            \"ID\": \"69d94875f49172ee\",\n            \"Style\": \"Flat\",\n            \"Code\": \"National Ads\",\n            \"Title\": \"National Advertisements / All Media\",\n            \"Description\": \"National advertisements used in all media\",\n            \"Fee\": 2499,\n            \"DatetimeStamp\": \"2023-10-27 15:55:56\",\n            \"OrderID\": \"1760\",\n            \"CurrencyCode\": \"USD\",\n            \"ParentRate\": {\n                \"ID\": \"2d112e9e87a1a590\",\n                \"Code\": \"\",\n                \"Description\": \"Advertisements\",\n                \"Fee\": 0,\n                \"OrderID\": \"1788\",\n                \"DescriptionNotes\": \"Single Use Track Licensing\"\n            }\n        },\n        {\n            \"ID\": \"351cebe664248c2d\",\n            \"Style\": \"Flat\",\n            \"Code\": \"Global Ads\",\n            \"Title\": \"Global Advertisements / All Media\",\n            \"Description\": \"Global advertisements used in all media\",\n            \"Fee\": 4999,\n            \"DatetimeStamp\": \"2023-10-27 15:56:45\",\n            \"OrderID\": \"1761\",\n            \"CurrencyCode\": \"USD\",\n            \"ParentRate\": {\n                \"ID\": \"2d112e9e87a1a590\",\n                \"Code\": \"\",\n                \"Description\": \"Advertisements\",\n                \"Fee\": 0,\n                \"OrderID\": \"1788\",\n                \"DescriptionNotes\": \"Single Use Track Licensing\"\n            }\n        }\n    ]\n}"},{"id":"9a5c1cb1-19bc-4a74-b9f8-c8c7d9bacbcf","name":"Get Rates usagetags (JSON)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"url":{"raw":"{{HM_ServiceAPI_URL}}/getrates/{{HM_ServiceAPI_Token}}/flat/USD?pricinggroupid=&usagetags=Music","host":["{{HM_ServiceAPI_URL}}"],"path":["getrates","{{HM_ServiceAPI_Token}}","flat","USD"],"query":[{"key":"pricinggroupid","value":""},{"key":"usagetags","value":"Music"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 25 Sep 2024 03:39:10 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"Rates\": [\n        {\n            \"ID\": \"450b366e4f7606a1\",\n            \"Style\": \"Flat\",\n            \"Code\": \"Basic\",\n            \"Title\": \"Basic\",\n            \"Description\": \"Videos and podcasts without marketing spend, includes monetization\",\n            \"Fee\": 1,\n            \"FeeWithTax\": 0,\n            \"DatetimeStamp\": \"2023-10-17 11:18:38\",\n            \"OrderID\": \"1\",\n            \"CurrencyCode\": \"USD\",\n            \"ParentRate\": {\n                \"ID\": \"47f77918b0b6d2ad\",\n                \"Code\": \"\",\n                \"Description\": \"Social Media/Podcasts\",\n                \"Fee\": 0,\n                \"FeeWithTax\": 0,\n                \"OrderID\": \"1755\",\n                \"DescriptionNotes\": \"Single Use Track Licensing\"\n            }\n        },\n        {\n            \"ID\": \"ae808c58b684190a\",\n            \"Style\": \"Flat\",\n            \"Code\": \"Advanced\",\n            \"Title\": \"Advanced\",\n            \"Description\": \"Videos and podcasts with unlimited boosting and sponsored content\",\n            \"Fee\": 499,\n            \"FeeWithTax\": 0,\n            \"DatetimeStamp\": \"2023-10-27 15:54:21\",\n            \"OrderID\": \"2\",\n            \"CurrencyCode\": \"USD\",\n            \"ParentRate\": {\n                \"ID\": \"47f77918b0b6d2ad\",\n                \"Code\": \"\",\n                \"Description\": \"Social Media/Podcasts\",\n                \"Fee\": 0,\n                \"FeeWithTax\": 0,\n                \"OrderID\": \"1755\",\n                \"DescriptionNotes\": \"Single Use Track Licensing\"\n            }\n        },\n        {\n            \"ID\": \"2bdd5c33e02c0a71\",\n            \"Style\": \"Flat\",\n            \"Code\": \"Indie Film\",\n            \"Title\": \"Independent Short Film\",\n            \"Description\": \"Short films with budgets up to $250,000.\",\n            \"Fee\": 299,\n            \"FeeWithTax\": 0,\n            \"DatetimeStamp\": \"2023-10-18 10:48:42\",\n            \"OrderID\": \"3\",\n            \"CurrencyCode\": \"USD\",\n            \"ParentRate\": {\n                \"ID\": \"15346e27fe392591\",\n                \"Code\": \"\",\n                \"Description\": \"Film\",\n                \"Fee\": 0,\n                \"FeeWithTax\": 0,\n                \"OrderID\": \"1787\",\n                \"DescriptionNotes\": \"Single Use Track Licensing\"\n            }\n        },\n        {\n            \"ID\": \"9bc0f10772ba3fb6\",\n            \"Style\": \"Flat\",\n            \"Code\": \"Indie Film\",\n            \"Title\": \"Independent Feature Film or Trailer\",\n            \"Description\": \"Feature film or trailer use. For indie films with budgets up to $250,000.\",\n            \"Fee\": 750,\n            \"FeeWithTax\": 0,\n            \"DatetimeStamp\": \"2024-04-12 05:40:13\",\n            \"OrderID\": \"4\",\n            \"CurrencyCode\": \"USD\",\n            \"ParentRate\": {\n                \"ID\": \"15346e27fe392591\",\n                \"Code\": \"\",\n                \"Description\": \"Film\",\n                \"Fee\": 0,\n                \"FeeWithTax\": 0,\n                \"OrderID\": \"1787\",\n                \"DescriptionNotes\": \"Single Use Track Licensing\"\n            }\n        },\n        {\n            \"ID\": \"02194afc4861b28d\",\n            \"Style\": \"Flat\",\n            \"Code\": \"Online Ads\",\n            \"Title\": \"Online Global Advertisements\",\n            \"Description\": \"Online global advertisements with unlimited ad spend\",\n            \"Fee\": 1499,\n            \"FeeWithTax\": 0,\n            \"DatetimeStamp\": \"2023-10-27 15:55:07\",\n            \"OrderID\": \"5\",\n            \"CurrencyCode\": \"USD\",\n            \"ParentRate\": {\n                \"ID\": \"2d112e9e87a1a590\",\n                \"Code\": \"\",\n                \"Description\": \"Advertisements\",\n                \"Fee\": 0,\n                \"FeeWithTax\": 0,\n                \"OrderID\": \"1788\",\n                \"DescriptionNotes\": \"Single Use Track Licensing\"\n            }\n        },\n        {\n            \"ID\": \"dc2d3a41a221c81d\",\n            \"Style\": \"Flat\",\n            \"Code\": \"Regional Ads\",\n            \"Title\": \"Regional Advertisements / All Media\",\n            \"Description\": \"Regional Advertisements used in all media\",\n            \"Fee\": 1999,\n            \"FeeWithTax\": 0,\n            \"DatetimeStamp\": \"2024-05-02 10:56:51\",\n            \"OrderID\": \"6\",\n            \"CurrencyCode\": \"USD\",\n            \"ParentRate\": {\n                \"ID\": \"2d112e9e87a1a590\",\n                \"Code\": \"\",\n                \"Description\": \"Advertisements\",\n                \"Fee\": 0,\n                \"FeeWithTax\": 0,\n                \"OrderID\": \"1788\",\n                \"DescriptionNotes\": \"Single Use Track Licensing\"\n            }\n        },\n        {\n            \"ID\": \"69d94875f49172ee\",\n            \"Style\": \"Flat\",\n            \"Code\": \"National Ads\",\n            \"Title\": \"National Advertisements / All Media\",\n            \"Description\": \"National advertisements used in all media\",\n            \"Fee\": 2499,\n            \"FeeWithTax\": 0,\n            \"DatetimeStamp\": \"2023-10-27 15:55:56\",\n            \"OrderID\": \"7\",\n            \"CurrencyCode\": \"USD\",\n            \"ParentRate\": {\n                \"ID\": \"2d112e9e87a1a590\",\n                \"Code\": \"\",\n                \"Description\": \"Advertisements\",\n                \"Fee\": 0,\n                \"FeeWithTax\": 0,\n                \"OrderID\": \"1788\",\n                \"DescriptionNotes\": \"Single Use Track Licensing\"\n            }\n        },\n        {\n            \"ID\": \"351cebe664248c2d\",\n            \"Style\": \"Flat\",\n            \"Code\": \"Global Ads\",\n            \"Title\": \"Global Advertisements / All Media\",\n            \"Description\": \"Global advertisements used in all media\",\n            \"Fee\": 4999,\n            \"FeeWithTax\": 0,\n            \"DatetimeStamp\": \"2023-10-27 15:56:45\",\n            \"OrderID\": \"8\",\n            \"CurrencyCode\": \"USD\",\n            \"ParentRate\": {\n                \"ID\": \"2d112e9e87a1a590\",\n                \"Code\": \"\",\n                \"Description\": \"Advertisements\",\n                \"Fee\": 0,\n                \"FeeWithTax\": 0,\n                \"OrderID\": \"1788\",\n                \"DescriptionNotes\": \"Single Use Track Licensing\"\n            }\n        }\n    ]\n}"}],"_postman_id":"cfa5afc2-b4f4-4196-8679-e2594486bef4"}],"id":"d750dbe6-1fca-48fd-bca1-19213c8cc1f1","description":"<p><code>GetRates</code> will return all the rates configured in the Admin System. To get only single license type of rates, please filter the response from the parent rate description by getting only \"Single License\" rates.</p>\n","_postman_id":"d750dbe6-1fca-48fd-bca1-19213c8cc1f1"},{"name":"Empty Cart","item":[{"name":"Create Invoice","event":[{"listen":"test","script":{"id":"07931462-9b4b-4220-bf48-fe6cb6749f7e","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","var jsonData = null;","var jsonDataInvoiceID = \"\";","var jsonDataInvoiceTotal = \"\";","","if (responseBody.indexOf(\"<?xml\") >= 0) {","    jsonData = xml2Json(responseBody);","    jsonDataInvoiceID = jsonData.responseinvoice.invoice.id;","    jsonDataInvoiceTotal = jsonData.responseinvoice.invoice.total;","} else {","    jsonData = JSON.parse(responseBody)","    if (jsonData.invoice !== null) {","        jsonDataInvoiceID = jsonData.invoice.id;","        jsonDataInvoiceTotal = jsonData.invoice.total;","    }","}","","console.log(\"HM_ServiceAPI_InvoiceID set to \" + jsonDataInvoiceID);","","postman.setEnvironmentVariable(\"HM_ServiceAPI_InvoiceID\", jsonDataInvoiceID);","postman.setEnvironmentVariable(\"HM_ServiceAPI_InvoiceTotal\", jsonDataInvoiceTotal);","","postman.setNextRequest(\"Get Invoice\");"],"type":"text/javascript"}}],"id":"49045dd2-06ef-4bda-94b7-e3afc797e9cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"145a3a1250adade601667ad37a8b15d5\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"450b366e4f7606a1\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"5ea9242086a691c53aa57db592338b71\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"450b366e4f7606a1\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            }\r\n        ],\r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\":\"Production Name\",\r\n\t\t\t\"productiondate\":\"2020-01-08T00:00:00\",\r\n\t\t\t\"producer\":\"Producer Name\",\r\n\t\t\t\"length\":\"Total Production Length\",\r\n\t\t\t\"po\":\"Purchase Order Number\"\r\n        },\r\n        \"currencycode\": \"USD\",\r\n        \"duedate\": \"2024-03-15T23:59:59\",\r\n        \"issuedate\": \"2024-03-13T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}"},"url":"{{HM_ServiceAPI_URL}}/addinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p>Creates an invoice based on the associated invoice line items.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CurrencyCode</td>\n<td>Required, the currency for which payment will be taken in</td>\n</tr>\n<tr>\n<td>DueDate</td>\n<td>Required, the date the invoice is due. This should always be set to the current date</td>\n</tr>\n<tr>\n<td>IssueDate</td>\n<td>Optional, this date the invoice was generated. This should always be set to the current date</td>\n</tr>\n<tr>\n<td>DiscountID</td>\n<td>Optional, the ID of the applied discount. This should only be used when a discount applies to an entire invoice. *Not applicable for Subscriptions. See below reference line to get to know more.</td>\n</tr>\n<tr>\n<td>Discount</td>\n<td>Optional, the amount of the applied discount.</td>\n</tr>\n<tr>\n<td>SubTotal</td>\n<td>Optional, the total amount of all line items (excluding any applicable tax or discount amounts). *Not applicable for subscriptions, the SubTotal will be filled based on the Invoice Line Item ReferenceID (SubscriptionPlanID) in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>TotalTax</td>\n<td>Optional, the total tax amount of all line items (including any applicable tax reductions based on discount amounts). *Not applicable for subscriptions, the TotalTax will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>Total</td>\n<td>Optional, the total amount of all line items (including any applicable tax or discount amounts). *Not applicable for subscriptions, the Total sum will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td>Optional, possible values are; \"CreditCard\", or \"PayPal\". This should only be set if payment is taken in advance of creating an invoice</td>\n</tr>\n<tr>\n<td>PaymentReferenceNumber</td>\n<td>Optional, this should only be set if payment is taken in advance of creating an invoice and should be the unique payment reference number returned from the payment gateway</td>\n</tr>\n<tr>\n<td>InvoiceLineItems</td>\n<td>Required, these are the items that make up in the invoice</td>\n</tr>\n<tr>\n<td>InvoiceProduction</td>\n<td>Required, this is the production that the invoice covers</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice Line Items</strong></p>\n<p>There should be one of these for every unique item on the invoice.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Quantity</td>\n<td>Required, the quantity of the line item</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>Optional, the amount of the line item (excluding any applicable tax or discount amounts). *Not applicable for subscriptions, the Line Item Amount will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>AmountTax</td>\n<td>Optional, the tax amount of the line item (including any applicable tax reductions based on discount amounts). *Not applicable for subscriptions, the item AmountTax will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>Required, the description of the line item. A good example to be used here would be the track display title.  <br />*For Subscriptions, empty is accepted.</td>\n</tr>\n<tr>\n<td>DiscountID</td>\n<td>Optional, the ID of the applied discount. This should only be used when a discount applies to this specific line item.  <br />*For subscriptions,  <br />- 1. If a plan has an automatic voucher discount (no voucher code needed from the member) it will be automatically applied to the invoice total and returned on the response.  <br />- 2. Now, to apply discount using a voucher code previously validated, refer below to Invoice Line Items References.</td>\n</tr>\n<tr>\n<td>Discount</td>\n<td>Optional, the amount of the applied discount</td>\n</tr>\n<tr>\n<td>InvoiceItemReferences</td>\n<td>Required, hese are the items that make up the line item</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice Line Items - References</strong></p>\n<p>Each unique item on the invoice will have 2 of these; one of type \"Track\" and another of type \"Rate\".</p>\n<p>For Subscription, it could either have only one reference line item of type \"Subscription\" or another type \"SubscriptionDiscount\" when voucher code applies.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceType</td>\n<td>Required, possible values are; \"Track\", \"Rate\", \"Subscription\", or \"SubscriptionDiscount\".</td>\n</tr>\n<tr>\n<td>ReferenceID</td>\n<td>Required, the ID to be used here will depend on the value selected for the ReferenceType. So it will either be a TrackID, RateID, SubscriptionID or SubscriptionDiscountID (this last one will be returned via ValidateCoupon()).</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>Optional, the Value to be used here should depend on the value selected for the ReferenceType. For example, when \"Track\" then the value should be the track display title. When \"Rate\" then the value should be the code of that Rate.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Production</strong></p>\n<p>Optional. This is not an array and will only ever be a single production. This does not need to be provided and should only be used when a production is to be specified as part of the invoice creation. If a production is provided then there are specific fields (listed below) that need to be provided as part of the production object.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Client</td>\n<td>Required, this should be the email associated with against the invoice. If it is a guest purchase then it will be the guests email, otherwise it will be the members email</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>Required, the name of the production. This would typically be the name given to the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>ProductionDate</td>\n<td>Optional, the date of the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>Producer</td>\n<td>Optional, the producer associated with the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>Length</td>\n<td>Optional, the total length of the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>PO</td>\n<td>Optional, the purchase order number associated with the production as provided by the invoicee</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<p>On invoice creation success, the response will be the invoice that was created. This will contain the relevant InvoiceID that will be needed to mark the invoice as paid or to retrieve it.</p>\n","urlObject":{"path":["addinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"e5be4d34-95e8-4fa6-8b2a-b213b6145c31","name":"Create Invoice (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"9894b0262715fdb8\",\r\n                    \"referencetype\":\"Track\"\r\n                },\r\n                {\r\n                    \"referenceid\":\"2b9267ab6c349659\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"8c36ab94a3bc6ea1\",\r\n                    \"referencetype\":\"Track\"\r\n                },\r\n                {\r\n                    \"referenceid\":\"2b9267ab6c349659\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            }\r\n        ],\r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\":\"Production Name\",\r\n\t\t\t\"productiondate\":\"2020-01-08T00:00:00\",\r\n\t\t\t\"producer\":\"Producer Name\",\r\n\t\t\t\"length\":\"Total Production Length\",\r\n\t\t\t\"po\":\"Purchase Order Number\"\r\n        },\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-11-16T23:59:59\",\r\n        \"issuedate\": \"2023-11-16T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}"},"url":"{{HM_ServiceAPI_URL}}/addinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Dec 2023 00:23:13 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"4628e0fa73666edb\",\n        \"memberaccountid\": \"92662dfe696a497f\",\n        \"issuedate\": \"2023-12-11T11:23:13.343\",\n        \"duedate\": \"2023-12-11T11:23:13.37\",\n        \"totaltax\": 0,\n        \"subtotal\": 10,\n        \"total\": 10,\n        \"invoicenumber\": 183,\n        \"status\": \"Pending\",\n        \"currencycode\": \"AUD\"\n    },\n    \"checkoutkeys\": {\n        \"StripeAPIKey\": \"pk_test_51MjXTGINFIsu1VM9coCRmwphHaoHWhsKVYzGOqNCwNg7EArDLkFlO9bMQIbB6leGxZ8kvrhfha6dTwy8NLxR0CIg00KKMvSCPT\",\n        \"ConnectedAccountID\": \"acct_1Nseu6IGENCfkRK2\",\n        \"AccountCurrency\": \"AUD\"\n    }\n}"},{"id":"67653465-7187-452b-bf41-81cecf558a22","name":"Create Invoice (XML)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/xml"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"9894b0262715fdb8\",\r\n                    \"referencetype\":\"Track\"\r\n                },\r\n                {\r\n                    \"referenceid\":\"2b9267ab6c349659\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"8c36ab94a3bc6ea1\",\r\n                    \"referencetype\":\"Track\"\r\n                },\r\n                {\r\n                    \"referenceid\":\"2b9267ab6c349659\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            }\r\n        ],\r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\":\"Production Name\",\r\n\t\t\t\"productiondate\":\"2020-01-08T00:00:00\",\r\n\t\t\t\"producer\":\"Producer Name\",\r\n\t\t\t\"length\":\"Total Production Length\",\r\n\t\t\t\"po\":\"Purchase Order Number\"\r\n        },\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-11-16T23:59:59\",\r\n        \"issuedate\": \"2023-11-16T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}"},"url":"{{HM_ServiceAPI_URL}}/addinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Mon, 11 Dec 2023 00:59:43 GMT","enabled":true},{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<responseinvoice xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <invoice>\n        <id>f1f61e2251822ad5</id>\n        <memberaccountid>92662dfe696a497f</memberaccountid>\n        <issuedate>2023-12-11T11:59:43.593</issuedate>\n        <duedate>2023-12-11T11:59:43.607</duedate>\n        <totaltax>0.0</totaltax>\n        <subtotal>10.00</subtotal>\n        <total>10.00</total>\n        <invoicenumber>184</invoicenumber>\n        <status>Pending</status>\n        <currencycode>AUD</currencycode>\n    </invoice>\n    <checkoutkeys>\n        <stripeapikey>pk_test_51MjXTGINFIsu1VM9coCRmwphHaoHWhsKVYzGOqNCwNg7EArDLkFlO9bMQIbB6leGxZ8kvrhfha6dTwy8NLxR0CIg00KKMvSCPT</stripeapikey>\n        <connectedaccountid>acct_1Nseu6IGENCfkRK2</connectedaccountid>\n        <accountcurrency>AUD</accountcurrency>\n    </checkoutkeys>\n</responseinvoice>"}],"_postman_id":"49045dd2-06ef-4bda-94b7-e3afc797e9cf"}],"id":"77a1566a-c6aa-4830-9030-26e3bc8c74b0","description":"<p>When the cart is empty, a new invoice needs to be created to start off the checkout process. Send the TrackID plus the RateID on the invoice reference line items and get the response back with the total invoice amount</p>\n","_postman_id":"77a1566a-c6aa-4830-9030-26e3bc8c74b0"},{"name":"Filled in Shopping Cart","item":[{"name":"Get Invoice","event":[{"listen":"test","script":{"id":"b5ca7520-4b18-41d1-a7a4-0e9758017751","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Pay Invoice\");"],"type":"text/javascript"}}],"id":"fefedc19-9926-4415-84e1-a604a8b35758","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"invoiceid\":\"{{HM_ServiceAPI_InvoiceID}}\",\r\n\t\"returntracks\":true,\r\n\t\"returnrates\": true,\r\n\t\"returndiscounts\": true\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p>Gets an invoice.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvoiceID</td>\n<td>Required, the unique ID of the invoice that is to be retrieved</td>\n</tr>\n<tr>\n<td>ReturnTracks</td>\n<td>Optional, default value is false. When true, the retrieved invoice will contain the tracks that make up the invoice</td>\n</tr>\n<tr>\n<td>ReturnRates</td>\n<td>Optional, default value is false. When true, the retrieved invoice will contain the rates that make up the invoice</td>\n</tr>\n<tr>\n<td>ReturnDiscounts</td>\n<td>Optional, default value is false. When true, the retrieved invoice will contain the discounts that make up the invoice</td>\n</tr>\n<tr>\n<td>ReturnSubscriptions</td>\n<td>Optional, default value is false. When true, the retrieved invoice will containg the subscription that make up the invoice.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<p>Invoices of any status can be retrieved.</p>\n","urlObject":{"path":["getinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"347aa33c-5159-4d25-b909-f50fed3a6650","name":"Get Invoice (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"invoiceid\":\"4628e0fa73666edb\",\r\n\t\"returntracks\":true,\r\n\t\"returnrates\": true,\r\n\t\"returndiscounts\": true\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Dec 2023 01:14:13 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"4628e0fa73666edb\",\n        \"memberaccountid\": \"92662dfe696a497f\",\n        \"issuedate\": \"2023-12-11T12:00:32.123\",\n        \"duedate\": \"2023-12-11T12:00:32.137\",\n        \"totaltax\": 0,\n        \"subtotal\": 15,\n        \"total\": 15,\n        \"invoicelineitems\": [\n            {\n                \"amount\": 5,\n                \"description\": \"Track Purchase - Little Victories\",\n                \"quantity\": 1,\n                \"amounttax\": 0,\n                \"track\": {\n                    \"trackid\": \"ba87dae384dfeddd\",\n                    \"albumid\": \"e6ee57b732ce88b2\",\n                    \"originalfilename\": \"CHALK_LITTLE_VICTORIES_A_Sam_Clunie_Daniel_Marantz.wav\",\n                    \"filename\": \"CHALK014_002_Little Victories.wav\",\n                    \"title\": \"Little Victories\",\n                    \"displaytitle\": \"Little Victories\",\n                    \"tracknumber\": \"002\",\n                    \"duration\": 148,\n                    \"bitrate\": 148,\n                    \"frequency\": 0,\n                    \"description\": \"Diligent tasking cue with unwavering staccato strings, warm cello pizzicato and glassy percussive elements\"\n                },\n                \"rate\": {\n                    \"id\": \"2b9267ab6c349659\",\n                    \"style\": 2,\n                    \"code\": \"FLAT001\",\n                    \"description\": \"FLAT001\",\n                    \"duration\": 0,\n                    \"fee\": 5\n                }\n            },\n            {\n                \"amount\": 5,\n                \"description\": \"Track Purchase - Dawn Chorus\",\n                \"quantity\": 1,\n                \"track\": {\n                    \"trackid\": \"9894b0262715fdb8\",\n                    \"albumid\": \"e6ee57b732ce88b2\",\n                    \"originalfilename\": \"CHALK_DAWN_CHORUS_A_Elijah_Hudson_Daniel_Marantz.wav\",\n                    \"filename\": \"CHALK014_001_Dawn Chorus.wav\",\n                    \"title\": \"Dawn Chorus\",\n                    \"displaytitle\": \"Dawn Chorus\",\n                    \"tracknumber\": \"001\",\n                    \"duration\": 162,\n                    \"bitrate\": 162,\n                    \"frequency\": 0,\n                    \"description\": \"Sprightly pizzicato string plucks are joined by joyful, delicate processed piano and light percussion, creating an air of hopeful, emotive beauty\"\n                },\n                \"rate\": {\n                    \"id\": \"2b9267ab6c349659\",\n                    \"style\": 2,\n                    \"code\": \"FLAT001\",\n                    \"description\": \"FLAT001\",\n                    \"duration\": 0,\n                    \"fee\": 5\n                }\n            },\n            {\n                \"amount\": 5,\n                \"description\": \"Track Purchase - Light Activity\",\n                \"quantity\": 1,\n                \"track\": {\n                    \"trackid\": \"8c36ab94a3bc6ea1\",\n                    \"albumid\": \"e6ee57b732ce88b2\",\n                    \"originalfilename\": \"CHALK_LIGHT_ACTIVITY_A_Paul_Timothy_Carr_Daniel_Marantz.wav\",\n                    \"filename\": \"CHALK014_005_Light Activity.wav\",\n                    \"title\": \"Light Activity\",\n                    \"displaytitle\": \"Light Activity\",\n                    \"tracknumber\": \"005\",\n                    \"duration\": 131,\n                    \"bitrate\": 131,\n                    \"frequency\": 0,\n                    \"description\": \"Animated pizzicato string plucks and cautious staccato string melodies join with light percussion to form a gently energetic cue\"\n                },\n                \"rate\": {\n                    \"id\": \"2b9267ab6c349659\",\n                    \"style\": 2,\n                    \"code\": \"FLAT001\",\n                    \"description\": \"FLAT001\",\n                    \"duration\": 0,\n                    \"fee\": 5\n                }\n            }\n        ],\n        \"invoicenumber\": 183,\n        \"status\": \"Processing\",\n        \"invoiceproduction\": {\n            \"client\": \"camila@harvestmedia.net\",\n            \"title\": \"CS-TEST-SUB\",\n            \"producer\": \"CS TEST SUB\",\n            \"productiondate\": \"2023-08-15T00:00:00\",\n            \"length\": \"TEST SUB Length\",\n            \"po\": \"Purchase Order Number SUB\"\n        },\n        \"currencycode\": \"AUD\"\n    }\n}"}],"_postman_id":"fefedc19-9926-4415-84e1-a604a8b35758"},{"name":"Update Invoice","id":"1fdff2fd-7919-4a17-925a-36f41aff39b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"id\": \"{{HM_ServiceAPI_InvoiceID}}\",\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-08-15T23:59:59\",\r\n        \"issuedate\": \"2023-08-15T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"amount\": 0,\r\n                \"amounttax\": 0,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\": [\r\n                    {\r\n                        \"referenceid\": \"7026280a00766607\",\r\n                        \"referencetype\": \"Subscription\"\r\n                    },\r\n                    {\r\n                        \"referenceid\": \"4d3ddcd6da8eed45\",\r\n                        \"referencetype\": \"SubscriptionDiscount\"\r\n                    }\r\n                ]\r\n            }\r\n        ],\r\n        \"BillingDetails\": {\r\n            \"FullName\": \"cs-test-card-update\",\r\n            \"CompanyName\": \"company-update\",\r\n            \"Address1\": \"addr 1 update\",\r\n            \"Address2\": \"addr 2 update\",\r\n            \"City\": \"city update\",\r\n            \"State\": \"state update\",\r\n            \"PostalCode\": \"postal update\",\r\n            \"Country\": \"AU\"\r\n        },\r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\": \"CS-TEST-SUB\",\r\n            \"productiondate\": \"2023-08-15T00:00:00\",\r\n            \"producer\": \"CS TEST SUB\",\r\n            \"length\": \"TEST SUB Length\",\r\n            \"po\": \"Purchase Order Number SUB\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updateinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p>Updates an invoice based on the associated invoice line items.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CurrencyCode</td>\n<td>Required, the currency for which payment will be taken in</td>\n</tr>\n<tr>\n<td>DueDate</td>\n<td>Required, the date the invoice is due. This should always be set to the current date</td>\n</tr>\n<tr>\n<td>IssueDate</td>\n<td>Optional, this date the invoice was generated. This should always be set to the current date</td>\n</tr>\n<tr>\n<td>DiscountID</td>\n<td>Optional, the ID of the applied discount. This should only be used when a discount applies to an entire invoice. *Not applicable for Subscriptions. See below reference line to get to know more.</td>\n</tr>\n<tr>\n<td>Discount</td>\n<td>Optional, the amount of the applied discount</td>\n</tr>\n<tr>\n<td>SubTotal</td>\n<td>Optional, the total amount of all line items (excluding any applicable tax or discount amounts). *Not applicable for subscriptions, the SubTotal will be filled based on the Invoice Line Item ReferenceID (SubscriptionPlanID) in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>TotalTax</td>\n<td>Optional, the total tax amount of all line items (including any applicable tax reductions based on discount amounts). *Not applicable for subscriptions, the TotalTax will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>Total</td>\n<td>Optional, the total amount of all line items (including any applicable tax or discount amounts). *Not applicable for subscriptions, the Total sum will be calculated in the background and returned on the response</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td>Optional, case sensitive, possible values are; \"CreditCard\", or \"Paypal\". This should only be set if payment is taken in advance of creating an invoice</td>\n</tr>\n<tr>\n<td>PaymentReferenceNumber</td>\n<td>Optional, this should only be set if payment is taken in advance of creating an invoice and should be the unique payment reference number returned from the payment gateway</td>\n</tr>\n<tr>\n<td>InvoiceLineItems</td>\n<td>Required, these are the items that make up in the invoice</td>\n</tr>\n<tr>\n<td>InvoiceProduction</td>\n<td>Required, this is the production that the invoice covers</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice Line Items</strong></p>\n<p>There should be one of these for every unique item on the invoice.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Quantity</td>\n<td>Required, the quantity of the line item</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>Optional, the amount of the line item (excluding any applicable tax or discount amounts). *Not applicable for subscriptions, the Line Item Amount will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>AmountTax</td>\n<td>Optional, the tax amount of the line item (including any applicable tax reductions based on discount amounts). *Not applicable for subscriptions, the item AmountTax will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>Required, the description of the line item. A good example to be used here would be the track display title</td>\n</tr>\n<tr>\n<td>DiscountID</td>\n<td>Optional, the ID of the applied discount. This should only be used when a discount applies to this specific line item.  <br /><strong>*For subscriptions,</strong>  <br />- 1. If a plan has an automatic voucher discount (no voucher code needed from the member) it will be automatically applied to the invoice total and returned on the response.  <br />- 2. Now, to apply discount using a voucher code previously validated, refer below to Invoice Line Items References.</td>\n</tr>\n<tr>\n<td>Discount</td>\n<td>Optional, the amount of the applied discount</td>\n</tr>\n<tr>\n<td>InvoiceItemReferences</td>\n<td>Required, hese are the items that make up the line item</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice Line Items - References</strong></p>\n<p>Each unique item on the invoice will have 2 of these; one of type \"Track\" and another of type \"Rate\".</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceType</td>\n<td>Required, possible values are; \"Track\", \"Rate\", \"Subscription\", or \"SubscriptionDiscount\".</td>\n</tr>\n<tr>\n<td>ReferenceID</td>\n<td>Required, the ID to be used here will depend on the value selected for the ReferenceType. So it will either be a TrackID, RateID, SubscriptionID or SubscriptionDiscountID (this last one will be returned via ValidateCoupon()).</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>Optional, the Value to be used here should depend on the value selected for the ReferenceType. For example, when \"Track\" then the value should be the track display title. When \"Rate\" then the value should be the code of that Rate</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Production</strong></p>\n<p>Optional. This is not an array and will only ever be a single production. This does not need to be provided and should only be used when a production is to be specified as part of the invoice creation. If a production is provided then there are specific fields (listed below) that need to be provided as part of the production object.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Client</td>\n<td>Required, this should be the email associated with against the invoice. If it is a guest purchase then it will be the guests email, otherwise it will be the members email</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>Required, the name of the production. This would typically be the name given to the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>ProductionDate</td>\n<td>Optional, the date of the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>Producer</td>\n<td>Optional, the producer associated with the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>Length</td>\n<td>Optional, the total length of the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>PO</td>\n<td>Optional, the purchase order number associated with the production as provided by the invoicee</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<p>On invoice creation success, the response will be the invoice that was created. This will contain the relevant InvoiceID that will be needed to mark the invoice as paid or to retrieve it.</p>\n","urlObject":{"path":["updateinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"d0b64ea8-f22e-4e62-849f-e458f87a645c","name":"Update Invoice (JSON)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"id\": \"4628e0fa73666edb\",\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-12-11T23:59:59\",\r\n        \"issuedate\": \"2023-12-11T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"amount\": 0,\r\n                \"amounttax\": 0,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[\r\n                {\r\n                    \"referenceid\":\"ba87dae384dfeddd\",\r\n                    \"referencetype\":\"Track\"\r\n                },\r\n                {\r\n                    \"referenceid\":\"2b9267ab6c349659\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"9894b0262715fdb8\",\r\n                    \"referencetype\":\"Track\"\r\n                },\r\n                {\r\n                    \"referenceid\":\"2b9267ab6c349659\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"8c36ab94a3bc6ea1\",\r\n                    \"referencetype\":\"Track\"\r\n                },\r\n                {\r\n                    \"referenceid\":\"2b9267ab6c349659\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            }\r\n        ],\r\n        \"BillingDetails\": {\r\n            \"FullName\": \"cs-test-card-update\",\r\n            \"CompanyName\": \"company-update\",\r\n            \"Address1\": \"addr 1 update\",\r\n            \"Address2\": \"addr 2 update\",\r\n            \"City\": \"city update\",\r\n            \"State\": \"state update\",\r\n            \"PostalCode\": \"postal update\",\r\n            \"Country\": \"AU\"\r\n        },\r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\": \"CS-TEST-SUB\",\r\n            \"productiondate\": \"2023-08-15T00:00:00\",\r\n            \"producer\": \"CS TEST SUB\",\r\n            \"length\": \"TEST SUB Length\",\r\n            \"po\": \"Purchase Order Number SUB\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updateinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Dec 2023 00:28:54 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"4628e0fa73666edb\",\n        \"memberaccountid\": \"92662dfe696a497f\",\n        \"issuedate\": \"2023-12-11T11:28:54.613\",\n        \"duedate\": \"2023-12-11T11:28:54.63\",\n        \"totaltax\": 0,\n        \"subtotal\": 15,\n        \"total\": 15,\n        \"invoicenumber\": 183,\n        \"status\": \"Pending\",\n        \"currencycode\": \"AUD\"\n    },\n    \"checkoutkeys\": {\n        \"StripeAPIKey\": \"pk_test_51MjXTGINFIsu1VM9coCRmwphHaoHWhsKVYzGOqNCwNg7EArDLkFlO9bMQIbB6leGxZ8kvrhfha6dTwy8NLxR0CIg00KKMvSCPT\",\n        \"ConnectedAccountID\": \"acct_1Nseu6IGENCfkRK2\",\n        \"AccountCurrency\": \"AUD\"\n    }\n}"},{"id":"f9c6308f-7d28-475c-8592-26e0b37befad","name":"Update Invoice (XML)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/xml"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"id\": \"4628e0fa73666edb\",\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-12-11T23:59:59\",\r\n        \"issuedate\": \"2023-12-11T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"amount\": 0,\r\n                \"amounttax\": 0,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[\r\n                {\r\n                    \"referenceid\":\"ba87dae384dfeddd\",\r\n                    \"referencetype\":\"Track\"\r\n                },\r\n                {\r\n                    \"referenceid\":\"2b9267ab6c349659\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"9894b0262715fdb8\",\r\n                    \"referencetype\":\"Track\"\r\n                },\r\n                {\r\n                    \"referenceid\":\"2b9267ab6c349659\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"8c36ab94a3bc6ea1\",\r\n                    \"referencetype\":\"Track\"\r\n                },\r\n                {\r\n                    \"referenceid\":\"2b9267ab6c349659\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            }\r\n        ],\r\n        \"BillingDetails\": {\r\n            \"FullName\": \"cs-test-card-update\",\r\n            \"CompanyName\": \"company-update\",\r\n            \"Address1\": \"addr 1 update\",\r\n            \"Address2\": \"addr 2 update\",\r\n            \"City\": \"city update\",\r\n            \"State\": \"state update\",\r\n            \"PostalCode\": \"postal update\",\r\n            \"Country\": \"AU\"\r\n        },\r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\": \"CS-TEST-SUB\",\r\n            \"productiondate\": \"2023-08-15T00:00:00\",\r\n            \"producer\": \"CS TEST SUB\",\r\n            \"length\": \"TEST SUB Length\",\r\n            \"po\": \"Purchase Order Number SUB\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updateinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Mon, 11 Dec 2023 01:00:32 GMT","enabled":true},{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<responseinvoice xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <invoice>\n        <id>4628e0fa73666edb</id>\n        <memberaccountid>92662dfe696a497f</memberaccountid>\n        <issuedate>2023-12-11T12:00:32.123</issuedate>\n        <duedate>2023-12-11T12:00:32.137</duedate>\n        <totaltax>0.0</totaltax>\n        <subtotal>15.00</subtotal>\n        <total>15.00</total>\n        <invoicenumber>183</invoicenumber>\n        <status>Pending</status>\n        <currencycode>AUD</currencycode>\n    </invoice>\n    <checkoutkeys>\n        <stripeapikey>pk_test_51MjXTGINFIsu1VM9coCRmwphHaoHWhsKVYzGOqNCwNg7EArDLkFlO9bMQIbB6leGxZ8kvrhfha6dTwy8NLxR0CIg00KKMvSCPT</stripeapikey>\n        <connectedaccountid>acct_1Nseu6IGENCfkRK2</connectedaccountid>\n        <accountcurrency>AUD</accountcurrency>\n    </checkoutkeys>\n</responseinvoice>"}],"_postman_id":"1fdff2fd-7919-4a17-925a-36f41aff39b4"}],"id":"3a730413-249e-44d4-9fc0-2b6e8b294f5e","description":"<p>When the user has already started a shopping cart and still want to add more items, then you need to updateinvoice() sending through all of the previous reference line items plus the new ones added.</p>\n","_postman_id":"3a730413-249e-44d4-9fc0-2b6e8b294f5e"},{"name":"Checkout Confirmation Page","item":[{"name":"Pay Invoice","event":[{"listen":"test","script":{"id":"daa1a982-c9f6-47a9-a621-51b142d6ae5f","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Search Invoice\");"],"type":"text/javascript"}}],"id":"fff790c1-4619-4941-9a89-6391a10be72e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoicepayment\": {\r\n        \"invoiceid\": \"HM4628e0fa73666edb\",\r\n        \"amount\": 15.00,\r\n        \"contactname\": \"camila@harvestmedia.net\",\r\n        \"date\": \"2023-12-11T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"paymentreferencenumber\": \"\",\r\n        \"paymentstatus\": \"Processing\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/payinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p>Pays a pending state invoice.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Payment</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvoiceID</td>\n<td>Required, the unique ID of the invoice that is moving to a paid status</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>Required, the amount of the associated invoice that was paid</td>\n</tr>\n<tr>\n<td>ContactName</td>\n<td>Required, the name to be associated against the payment</td>\n</tr>\n<tr>\n<td>Date</td>\n<td>Required, the date payment was made</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td>Required, possible values are; \"CreditCard\", or \"PayPal\"</td>\n</tr>\n<tr>\n<td>PaymentReferenceNumber</td>\n<td>Required, possible values are; \"CreditCard\", or \"PayPal\"</td>\n</tr>\n<tr>\n<td>PaymentStatus</td>\n<td>Required, the unique payment reference number returned from the payment gateway</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Misc</strong></p>\n<p>There should be one of these for every unique item on the invoice.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SendEmail</td>\n<td>Optional, default value is false. If true an email will be sent with an associated PDF invoice attached to it</td>\n</tr>\n<tr>\n<td>BCCEmail</td>\n<td>Optional, email address to be BCC'd. This is not a comma-separated list of email addresses, but rather a single email address</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<p>On invoice creation success, the response will be the invoice that was paid. This will contain the relevant InvoiceID that will be needed to mark the invoice as paid or to retrieve it.</p>\n","urlObject":{"path":["payinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"1758028d-64de-4ebc-ac24-1bcccc3c0887","name":"Pay Invoice (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoicepayment\": {\r\n        \"invoiceid\": \"4628e0fa73666edb\",\r\n        \"amount\": 15.00,\r\n        \"contactname\": \"camila@harvestmedia.net\",\r\n        \"date\": \"2023-12-11T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"paymentreferencenumber\": \"\",\r\n        \"paymentstatus\": \"Processing\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/payinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Dec 2023 01:10:20 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"4628e0fa73666edb\",\n        \"memberaccountid\": \"92662dfe696a497f\",\n        \"issuedate\": \"2023-12-11T12:00:32.123\",\n        \"duedate\": \"2023-12-11T12:00:32.137\",\n        \"totaltax\": 0,\n        \"subtotal\": 15,\n        \"total\": 15,\n        \"invoicenumber\": 183,\n        \"status\": \"Processing\",\n        \"currencycode\": \"AUD\"\n    },\n    \"checkoutdetail\": {\n        \"clientsecret\": \"pi_3OLy0lIGENCfkRK204bsv1Hf_secret_v5erMRdpDoMKjrK2H0Jzs82QE\",\n        \"checkoutconfirmtype\": \"Payment\"\n    }\n}"}],"_postman_id":"fff790c1-4619-4941-9a89-6391a10be72e"}],"id":"baecb519-355c-44aa-a2c5-e54b8f4d0c35","_postman_id":"baecb519-355c-44aa-a2c5-e54b8f4d0c35","description":""},{"name":"Member Profile Page","item":[{"name":"Member Whitelisting Page Copy","item":[{"name":"Update Member Details","event":[{"listen":"test","script":{"id":"db08cb3a-d0e9-471c-9df7-fe14c569fb7d","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Update Member Details (MT)\");"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"ab8a07bc-ff4a-4233-b418-2859e84cde11","exec":["var newUsername = postman.getEnvironmentVariable(\"HM_ServiceAPI_Token\") + \"-user-u\";","","postman.setEnvironmentVariable(\"HM_ServiceAPI_NewMemberUsername\", newUsername);"],"type":"text/javascript"}}],"id":"8db76eb0-f728-4418-8ad6-3bde94c5a4cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"MemberAccount\":{\r\n\t\t\"ID\":\"{{HM_ServiceAPI_MemberAccountID}}\",\r\n\t\t\"FirstName\":\"First\",\r\n\t\t\"LastName\":\"Last\",\r\n\t\t\"Email\":\"camila@harvestmedia.net\",\r\n\t\t\"Company\":\"Company\",\r\n\t\t\"Production\":\"Production\",\r\n        \"SubProduction\":\"Sub Production\",\r\n\t\t\"Position\":\"Position\",\r\n\t\t\"Address1\":\"Address Line 1\",\r\n\t\t\"Address2\":\"Address Line 2\",\r\n\t\t\"Suburb\":\"Suburb\",\r\n\t\t\"State\":\"State\",\r\n\t\t\"Postcode\":\"Postcode\",\r\n\t\t\"Country\":\"AU\",\r\n\t\t\"Phone\":\"Phone\",\r\n\t\t\"UserName\":\"{{HM_ServiceAPI_MemberUsername}}\",\r\n\t    \"Password\":\"{{HM_ServiceAPI_MemberPassword}}\",\r\n\t\t\"TermsAccept\":\"true\",\r\n\t\t\"PrivacyAccept\":\"true\",\r\n\t\t\"Subscribe\":\"true\",\r\n\t\t\"FileFormat\":\"mp3\",\r\n\t\t\"SearchFormat\":\"Track\",\r\n\t\t\"SearchSort\":\"New\"\r\n\t},\r\n        \"Channels\": [\r\n            {\r\n                \"platform\": \"youtube\",\r\n                \"value\": \"youtube.com/cs-youtube-changed\"\r\n            },\r\n            {\r\n                \"platform\": \"facebook\",\r\n                \"value\": \"facebook.com/cs-test-new-facebook-changed\"\r\n            }\r\n        ]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/updatemember/{{HM_ServiceAPI_MemberToken}}","description":"<p>Updates an existing member account.</p>\n<p>Will return an error if the request data is not valid.</p>\n<p>Upon a successful update, no email notifications will be sent to the Member or Administrator.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ServiceToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<p>These parameters will be shared between “first search” and “search within results”.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FirstName</td>\n<td>Required, first name of the member.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>Required, last name of the member.</td>\n</tr>\n<tr>\n<td>Email</td>\n<td>Required, email of the member.</td>\n</tr>\n<tr>\n<td>Company</td>\n<td>Required, company of the member.</td>\n</tr>\n<tr>\n<td>Production</td>\n<td>Optional, production of the member.</td>\n</tr>\n<tr>\n<td>SubProduction</td>\n<td>Optional, sub production of the member.</td>\n</tr>\n<tr>\n<td>Position</td>\n<td>Optional, position of the member.</td>\n</tr>\n<tr>\n<td>Address1</td>\n<td>Optional, address 1 of the member</td>\n</tr>\n<tr>\n<td>Address2</td>\n<td>Optional, address 2 of the member.</td>\n</tr>\n<tr>\n<td>Suburb</td>\n<td>Optional, suburb of the member.</td>\n</tr>\n<tr>\n<td>State</td>\n<td>Optional, state of the member.</td>\n</tr>\n<tr>\n<td>Postcode</td>\n<td>Optional, post code of the member.</td>\n</tr>\n<tr>\n<td>Country</td>\n<td>Required, country of the member.</td>\n</tr>\n<tr>\n<td>Phone</td>\n<td>Optional, phone contact of the member.</td>\n</tr>\n<tr>\n<td>Username</td>\n<td>Required, username of the member.</td>\n</tr>\n<tr>\n<td>Password</td>\n<td>Optional, password of the member. If not provided, a random password will be assigned</td>\n</tr>\n<tr>\n<td>TermsAccept</td>\n<td>Required, agreement to the terms &amp; conditions for the member.</td>\n</tr>\n<tr>\n<td>PrivacyAccept</td>\n<td>Optional, agreement to the privacy policy for the member.</td>\n</tr>\n<tr>\n<td>Subscribe</td>\n<td>Optional, subscription to newsletters for the member.</td>\n</tr>\n<tr>\n<td>FileFormat</td>\n<td>Optional, default download file format. Possible values include MP3, WAV, AIFF or a file format ID</td>\n</tr>\n<tr>\n<td>SearchFormat</td>\n<td>Optional, default search format. Possible values include Track, Album and Playlist</td>\n</tr>\n<tr>\n<td>SearchSort</td>\n<td>Optional, default search sorting. Possible values include New and Random, where New is release date descending</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Member Channels</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Platform</td>\n<td>Required, the Platform of the channel. Accepted values: \"Facebook\", \"Instagram\", \"TikTok\", \"Youtube\", \"Twitter\", \"Twitch\", \"Others\".</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>The URL of the social media</td>\n</tr>\n<tr>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["updatemember","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"127b1f69-1f3e-4ef4-ab9a-53d0c41d81ae","name":"Update Member Details","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"MemberAccount\":{\r\n\t\t\"ID\":\"{{HM_ServiceAPI_MemberAccountID}}\",\r\n\t\t\"FirstName\":\"First\",\r\n\t\t\"LastName\":\"Last\",\r\n\t\t\"Email\":\"camila@harvestmedia.net\",\r\n\t\t\"Company\":\"Company\",\r\n\t\t\"Production\":\"Production\",\r\n        \"SubProduction\":\"Sub Production\",\r\n\t\t\"Position\":\"Position\",\r\n\t\t\"Address1\":\"Address Line 1\",\r\n\t\t\"Address2\":\"Address Line 2\",\r\n\t\t\"Suburb\":\"Suburb\",\r\n\t\t\"State\":\"State\",\r\n\t\t\"Postcode\":\"Postcode\",\r\n\t\t\"Country\":\"AU\",\r\n\t\t\"Phone\":\"Phone\",\r\n\t\t\"UserName\":\"{{HM_ServiceAPI_MemberUsername}}\",\r\n\t    \"Password\":\"{{HM_ServiceAPI_MemberPassword}}\",\r\n\t\t\"TermsAccept\":\"true\",\r\n\t\t\"PrivacyAccept\":\"true\",\r\n\t\t\"Subscribe\":\"true\",\r\n\t\t\"FileFormat\":\"mp3\",\r\n\t\t\"SearchFormat\":\"Track\",\r\n\t\t\"SearchSort\":\"New\"\r\n\t},\r\n        \"Channels\": [\r\n            {\r\n                \"platform\": \"youtube\",\r\n                \"value\": \"youtube.com/cs-youtube-changed\"\r\n            },\r\n            {\r\n                \"platform\": \"facebook\",\r\n                \"value\": \"facebook.com/cs-test-new-facebook-changed\"\r\n            }\r\n        ]\r\n}"},"url":"{{HM_ServiceAPI_URL}}/updatemember/{{HM_IntegrationAPI_Token}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 06 Sep 2023 07:29:06 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Set-Cookie","value":"AWSALBTG=eHJ12Gnmk7cnEUrqcKclmDf5RhcaYRynO+tpV0D0Q4+emYeH/wxj1i9djpencdCfLJGT/m9uBSl0kMswbuFsWX1QGYB5rL4iUHAGLMT5l1cpm5m/nLgNQA7QQEaiNfpsM+sbYZi+X/DOLorqsr6Kt0jjCGvhOrjH7hSYsJnNMLR/YQEsR70=; Expires=Wed, 13 Sep 2023 07:29:06 GMT; Path=/","enabled":true},{"key":"Set-Cookie","value":"AWSALBTGCORS=eHJ12Gnmk7cnEUrqcKclmDf5RhcaYRynO+tpV0D0Q4+emYeH/wxj1i9djpencdCfLJGT/m9uBSl0kMswbuFsWX1QGYB5rL4iUHAGLMT5l1cpm5m/nLgNQA7QQEaiNfpsM+sbYZi+X/DOLorqsr6Kt0jjCGvhOrjH7hSYsJnNMLR/YQEsR70=; Expires=Wed, 13 Sep 2023 07:29:06 GMT; Path=/; SameSite=None; Secure","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"MemberAccount\": {\n        \"ID\": \"9a007f669be92e14\",\n        \"FirstName\": \"First\",\n        \"LastName\": \"Last\",\n        \"Email\": \"camila@harvestmedia.net\",\n        \"Company\": \"Company\",\n        \"Production\": \"Production\",\n        \"SubProduction\": \"Sub Production\",\n        \"Position\": \"Position\",\n        \"Address1\": \"Address Line 1\",\n        \"Address2\": \"Address Line 2\",\n        \"Suburb\": \"Suburb\",\n        \"State\": \"State\",\n        \"Postcode\": \"Postcode\",\n        \"Country\": \"AU\",\n        \"Phone\": \"Phone\",\n        \"Username\": \"camila@harvestmedia.net\",\n        \"TermsAccept\": \"true\",\n        \"Subscribe\": \"true\",\n        \"FileFormat\": \"19b8f5935503adde\",\n        \"SearchFormat\": \"track\",\n        \"SearchSort\": \"fav\",\n        \"SampleEnabled\": \"true\",\n        \"Status\": \"active\",\n        \"RegionID\": \"e616f53a01ddd9e3\",\n        \"ServiceInfoURLs\": {\n            \"DirectDownloadURL\": \"https://cf.harvestmedia.net/assets/downloads/{downloadtoken}\",\n            \"TrackStreamURL\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/samples/ac6373252926edf5e433024cb2571902fc6a8dda/{id}\",\n            \"ProfileImageURL\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/memberprofile/ac6373252926edf5e433024cb2571902fc6a8dda/{id}/{width}/{height}\",\n            \"AlbumMontageSampleURL\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/samples/montage/ac6373252926edf5e433024cb2571902fc6a8dda/{id}\",\n            \"AlbumArtURL\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/albumart/21765449be9e4e8c3ea8fe97997f7e5d9e8c8ec9/{id}/{width}/{height}\",\n            \"WaveformURL\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/waveforms/21765449be9e4e8c3ea8fe97997f7e5d9e8c8ec9/{id}/{width}/{height}\",\n            \"MontageWaveformURL\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/waveforms/montage/21765449be9e4e8c3ea8fe97997f7e5d9e8c8ec9/{id}/{width}/{height}\",\n            \"LibraryLogoUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/librarylogo/21765449be9e4e8c3ea8fe97997f7e5d9e8c8ec9/{id}/{width}/{height}\",\n            \"PlaylistArtUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/playlistart/21765449be9e4e8c3ea8fe97997f7e5d9e8c8ec9/{id}/{width}/{height}\",\n            \"PlaylistCategoryArtUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/playlistcategoryart/21765449be9e4e8c3ea8fe97997f7e5d9e8c8ec9/{id}/{width}/{height}\",\n            \"RightHolderProfileUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/rightholderprofile/21765449be9e4e8c3ea8fe97997f7e5d9e8c8ec9/{id}/{width}/{height}\",\n            \"WaveformDataPointUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/waveform_data/ac6373252926edf5e433024cb2571902fc6a8dda/{id}/{dataformat}\",\n            \"StyleArtUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/styleart/21765449be9e4e8c3ea8fe97997f7e5d9e8c8ec9/{id}/{width}/{height}\",\n            \"MemberGroupLogoUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/membergrouplogo/ac6373252926edf5e433024cb2571902fc6a8dda/{id}/{width}/{height}\",\n            \"MemberGroupArtUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/membergroupart/ac6373252926edf5e433024cb2571902fc6a8dda/{id}/{width}/{height}\",\n            \"MemberGroupProductionArtUrl\": \"https://d2zsljmk3mm9kv.cloudfront.net/assets/membergroupproductionart/ac6373252926edf5e433024cb2571902fc6a8dda/{id}/{width}/{height}\"\n        },\n        \"LanguageCode\": \"EN\",\n        \"Salutation\": \"\",\n        \"MemberTypeID\": \"\",\n        \"FileFormats\": [],\n        \"HasProfileImage\": false,\n        \"PrivacyAccept\": \"true\",\n        \"DownloadEnabled\": \"true\",\n        \"DownloadsRemaining\": \"NULL\",\n        \"DownloadEnabledType\": \"Member\",\n        \"DownloadLimit\": \"NULL\",\n        \"DownloadsUsed\": \"NULL\",\n        \"DownloadStem\": false\n    },\n    \"MemberChannels\": [\n        {\n            \"Platform\": \"Youtube\",\n            \"Value\": \"youtube.com/cs-youtube-changed\"\n        },\n        {\n            \"Platform\": \"Facebook\",\n            \"Value\": \"facebook.com/cs-test-new-facebook-changed\"\n        }\n    ]\n}"}],"_postman_id":"8db76eb0-f728-4418-8ad6-3bde94c5a4cf"}],"id":"fea0ab3c-5725-4072-be51-64168d5d054c","_postman_id":"fea0ab3c-5725-4072-be51-64168d5d054c","description":""},{"name":"Get Member Details","event":[{"listen":"test","script":{"id":"2efe7b8a-4c54-4a50-b233-8f408918664b","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"46c670a8-10c7-4908-8f76-487428fb53a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getmember/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["getmember","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"46c670a8-10c7-4908-8f76-487428fb53a5"},{"name":"Request Password Change","event":[{"listen":"test","script":{"id":"23208e14-709a-4caa-8cfc-31b0cbc43ed3","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript"}}],"id":"089b0981-38f0-4638-908f-15102f25c8ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"Username\": \"\",\r\n\t\"Email\": \"test@test.com\",\r\n\t\"LanguageCode\":  \"EN\",\r\n\t\"ResetLink\":\"https://yourdomain.com/reset?token={token}\",\r\n\t\"TokenMergeString\": \"{token}\",\r\n\t\"UseShortUrl\": false,\r\n\t\"ResetTokenExpiryHours\": 2\r\n}"},"url":"{{HM_ServiceAPI_URL}}/sendpasswordresetlinkemail/{{HM_ServiceAPI_Token}}","urlObject":{"path":["sendpasswordresetlinkemail","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"089b0981-38f0-4638-908f-15102f25c8ac"}],"id":"d6c47cb8-afe7-4d15-bb7a-37c27acbe8ff","_postman_id":"d6c47cb8-afe7-4d15-bb7a-37c27acbe8ff","description":""},{"name":"My Music","item":[{"name":"Search Invoice","event":[{"listen":"test","script":{"id":"b5ca7520-4b18-41d1-a7a4-0e9758017751","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Get Invoice Document\");"],"type":"text/javascript","packages":{}}}],"id":"503d98f4-69cd-4b25-984d-221841e3e9e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"fromamount\":0,\r\n\t\"fromdate\":\"2020-01-08T22:19:27.95\",\r\n\t\"toamount\":1000,\r\n\t\"todate\":\"2026-05-16T22:19:27.95\",\r\n\t\"limit\":10,\r\n\t\"skip\":0,\r\n    \"ReturnInvoiceItems\": \"true\",\r\n    \"ReferenceLineItemType\": \"\",\r\n    \"Status\": \"Paid\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/searchinvoices/{{HM_ServiceAPI_MemberToken}}","description":"<p>Search invoices by amounts and dates.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FromAmount</td>\n<td>Optional, default value is 0. The lower invoice amount for which to filter by</td>\n</tr>\n<tr>\n<td>FromDate</td>\n<td>Optional, the lower due date for which to filter by</td>\n</tr>\n<tr>\n<td>ToAmount</td>\n<td>Optional, the upper invoice amount for which to filter by</td>\n</tr>\n<tr>\n<td>ToDate</td>\n<td>Optional, the upper due date for which to filter by</td>\n</tr>\n<tr>\n<td>Skip</td>\n<td>Optional, the number of results to skip</td>\n</tr>\n<tr>\n<td>Limit</td>\n<td>Required, the number of results to return</td>\n</tr>\n<tr>\n<td>ReferenceLineItemType</td>\n<td>Optional, the type of reference line item to be filtered; possible values are: Album, Track or Subscription. *In the case of invoices containing reference line items mixed with Tracks and Albums, then searching by either Track or Album will return them.</td>\n</tr>\n<tr>\n<td>Status</td>\n<td>Optional, the invoice status to return; possible values are: Pending, Void, Paid, Draft, Processing or Deleted</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["searchinvoices","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"cc28b61c-50fe-424f-a8e1-67ef7c1ca3eb","name":"Search Invoice","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"fromamount\":0,\r\n\t\"fromdate\":\"2020-01-08T22:19:27.95\",\r\n\t\"toamount\":1000,\r\n\t\"todate\":\"2025-01-12T22:19:27.95\",\r\n\t\"limit\":2,\r\n\t\"skip\":1,\r\n    \"ReturnInvoiceItems\": \"true\",\r\n    \"ReferenceLineItemType\": \"Track\",\r\n    \"Status\": \"Paid\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/searchinvoices/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 04 Mar 2024 06:06:14 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoices\": [\n        {\n            \"id\": \"fe2657bd58706174\",\n            \"memberaccountid\": \"c8c0e81091a77f09\",\n            \"issuedate\": \"2024-03-04T15:12:12.967\",\n            \"duedate\": \"2024-03-04T15:12:13.133\",\n            \"UTCOffset\": 11,\n            \"totaltax\": 0.1,\n            \"subtotal\": 1,\n            \"total\": 1.1,\n            \"invoicelineitems\": [\n                {\n                    \"amount\": 1,\n                    \"description\": \"Album Purchase - Firearms\",\n                    \"quantity\": 1,\n                    \"amounttax\": 0.1,\n                    \"rate\": {\n                        \"id\": \"cc683a508e588e2f\",\n                        \"style\": 2,\n                        \"code\": \"TST\",\n                        \"description\": \"TST\",\n                        \"duration\": 0,\n                        \"fee\": 1\n                    },\n                    \"album\": {\n                        \"albumid\": \"c9614bd63c4e957a\",\n                        \"title\": \"Firearms\",\n                        \"displaytitle\": \"Firearms\",\n                        \"albumcode\": \"\",\n                        \"cdtitle\": \"Firearms\",\n                        \"description\": \"Guns from the battle field at various perspectives and distances, including handling and trigger sounds.\"\n                    }\n                }\n            ],\n            \"invoicenumber\": 477,\n            \"paidamount\": 0,\n            \"status\": \"Paid\",\n            \"membername\": \"Company - Camila Silva (camila@harvestmedia.net)\",\n            \"currencycode\": \"AUD\",\n            \"billingdetails\": {\n                \"FullName\": \"\",\n                \"CompanyName\": \"\",\n                \"Address1\": \"\",\n                \"Address2\": \"\",\n                \"City\": \"\",\n                \"State\": \"\",\n                \"PostalCode\": \"\",\n                \"Country\": \"\"\n            }\n        },\n        {\n            \"id\": \"21cb9c1f926d9658\",\n            \"memberaccountid\": \"c8c0e81091a77f09\",\n            \"issuedate\": \"2024-02-27T19:30:56.777\",\n            \"duedate\": \"2024-02-27T19:30:56.87\",\n            \"UTCOffset\": 11,\n            \"totaltax\": 0.1,\n            \"subtotal\": 1,\n            \"total\": 1.1,\n            \"invoicelineitems\": [\n                {\n                    \"amount\": 1,\n                    \"description\": \"Track Purchase - PP-19 Close & Distant 01\",\n                    \"quantity\": 1,\n                    \"amounttax\": 0.1,\n                    \"track\": {\n                        \"trackid\": \"d84fab3f77ab261ea11b06aafae9b741\",\n                        \"albumid\": \"c9614bd63c4e957a\",\n                        \"originalfilename\": \"GUNAuto_EPICGUNS_PP-19_Close & Distant 01_AMPLAR.wav\",\n                        \"filename\": \"FA1_001_GUNAuto_EPICGUNS_PP-19_Close & Distant 01_AMPLAR.wav.wav\",\n                        \"title\": \"GUNAuto_EPICGUNS_PP-19_Close & Distant 01_AMPLAR.wav\",\n                        \"displaytitle\": \"PP-19 Close & Distant 01\",\n                        \"tracknumber\": \"001\",\n                        \"duration\": 14,\n                        \"bitrate\": 14,\n                        \"frequency\": 0,\n                        \"description\": \"PP-19 Close & Distant 01\"\n                    },\n                    \"rate\": {\n                        \"id\": \"50c7165591e2efc7\",\n                        \"style\": 2,\n                        \"code\": \"TRK001\",\n                        \"description\": \"TRK001\",\n                        \"duration\": 0,\n                        \"fee\": 1\n                    }\n                }\n            ],\n            \"invoicenumber\": 435,\n            \"paidamount\": 0,\n            \"status\": \"Paid\",\n            \"membername\": \"Company - Camila Silva (camila@harvestmedia.net)\",\n            \"currencycode\": \"AUD\",\n            \"billingdetails\": {\n                \"FullName\": \"\",\n                \"CompanyName\": \"\",\n                \"Address1\": \"\",\n                \"Address2\": \"\",\n                \"City\": \"\",\n                \"State\": \"\",\n                \"PostalCode\": \"\",\n                \"Country\": \"\"\n            }\n        }\n    ],\n    \"InvoicesTotal\": [\n        {\n            \"InvoiceReferenceType\": \"Track\",\n            \"Total\": 1,\n            \"InvoicesTotalStatus\": [\n                {\n                    \"status\": \"Paid\",\n                    \"total\": 1\n                }\n            ]\n        },\n        {\n            \"InvoiceReferenceType\": \"Album\",\n            \"Total\": 1,\n            \"InvoicesTotalStatus\": [\n                {\n                    \"status\": \"Paid\",\n                    \"total\": 1\n                }\n            ]\n        },\n        {\n            \"InvoiceReferenceType\": \"Subscription\",\n            \"Total\": 0\n        }\n    ]\n}"},{"id":"29ae92b9-9937-47f9-a35a-3f38a11f1124","name":"Search Invoice","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"fromamount\":0,\r\n\t\"fromdate\":\"2020-01-08T22:19:27.95\",\r\n\t\"toamount\":1000,\r\n\t\"todate\":\"2024-03-12T22:19:27.95\",\r\n\t\"limit\":10,\r\n\t\"skip\":0,\r\n    \"ReturnInvoiceItems\": \"true\",\r\n    \"ReferenceLineItemType\": \"Track\",\r\n    \"Status\": \"Paid\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/searchinvoices/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 04 Mar 2024 10:09:09 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoices\": [\n        {\n            \"id\": \"21cb9c1f926d9658\",\n            \"memberaccountid\": \"c8c0e81091a77f09\",\n            \"issuedate\": \"2024-02-27T19:30:56.777\",\n            \"duedate\": \"2024-02-27T19:30:56.87\",\n            \"UTCOffset\": 11,\n            \"totaltax\": 0.1,\n            \"subtotal\": 1,\n            \"total\": 1.1,\n            \"invoicelineitems\": [\n                {\n                    \"amount\": 1,\n                    \"description\": \"Track Purchase - PP-19 Close & Distant 01\",\n                    \"quantity\": 1,\n                    \"amounttax\": 0.1,\n                    \"track\": {\n                        \"trackid\": \"d84fab3f77ab261ea11b06aafae9b741\",\n                        \"albumid\": \"c9614bd63c4e957a\",\n                        \"originalfilename\": \"GUNAuto_EPICGUNS_PP-19_Close & Distant 01_AMPLAR.wav\",\n                        \"filename\": \"FA1_001_GUNAuto_EPICGUNS_PP-19_Close & Distant 01_AMPLAR.wav.wav\",\n                        \"title\": \"GUNAuto_EPICGUNS_PP-19_Close & Distant 01_AMPLAR.wav\",\n                        \"displaytitle\": \"PP-19 Close & Distant 01\",\n                        \"tracknumber\": \"001\",\n                        \"duration\": 14,\n                        \"bitrate\": 14,\n                        \"frequency\": 0,\n                        \"description\": \"PP-19 Close & Distant 01\"\n                    },\n                    \"rate\": {\n                        \"id\": \"50c7165591e2efc7\",\n                        \"style\": 2,\n                        \"code\": \"TRK001\",\n                        \"description\": \"TRK001\",\n                        \"duration\": 0,\n                        \"fee\": 1\n                    }\n                }\n            ],\n            \"invoicenumber\": 435,\n            \"paidamount\": 0,\n            \"status\": \"Paid\",\n            \"membername\": \"Company - Camila Silva (camila@harvestmedia.net)\",\n            \"currencycode\": \"AUD\",\n            \"billingdetails\": {\n                \"FullName\": \"\",\n                \"CompanyName\": \"\",\n                \"Address1\": \"\",\n                \"Address2\": \"\",\n                \"City\": \"\",\n                \"State\": \"\",\n                \"PostalCode\": \"\",\n                \"Country\": \"\"\n            }\n        },\n        {\n            \"id\": \"b6095d07d2b4844c\",\n            \"memberaccountid\": \"c8c0e81091a77f09\",\n            \"issuedate\": \"2024-02-27T18:51:19.923\",\n            \"duedate\": \"2024-02-27T18:51:19.993\",\n            \"UTCOffset\": 11,\n            \"totaltax\": 0.1,\n            \"subtotal\": 1,\n            \"total\": 1.1,\n            \"invoicelineitems\": [\n                {\n                    \"amount\": 1,\n                    \"description\": \"Track Purchase - PP-19 Close & Distant 01\",\n                    \"quantity\": 1,\n                    \"amounttax\": 0.1,\n                    \"track\": {\n                        \"trackid\": \"d84fab3f77ab261ea11b06aafae9b741\",\n                        \"albumid\": \"c9614bd63c4e957a\",\n                        \"originalfilename\": \"GUNAuto_EPICGUNS_PP-19_Close & Distant 01_AMPLAR.wav\",\n                        \"filename\": \"FA1_001_GUNAuto_EPICGUNS_PP-19_Close & Distant 01_AMPLAR.wav.wav\",\n                        \"title\": \"GUNAuto_EPICGUNS_PP-19_Close & Distant 01_AMPLAR.wav\",\n                        \"displaytitle\": \"PP-19 Close & Distant 01\",\n                        \"tracknumber\": \"001\",\n                        \"duration\": 14,\n                        \"bitrate\": 14,\n                        \"frequency\": 0,\n                        \"description\": \"PP-19 Close & Distant 01\"\n                    },\n                    \"rate\": {\n                        \"id\": \"50c7165591e2efc7\",\n                        \"style\": 2,\n                        \"code\": \"TRK001\",\n                        \"description\": \"TRK001\",\n                        \"duration\": 0,\n                        \"fee\": 1\n                    }\n                }\n            ],\n            \"invoicenumber\": 434,\n            \"paidamount\": 0,\n            \"status\": \"Paid\",\n            \"membername\": \"Company - Camila Silva (camila@harvestmedia.net)\",\n            \"currencycode\": \"AUD\",\n            \"billingdetails\": {\n                \"FullName\": \"\",\n                \"CompanyName\": \"\",\n                \"Address1\": \"\",\n                \"Address2\": \"\",\n                \"City\": \"\",\n                \"State\": \"\",\n                \"PostalCode\": \"\",\n                \"Country\": \"\"\n            }\n        },\n        {\n            \"id\": \"d3e7c4110f13418a\",\n            \"memberaccountid\": \"c8c0e81091a77f09\",\n            \"issuedate\": \"2024-02-27T18:32:35.62\",\n            \"duedate\": \"2024-02-27T18:32:35.773\",\n            \"UTCOffset\": 11,\n            \"totaltax\": 0.1,\n            \"subtotal\": 1,\n            \"total\": 1.1,\n            \"invoicelineitems\": [\n                {\n                    \"amount\": 1,\n                    \"description\": \"Track Purchase - PP-19 Close & Distant 01\",\n                    \"quantity\": 1,\n                    \"amounttax\": 0.1,\n                    \"track\": {\n                        \"trackid\": \"d84fab3f77ab261ea11b06aafae9b741\",\n                        \"albumid\": \"c9614bd63c4e957a\",\n                        \"originalfilename\": \"GUNAuto_EPICGUNS_PP-19_Close & Distant 01_AMPLAR.wav\",\n                        \"filename\": \"FA1_001_GUNAuto_EPICGUNS_PP-19_Close & Distant 01_AMPLAR.wav.wav\",\n                        \"title\": \"GUNAuto_EPICGUNS_PP-19_Close & Distant 01_AMPLAR.wav\",\n                        \"displaytitle\": \"PP-19 Close & Distant 01\",\n                        \"tracknumber\": \"001\",\n                        \"duration\": 14,\n                        \"bitrate\": 14,\n                        \"frequency\": 0,\n                        \"description\": \"PP-19 Close & Distant 01\"\n                    },\n                    \"rate\": {\n                        \"id\": \"50c7165591e2efc7\",\n                        \"style\": 2,\n                        \"code\": \"TRK001\",\n                        \"description\": \"TRK001\",\n                        \"duration\": 0,\n                        \"fee\": 1\n                    }\n                }\n            ],\n            \"invoicenumber\": 433,\n            \"paidamount\": 0,\n            \"status\": \"Paid\",\n            \"membername\": \"Company - Camila Silva (camila@harvestmedia.net)\",\n            \"currencycode\": \"AUD\",\n            \"billingdetails\": {\n                \"FullName\": \"\",\n                \"CompanyName\": \"\",\n                \"Address1\": \"\",\n                \"Address2\": \"\",\n                \"City\": \"\",\n                \"State\": \"\",\n                \"PostalCode\": \"\",\n                \"Country\": \"\"\n            }\n        },\n        {\n            \"id\": \"1117b3ae87c43601\",\n            \"memberaccountid\": \"c8c0e81091a77f09\",\n            \"issuedate\": \"2024-02-01T20:12:24.297\",\n            \"duedate\": \"2024-02-01T20:12:24.307\",\n            \"UTCOffset\": 11,\n            \"totaltax\": 0,\n            \"subtotal\": 1,\n            \"total\": 1,\n            \"invoicelineitems\": [\n                {\n                    \"amount\": 1,\n                    \"description\": \"Track Purchase - Telemetry Alert Accept Riser Stereo Communications\",\n                    \"quantity\": 1,\n                    \"track\": {\n                        \"trackid\": \"23bd9bc58e66b9f5c755c3313943a2d2\",\n                        \"albumid\": \"895034c175b0423c\",\n                        \"originalfilename\": \"COMTelm_Telemetry_Alert_Accept_Riser_Stereo_Communications_AMPLAR.wav\",\n                        \"filename\": \"TLT1_001_COMTelm_Telemetry_Alert_Accept_Riser_Stereo_Communications_AMPLAR.wav.wav\",\n                        \"title\": \"COMTelm_Telemetry_Alert_Accept_Riser_Stereo_Communications_AMPLAR.wav\",\n                        \"displaytitle\": \"Telemetry Alert Accept Riser Stereo Communications\",\n                        \"tracknumber\": \"001\",\n                        \"duration\": 1,\n                        \"bitrate\": 1,\n                        \"frequency\": 0,\n                        \"description\": \"Telemetry Alert Accept Riser Stereo Communications\"\n                    },\n                    \"rate\": {\n                        \"id\": \"50c7165591e2efc7\",\n                        \"style\": 2,\n                        \"code\": \"TRK001\",\n                        \"description\": \"TRK001\",\n                        \"duration\": 0,\n                        \"fee\": 1\n                    }\n                }\n            ],\n            \"invoicenumber\": 362,\n            \"paidamount\": 0,\n            \"status\": \"Paid\",\n            \"membername\": \"Company - Camila Silva (camila@harvestmedia.net)\",\n            \"currencycode\": \"AUD\",\n            \"billingdetails\": {\n                \"FullName\": \"\",\n                \"CompanyName\": \"\",\n                \"Address1\": \"\",\n                \"Address2\": \"\",\n                \"City\": \"\",\n                \"State\": \"\",\n                \"PostalCode\": \"\",\n                \"Country\": \"\"\n            }\n        }\n    ],\n    \"total\": 4\n}"}],"_postman_id":"503d98f4-69cd-4b25-984d-221841e3e9e9"},{"name":"Get Invoice","event":[{"listen":"test","script":{"id":"b5ca7520-4b18-41d1-a7a4-0e9758017751","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Pay Invoice\");"],"type":"text/javascript"}}],"id":"569f3fe4-343a-41b7-b35a-7df8c4157c3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"invoiceid\":\"{{HM_ServiceAPI_InvoiceID}}\",\r\n\t\"returntracks\":true,\r\n\t\"returnrates\": true,\r\n\t\"returndiscounts\": true\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p>Gets an invoice.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvoiceID</td>\n<td>Required, the unique ID of the invoice that is to be retrieved</td>\n</tr>\n<tr>\n<td>ReturnTracks</td>\n<td>Optional, default value is false. When true, the retrieved invoice will contain the tracks that make up the invoice</td>\n</tr>\n<tr>\n<td>ReturnRates</td>\n<td>Optional, default value is false. When true, the retrieved invoice will contain the rates that make up the invoice</td>\n</tr>\n<tr>\n<td>ReturnDiscounts</td>\n<td>Optional, default value is false. When true, the retrieved invoice will contain the discounts that make up the invoice</td>\n</tr>\n<tr>\n<td>ReturnSubscriptions</td>\n<td>Optional, default value is false. When true, the retrieved invoice will containg the subscription that make up the invoice.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<p>Invoices of any status can be retrieved.</p>\n","urlObject":{"path":["getinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"9f85a897-da1b-406d-bc35-93cda3d3d64a","name":"Get Invoice (XML)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/xml"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"<requestgetinvoice>\r\n  <invoiceid>1566j98a142a09625v</invoiceid>\r\n  <returndiscounts>true</returndiscounts>\r\n  <returnrates>true</returnrates>\r\n  <returntracks>true</returntracks>\r\n</requestgetinvoice>","options":{"raw":{"language":"xml"}}},"url":"{{HM_ServiceAPI_URL}}/getinvoice/2f30cde70021a012fc1f575w3471eam7"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Fri, 10 Jan 2020 02:12:43 GMT","enabled":true},{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\"?>\n<responseinvoice xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <invoice>\n        <id>1566j98a142a09625v</id>\n        <memberaccountid>0ua1b339158cd76hy0</memberaccountid>\n        <issuedate>2020-01-10T11:04:22.387</issuedate>\n        <duedate>2020-02-09T11:04:22.387</duedate>\n        <totaltax>0.09</totaltax>\n        <subtotal>0.91</subtotal>\n        <total>1.00</total>\n        <invoicelineitems>\n            <amount>0.91</amount>\n            <description />\n            <quantity>1.00</quantity>\n            <amounttax>0.09</amounttax>\n            <track>\n                <trackid>91tc4e77d6a6f9d322</trackid>\n                <albumid>t56ed5a90da8c7cg4t</albumid>\n                <originalfilename>ALT001_trk1_STARFISH_s_kolosov.wav</originalfilename>\n                <filename>ALT001_trk1_STARFISH_s_kolosov.wav</filename>\n                <title>Starfish</title>\n                <displaytitle>Starfish</displaytitle>\n                <tracknumber>001</tracknumber>\n                <duration>219</duration>\n                <bitrate>219</bitrate>\n                <frequency>48000</frequency>\n                <description>Emotive guitar mood / glitzy and dreamy</description>\n            </track>\n            <rate>\n                <id>u14b6a2cff05u05ff3</id>\n                <style>Flat</style>\n                <code>XADTV 1</code>\n                <description>ADVERTISING &gt; TV &gt; 1 country (see Ratecard)</description>\n                <duration>0</duration>\n                <fee>1155.00</fee>\n            </rate>\n        </invoicelineitems>\n        <invoicenumber>6351</invoicenumber>\n        <status>Paid</status>\n        <invoiceproduction>\n            <client>first.last@company.net</client>\n            <title>Production Name</title>\n            <producer>Producer Name</producer>\n            <productiondate>2020-01-08T00:00:00</productiondate>\n            <length>Total Production Length</length>\n            <po>Purchase Order Number</po>\n        </invoiceproduction>\n        <currencycode>AUD</currencycode>\n    </invoice>\n</responseinvoice>"},{"id":"b127e125-d522-4631-9968-7b43c16dfa9b","name":"Get Invoice (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","disabled":true}],"body":{"mode":"raw","raw":"{\r\n\t\"invoiceid\":\"d4ccc741ce7a4998\",\r\n\t\"returntracks\":false,\r\n\t\"returnrates\": false,\r\n\t\"returndiscounts\": false,\r\n    \"returnsubscriptions\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 Jan 2020 00:30:06 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"1566j98a142a09625v\",\n        \"memberaccountid\": \"0ua1b339158cd76hy0\",\n        \"issuedate\": \"2020-01-10T11:04:22.387\",\n        \"duedate\": \"2020-02-09T11:04:22.387\",\n        \"totaltax\": 0.09,\n        \"subtotal\": 0.91,\n        \"total\": 1,\n        \"invoicelineitems\": [\n            {\n                \"amount\": 0.91,\n                \"description\": \"\",\n                \"quantity\": 1,\n                \"amounttax\": 0.09,\n                \"track\": {\n                    \"trackid\": \"91tc4e77d6a6f9d322\",\n                    \"albumid\": \"t56ed5a90da8c7cg4t\",\n                    \"originalfilename\": \"ALT001_trk1_STARFISH_s_kolosov.wav\",\n                    \"filename\": \"ALT001_trk1_STARFISH_s_kolosov.wav\",\n                    \"title\": \"Starfish\",\n                    \"displaytitle\": \"Starfish\",\n                    \"tracknumber\": \"001\",\n                    \"duration\": 219,\n                    \"bitrate\": 219,\n                    \"frequency\": 48000,\n                    \"description\": \"Emotive guitar mood / glitzy and dreamy\"\n                },\n                \"rate\": {\n                    \"id\": \"u14b6a2cff05u05ff3\",\n                    \"style\": 2,\n                    \"code\": \"XADTV 1\",\n                    \"description\": \"ADVERTISING > TV > 1 country (see Ratecard)\",\n                    \"duration\": 0,\n                    \"fee\": 1155\n                }\n            }\n        ],\n        \"invoicenumber\": 6351,\n        \"status\": \"Pending\",\n        \"invoiceproduction\": {\n            \"client\": \"first.last@company.net\",\n            \"title\": \"Production Name\",\n            \"producer\": \"Producer Name\",\n            \"productiondate\": \"2020-01-08T00:00:00\",\n            \"length\": \"Total Production Length\",\n            \"po\": \"Purchase Order Number\"\n        },\n        \"currencycode\": \"AUD\"\n    }\n}"}],"_postman_id":"569f3fe4-343a-41b7-b35a-7df8c4157c3e"},{"name":"Implementation Guide Download Formats","id":"45cbddee-5a00-492a-b65f-f69790d79e59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"INFO:","header":[],"url":"","description":"<h2 id=\"overview\">Overview</h2>\n<p>The following section outlines the formats that are available for streaming as well as immediate downloads.</p>\n<h3 id=\"streaming\">Streaming</h3>\n<p>Formats are available for streaming;</p>\n<ul>\n<li>MP3 (128kbps, 44.1kHz) </li>\n<li>MP3 (96kbps, 44.1kHz)</li>\n</ul>\n<h3 id=\"immediate-downloads\">Immediate Downloads</h3>\n<p>Track downloads will always be available immediately. Album, Playlist and Track Version bundles will download immediately only when the fileformat is available in the HarvestMedia repository.</p>\n<p>Formats available for immediate download include:</p>\n<ul>\n<li>MP3 (320kbps 44.1kHz)</li>\n<li>MP3 (128kbps, 44.1kHz)</li>\n<li>MP3 (96kbps, 44.1kHz)</li>\n</ul>\n<p>There are dozens of other formats available which can be dynamically trans-coded and delivered to members via email download links. This generally takes between 5-15 minutes to be delivered.</p>\n<p>If you have originator labels you can ingest your preferred WAV format (ie: WAV 16bit, 44.1kHz) which will be available for immediate download. We will automatically create a matching AIFF format with the same sample and bit rates behind the scenes for use.</p>\n<p>If you sub publish labels you can not control the WAV formats provided by the originators so we suggestion sticking to the above mentioned available formats.</p>\n","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"45cbddee-5a00-492a-b65f-f69790d79e59"},{"name":"Implementation Guide - Stems","id":"1831c989-f99d-494c-84c7-884adb85c079","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"INFO:","header":[],"url":"","description":"<h2 id=\"overview\">Overview</h2>\n<p>The following section outlines the availability of stem downloads.</p>\n<h3 id=\"downloading-as-a-package\">Downloading as a Package</h3>\n<p>Presently, it is possible to request a download of stems as a ZIP package only. To do so, you request the <code>type: \"stems\"</code>, the <code>format:\"wav\"</code> and the <code>identifier:</code> . The result will be a download token that when used will yield a ZIP that contains all of the stems only. It will not contain the main track.</p>\n<h3 id=\"downloading-limitations\">Downloading limitations</h3>\n<p>It is not possible to download an individual stem or to be able to download a main track with the stems as well.</p>\n","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"1831c989-f99d-494c-84c7-884adb85c079"},{"name":"Validate Music Download","id":"695601fb-b678-4d39-80ad-68ca4abd5189","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"<validatemusicdownloadrequest>\r\n    <identifier>145a3a1250adade601667ad37a8b15d5</identifier>\r\n    <downloadtype>track</downloadtype>\r\n    <format>bht23fa8w4f0kio277</format>\r\n    <trimstartsecs>0</trimstartsecs>\r\n    <trimendsecs>0</trimendsecs>\r\n    <includeversioncheck>false</includeversioncheck>\r\n</validatemusicdownloadrequest>","options":{"raw":{"language":"xml"}}},"url":"{{HM_ServiceAPI_URL}}/validatemusicdownloadrequest/{{HM_ServiceAPI_MemberToken}}","description":"<p>Returns the availability of a download and whether this can be downloaded immediately.</p>\n<p>Downloads that cannot be downloaded immediately will be emailed when requested.</p>\n<p><strong>Request elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>downloadtype</td>\n<td>This element should be either; track, album, playlist, favourites, workspace, tags or stems</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>identifier</td>\n<td>The identifier should be either; track, album, playlist, favourites, workspace or tags.  <br />  <br />* For track, one or more track ids separated by commas  <br />* For album, one album id  <br />* For playlist, one playlist id  <br />* For favourites; zero, one or more content ids separated by commas. If none are provided, all of the member’s favourites will be downloaded, otherwise only the specified  <br />* For stems; one track id (the track id of the main track) is required</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>format</td>\n<td>Format should be an encrypted format identifier returned from getserviceinfo. Alternatively specify \"wav\" or \"aiff\" or \"mp3\" in the fileformat field to get the best available formats for these types.  <br />  <br />* When <code>type</code> is stems, then format must be \"wav\"</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>trimstartsecs &amp; trimendsecs</td>\n<td>Trim values are in seconds only and are only used for single track downloads. Use 0 for both values otherwise</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>includeversioncheck</td>\n<td>If you would like to request a download with all versions related to the requested tracks (used in track, playlist and favourite downloads), set the \"includeversioncheck\" parameter to true. Please note that when the downloadtype is album, includeversions parameter will be ignored and always return track versions.</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Notes regarding a successful response</strong></p>\n<ul>\n<li>The responsevalidatemusicdownload returns an array of valid music downloads objects.</li>\n<li>The downloadallowed element indicates if the download is permitted for the memberoken.</li>\n<li>The directdownloadallowed element indicates if the download is immediate or needs to go via the email process.</li>\n</ul>\n","urlObject":{"path":["validatemusicdownloadrequest","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"8db43ff7-23e0-48a9-b630-3444e709744c","name":"Validate Music Download (XML)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/xml"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"<validatemusicdownloadrequest>\r\n    <identifier>af423fa8f901e427xf</identifier>\r\n    <downloadtype>track</downloadtype>\r\n    <format>bht23fa8w4f0kio277</format>\r\n    <trimstartsecs>0</trimstartsecs>\r\n    <trimendsecs>0</trimendsecs>\r\n    <includeversioncheck>false</includeversioncheck>\r\n</validatemusicdownloadrequest>","options":{"raw":{"language":"xml"}}},"url":"{{HM_ServiceAPI_URL}}/validatemusicdownloadrequest/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Date","value":"Wed, 21 Aug 2019 06:07:34 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Content-Length","value":"476","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<responsevalidatemusicdownload xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <validatemusicdownloads>\n        <validatemusicdownload>\n            <format>bht23fa8w4f0kio277</format>\n            <includeversions>false</includeversions>\n            <downloadallowed>true</downloadallowed>\n            <directdownloadallowed>true</directdownloadallowed>\n        </validatemusicdownload>\n    </validatemusicdownloads>\n    <maxdownloads>0</maxdownloads>\n</responsevalidatemusicdownload>"},{"id":"5eb12b86-696f-4576-bfad-9fd98dab75e7","name":"Validate Music Download (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"Identifier\":\"af423fa8f901e427xf\",\r\n\t\"ContentIDs\":\"\",\r\n\t\"DownloadType\":\"track\",\r\n\t\"Format\":[\"bht23fa8w4f0kio277\"],\r\n\t\"TrimEndSecs\":0,\r\n\t\"TrimStartSecs\":0,\r\n\t\"IncludeVersionCheck\":false\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/validatemusicdownloadrequest/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Date","value":"Wed, 21 Aug 2019 06:05:11 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Content-Length","value":"330","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"ValidateMusicDownloads\": {\n        \"ValidateMusicDownloadList\": [\n            {\n                \"Format\": \"bht23fa8w4f0kio277\",\n                \"IncludeVersions\": false,\n                \"DownloadAllowed\": true,\n                \"DirectDownloadAllowed\": true\n            }\n        ]\n    },\n    \"MaxDownloads\": 0,\n    \"BlockedContentIDs\": []\n}"}],"_postman_id":"695601fb-b678-4d39-80ad-68ca4abd5189"},{"name":"Get Music Download","id":"a79d2183-bc4b-4f81-92ee-ee910908d814","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"Identifier\":\"1f9345scb3836e55c3\",\r\n\t\"DownloadType\":\"track\",\r\n\t\"Format\":\"mp3\",\r\n\t\"TrimStartSecs\":0,\r\n\t\"TrimEndSecs\":0,\r\n\t\"Email\":\"email@domain.com\",\r\n\t\"IsShare\":false,\r\n\t\"Message\":\"\",\r\n\t\"SenderEmail\":\"\",\r\n\t\"ForceEmail\":false,\r\n\t\"IncludeVersions\":false,\r\n\t\"VersionFolderName\":\"\",\r\n\t\"DownloadFileName\":\"\",\r\n\t\"CuesheetFileName\":\"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getmusicdownload/{{HM_ServiceAPI_MemberToken}}","description":"<p>GetDownload returns download tokens which can be downloaded immediately or sends a download link directly to specified email.</p>\n<p>Whenever download tokens are returned use the AssetUrls.DirectDownloadUrl URL regardless of type of download (To access AssetURLs see getserviceinfo).</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>downloadtype</td>\n<td>This element should be either; track, album, playlist, favourites, workspace or tags</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>identifier</td>\n<td>The identifier should be either; track, album, playlist, favourites, workspace, tags or stems.  <br />  <br />* For track, one or more track ids separated by commas.  <br />* For album, one album id. For playlist, one playlist id.  <br />* For favourites; zero, one or more content ids separated by commas. If none are provided, all of the member’s favourites will be downloaded, otherwise only the specified  <br />* For stems; one track id (the track id of the main track) is required</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>format</td>\n<td>Format should be an encrypted format identifier returned from getserviceinfo. Alternatively specify \"wav\" or \"aiff\" or \"mp3\" in the fileformat field to get the best available formats for these types  <br />  <br />* When <code>type</code> is stems, then format must be \"wav\"</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>trimstartsecs &amp; trimendsecs</td>\n<td>Trim values are in seconds only and are only used for single track downloads. Use 0 for both values otherwise</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>email</td>\n<td>Recipient of the download email</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>isshare</td>\n<td>Setting isshare to true will use the \"share music\" email templates to send an email. If set to true, no attempt is made to get a download token for immediate use</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>forceemail</td>\n<td>Always send an email, do not attempt to get a download token for immediate use</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>message</td>\n<td>This is the message body for the email isshare or forceemail</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>senderemail</td>\n<td>This is the member email that the download is sent from</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>includeversions</td>\n<td>If you would like to request a download with all versions related to the requested tracks (used in track, playlist and favourite downloads), set the \"includeversions\" parameter to true in the requestDownload body. This will result in the zip containing related versions.</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>versionfoldername</td>\n<td>This is the name of the folder that versions will appear within when \"includeversions\" is true. A default name will be provided if you chose to not set this</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>downloadfilename</td>\n<td>The downloaded file name can be set here. The track download filename convention can be configured in the admin. The other download formats are formatted as follows. For playlists it is {playlist.name}.zip. For albums it is {album.displaytitle}.zip. For favorites it is myfavourites.zip. For workspace it is workspace.zip. For tags it is tags.zip. Multiple track ids will appear as {accountcode}<em>download</em>{ddmmyyyy}_{counter}</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>cuesheetfilename</td>\n<td>The cuesheet file name can be set here. The track cuesheet filename convention can be configured in the admin however it is possible to override it here to anything you require</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Notes regarding a Successful Response (isshare= “false” and forceemail= “false”)</strong></p>\n<p>The responsedownload returns an array of token objects. In most cases, there will be just one token, but where the download contains many tracks (typically in WAV or AIFF formats), there will be multiple parts to the download. In these cases, the package is split into multiple ZIP archives (up to 2GB in size each), and each token represents one of these ZIP files, and the corresponding part represents the ZIP file’s order within the package set.</p>\n<p>Merge each TokenValue from the response object with AssetUrls.DirectDownloadUrl and make a request to it. You will need to launch a download for each token/part pair in this array.</p>\n<p>Where multiple download tokens are returned, we recommend simultaneous requests to each link as these tokens have a very brief expiry time.</p>\n<p><strong>Successful Response (isshare= “true” or forceemail=\"true)</strong></p>\n<p>If the response body returns “requestsent=true” then the download will be sent using the email process. The member will receive an email with a download link.</p>\n","urlObject":{"path":["getmusicdownload","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"d3a3f744-8816-4c18-b23a-e92330a4f3bd","name":"Get Music Download (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"Identifier\":\"1f9345scb3836e55c3\",\r\n\t\"DownloadType\":\"track\",\r\n\t\"Format\":\"mp3\",\r\n\t\"TrimStartSecs\":0,\r\n\t\"TrimEndSecs\":0,\r\n\t\"Email\":\"email@domain.com\",\r\n\t\"IsShare\":false,\r\n\t\"Message\":\"\",\r\n\t\"SenderEmail\":\"\",\r\n\t\"ForceEmail\":false,\r\n\t\"IncludeVersions\":false,\r\n\t\"VersionFolderName\":\"\",\r\n\t\"DownloadFileName\":\"\",\r\n\t\"CuesheetFileName\":\"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getmusicdownload/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Date","value":"Fri, 23 Aug 2019 01:39:32 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Content-Length","value":"199","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"RequestSent\": false,\n    \"DownloadTokens\": [\n        {\n            \"TokenValue\": \"37ecc842dac353708v941e8e09vf42c3l0\"\n        }\n    ],\n    \"BlockedContentIDs\": []\n}"},{"id":"c9edd623-b73c-4261-908e-72b52a701561","name":"Get Music Download (XML)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/xml"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"<downloadextended>\r\n    <identifier>1f9345scb3836e55c3</identifier>\r\n    <downloadtype>track</downloadtype>\r\n    <format>mp3</format>\r\n    <trimstartsecs>0</trimstartsecs>\r\n    <trimendsecs>0</trimendsecs>\r\n    <email>email@domain.com</email>\r\n    <isshare>false</isshare>\r\n    <message></message>\r\n    <senderemail></senderemail>\r\n    <forceemail>false</forceemail>\r\n    <includeversions>false</includeversions>\r\n    <versionfoldername></versionfoldername>\r\n    <downloadfilename></downloadfilename>\r\n    <cuesheetfilename></cuesheetfilename>\r\n</downloadextended>","options":{"raw":{"language":"xml"}}},"url":"{{HM_ServiceAPI_URL}}/getmusicdownload/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Date","value":"Fri, 23 Aug 2019 01:43:42 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Content-Length","value":"359","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<responsemusicdownload xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <requestsent>false</requestsent>\n    <downloadtokens>\n        <downloadtoken>\n            <tokenvalue>37ecc842dac353708v941e8e09vf42c3l0</tokenvalue>\n            <part xsi:nil=\"true\"/>\n        </downloadtoken>\n    </downloadtokens>\n</responsemusicdownload>"},{"id":"3fc700f1-cead-4824-b2a7-f4585486b9ec","name":"Get Music Download Stems (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"Identifier\":\"1f9345scb3836e55c3\",\r\n\t\"DownloadType\":\"stems\",\r\n\t\"Format\":\"wav\",\r\n\t\"TrimStartSecs\":0,\r\n\t\"TrimEndSecs\":0,\r\n\t\"Email\":\"email@domain.com\",\r\n\t\"IsShare\":false,\r\n\t\"Message\":\"\",\r\n\t\"SenderEmail\":\"\",\r\n\t\"ForceEmail\":false,\r\n\t\"IncludeVersions\":false,\r\n\t\"VersionFolderName\":\"\",\r\n\t\"DownloadFileName\":\"\",\r\n\t\"CuesheetFileName\":\"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getmusicdownload/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Date","value":"Fri, 23 Aug 2019 01:39:32 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Content-Length","value":"199","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"RequestSent\": false,\n    \"DownloadTokens\": [\n        {\n            \"TokenValue\": \"37ecc842dac353708v941e8e09vf42c3l0\"\n        }\n    ],\n    \"BlockedContentIDs\": []\n}"},{"id":"53de8409-70b4-46a9-8773-6012efd0a8f7","name":"Get Music Download Stems (XML)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/xml"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"<downloadextended>\r\n    <identifier>1f9345scb3836e55c3</identifier>\r\n    <downloadtype>stems</downloadtype>\r\n    <format>wav</format>\r\n    <trimstartsecs>0</trimstartsecs>\r\n    <trimendsecs>0</trimendsecs>\r\n    <email>email@domain.com</email>\r\n    <isshare>false</isshare>\r\n    <message></message>\r\n    <senderemail></senderemail>\r\n    <forceemail>false</forceemail>\r\n    <includeversions>false</includeversions>\r\n    <versionfoldername></versionfoldername>\r\n    <downloadfilename></downloadfilename>\r\n    <cuesheetfilename></cuesheetfilename>\r\n</downloadextended>","options":{"raw":{"language":"xml"}}},"url":"{{HM_ServiceAPI_URL}}/getmusicdownload/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Date","value":"Fri, 23 Aug 2019 01:43:42 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Content-Length","value":"359","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<responsemusicdownload xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <requestsent>false</requestsent>\n    <downloadtokens>\n        <downloadtoken>\n            <tokenvalue>37ecc842dac353708v941e8e09vf42c3l0</tokenvalue>\n            <part xsi:nil=\"true\"/>\n        </downloadtoken>\n    </downloadtokens>\n</responsemusicdownload>"}],"_postman_id":"a79d2183-bc4b-4f81-92ee-ee910908d814"},{"name":"Get Music Download Info","id":"2255ae92-371f-4dc7-b417-f81d471226d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"Skip\": 0,\r\n    \"Limit\": 10,\r\n    \"DownloadID\": \"e6ee57b732ce88b2\",\r\n    \"DownloadGroupID\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getmusicdownloadinfo/{{HM_ServiceAPI_Token}}","description":"<p>Returns information on the current status of a download, including download links to each item contained within.</p>\n<p>There are two possible usages here; retrieving information on a singular download (album, playlist) or a grouped download (playlist categories).</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ServiceToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Skip</td>\n<td></td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Limit</td>\n<td></td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>DownloadID</td>\n<td></td>\n<td>Optional, if this is not provided then <code>DownloadGroupID</code> must be provided.</td>\n</tr>\n<tr>\n<td>DownloadGroupID</td>\n<td></td>\n<td>Optional, if this is not provided then <code>DownloadID</code> must be provided.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Skip &amp; Limit</strong></p>\n<p>The Skip and Limit parameters come together to allow for paging of results.</p>\n<p>Skip is the number of results to skip.</p>\n<p>Limit is the number of results to return.</p>\n<p>An example; if your page size is 10 and the user is on page 2 then Skip would be 10 and Limit would be 10.</p>\n<p><strong>Request Notes: DownloadID</strong></p>\n<p><code>DownloadID</code> should be used for downloads of type Album or Playlist.</p>\n<p><strong>Request Notes: DownloadGroupID</strong></p>\n<p><code>DownloadID</code> should be used for downloads of type Playlist Category.</p>\n<p><strong>Request Notes: DownloadID or DownloadGroupID</strong></p>\n<p>From a website implementation perspective, you can determine which request property to populate based on the URL that the user navigated to. The routes for each is configured in the Admin portal - we recommend making different routes to handle each scenario.</p>\n<p><strong>Request Notes: DownloadGroupID</strong></p>\n<p><code>DownloadID</code> should be used for downloads of type Playlist Category.</p>\n<p><strong>Response Notes: Status</strong></p>\n<p>There are four possible states;</p>\n<ol>\n<li>InProgress</li>\n<li>Prepared</li>\n<li>Downloaded</li>\n<li>Expired</li>\n</ol>\n<p><code>InProgess</code> - you will receive this status if the download is still being prepared.</p>\n<p><code>Prepared</code> - you will receive this status if the download has finished being prepared and is now available for download.</p>\n<p><code>Downloaded</code> - you will receive this status if the particular item has been downloaded previously. It is still possible to download this again.</p>\n<p><code>Expired</code> - you will receive this status if the download is no longer available. This expiration time can vary based on account settings, but usually this is somewhere between 7-30 days.</p>\n","urlObject":{"path":["getmusicdownloadinfo","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2255ae92-371f-4dc7-b417-f81d471226d0"},{"name":"Get Invoice Download URL","event":[{"listen":"test","script":{"id":"0a513f1c-9154-434c-9899-236e75a70447","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Get Invoice Document\");"],"type":"text/javascript"}}],"id":"90f86486-61d9-4c43-a9b3-951993640ce0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getinvoicedownloadurl/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_InvoiceID}}","description":"<p>Search invoices by amounts and dates.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FromAmount</td>\n<td>Optional, default value is 0. The lower invoice amount for which to filter by</td>\n</tr>\n<tr>\n<td>FromDate</td>\n<td>Optional, the lower due date for which to filter by</td>\n</tr>\n<tr>\n<td>ToAmount</td>\n<td>Optional, the upper invoice amount for which to filter by</td>\n</tr>\n<tr>\n<td>ToDate</td>\n<td>Optional, the upper due date for which to filter by</td>\n</tr>\n<tr>\n<td>Skip</td>\n<td>Optional, the number of results to skip</td>\n</tr>\n<tr>\n<td>Limit</td>\n<td>Required, the number of results to return</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["getinvoicedownloadurl","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_InvoiceID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"f1250d06-bb3b-4658-8d67-1c875afa2631","name":"Get Invoice Download URL","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getinvoicedownloadurl/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_InvoiceID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 29 Feb 2024 05:39:56 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Url\": \"https://cf.harvestmedia.net/CDN/downloads/invoices/7f9ad20a0fbc0524/a1c1433f-70d0-4f9b-91ca-3475accdb59b/.pdf\"\n}"}],"_postman_id":"90f86486-61d9-4c43-a9b3-951993640ce0"}],"id":"4e50fa0d-24c4-4cd2-ad1d-dc1f1b9103dd","_postman_id":"4e50fa0d-24c4-4cd2-ad1d-dc1f1b9103dd","description":""},{"name":"My History","item":[{"name":"Get Member Download History","id":"ca6eaca7-bb39-4354-913b-fee045688a95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getdownloadhistorybymembertoken/{{HM_ServiceAPI_MemberToken}}?startdate={startDate}&enddate={endDate}&skip={Skip}&limit={Limit}","description":"<p>Returns records associated with a member, based on their download history.</p>\n<p>The response will not include the full track metadata, instead we recommend that you retrieve this using <code>Get Tracks</code></p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n<tr>\n<td>Skip</td>\n<td>Integer</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>Limit</td>\n<td>Integer</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td>String</td>\n<td>Optional</td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td>String</td>\n<td>Optional</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Skip &amp; Limit</strong></p>\n<p>The <code>Skip</code> and <code>Limit</code> parameters come together to allow for paging of results.</p>\n<p><code>Skip</code> is the number of results to skip.</p>\n<p><code>Limit</code> is the number of results to return.</p>\n<p>An example; if your page size is 10 and the user is on page 2 then Skip would be 10 and Limit would be 10.</p>\n<p><strong>Request Notes: Start &amp; End Dates</strong></p>\n<p>The <code>StartDate</code> and <code>EndDate</code> parameters can be used to return downloads within a date range..</p>\n<p><code>StartDate</code> and <code>EndDate</code> must be supplied in UTC.</p>\n<p>The date should be supplied in <code>yyyy-mm-dd</code> format.</p>\n<p>There are a few ways this can be set:</p>\n<ul>\n<li><code>StartDate</code> set, with <code>EndDate</code> not set; this will return all results on or after the StartDate</li>\n<li><code>EndDate</code> set, with <code>StartDate</code> not set; this will return all results on or before the EndDate</li>\n<li><code>StartDate</code> and <code>EndDate</code> both set; this will return all results within the date range</li>\n<li><code>StartDate</code> and <code>EndDate</code> both not set; this is the default and will return all results regardless of date</li>\n</ul>\n","urlObject":{"path":["getdownloadhistorybymembertoken","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"startdate","value":"{startDate}"},{"key":"enddate","value":"{endDate}"},{"key":"skip","value":"{Skip}"},{"key":"limit","value":"{Limit}"}],"variable":[]}},"response":[{"id":"8c1f36e9-6851-45fb-ae48-8cf21e599c63","name":"Get Member Download History (JSON)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":{"raw":"{{HM_ServiceAPI_URL}}/getdownloadhistorybymembertoken/{{HM_ServiceAPI_MemberToken}}?skip=0&limit=2","host":["{{HM_ServiceAPI_URL}}"],"path":["getdownloadhistorybymembertoken","{{HM_ServiceAPI_MemberToken}}"],"query":[{"key":"skip","value":"0"},{"key":"limit","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Date","value":"Tue, 20 Aug 2019 23:56:31 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Content-Length","value":"2957","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"History\": {\n        \"Tracks\": [\n            {\n                \"ID\": \"8dcc714a243738ddbb\",\n                \"LengthSecondsTrimStart\": \"\",\n                \"LengthSecondsTrimEnd\": \"\",\n                \"LibraryFeatured\": false,\n                \"Alternates\": [],\n                \"AlternateTracks\": [],\n                \"RelatedTracks\": [],\n                \"Categories\": [],\n                \"Composers\": [],\n                \"Highlighted\": false,\n                \"HighlightedInPlaylists\": [],\n                \"Tags\": []\n            },\n            {\n                \"ID\": \"q152c02f555oc74436\",\n                \"LibraryFeatured\": false,\n                \"Alternates\": [],\n                \"AlternateTracks\": [],\n                \"RelatedTracks\": [],\n                \"Categories\": [],\n                \"Composers\": [],\n                \"Highlighted\": false,\n                \"HighlightedInPlaylists\": [],\n                \"Tags\": []\n            }\n        ],\n        \"HistoryItems\": [\n            {\n                \"TrackID\": \"8dcc714a243738ddbb\",\n                \"DeliveryDate\": \"2021-03-11T14:21:11.653\",\n                \"ItemType\": \"Download\"\n            },\n            {\n                \"TrackID\": \"q152c02f555oc74436\",\n                \"DeliveryDate\": \"2021-03-11T14:21:11.653\",\n                \"ItemType\": \"Download\"\n            }\n        ],\n        \"TotalHistoryItems\": 2\n    }\n}"},{"id":"adb195f0-bbfc-4d5c-a546-231d388947b3","name":"Get Member Download History (XML)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":{"raw":"{{HM_ServiceAPI_URL}}/getdownloadhistorybymembertoken/{{HM_ServiceAPI_MemberToken}}?skip=0&limit=2","host":["{{HM_ServiceAPI_URL}}"],"path":["getdownloadhistorybymembertoken","{{HM_ServiceAPI_MemberToken}}"],"query":[{"key":"skip","value":"0"},{"key":"limit","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"application/xml","enabled":true},{"key":"Date","value":"Tue, 20 Aug 2019 23:58:14 GMT","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Content-Length","value":"440","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<responsehistory xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <history>\n        <tracks>\n            <track id=\"8dcc714a243738ddbb\" lengthsecondstrimstart=\"\" lengthsecondstrimend=\"\" libraryfeatured=\"false\">\n                <alternates/>\n                <alternatetracks/>\n                <relatedtracks/>\n                <categories/>\n                <composers/>\n                <highlightedinplaylists />\n                <tags/>\n            </track>\n            <track id=\"q152c02f555oc74436\" lengthsecondstrimstart=\"\" lengthsecondstrimend=\"\" libraryfeatured=\"false\">\n                <alternates/>\n                <alternatetracks/>\n                <relatedtracks/>\n                <categories/>\n                <composers/>\n                <highlightedinplaylists />\n                <tags/>\n            </track>\n        </tracks>\n        <historyitems>\n            <historyitem trackid=\"8dcc714a243738ddbb\" deliverydate=\"2021-03-11T14:21:11.653\" itemtype=\"Download\" />\n            <historyitem trackid=\"q152c02f555oc74436\" deliverydate=\"2021-03-11T14:21:11.653\" itemtype=\"Download\" />\n        </historyitems>\n        <totalhistoryitems>1</totalhistoryitems>\n    </history>\n</responsehistory>"}],"_postman_id":"ca6eaca7-bb39-4354-913b-fee045688a95"}],"id":"d3b629fd-9837-440b-856a-9c66db4fa77e","_postman_id":"d3b629fd-9837-440b-856a-9c66db4fa77e","description":""}],"id":"7f14a81d-d60a-4801-8f08-57f263c8f35f","description":"<p>To licensing a track after selecting from a search list, it is needed to call <code>GetRates()</code> informing the style <code>flat</code> and the account currency and filter the response by the parent type \"Single License\". When the user makes their selection, create the invoice and continue normally to the checkout process by sending the trackID and the chosen rateID.</p>\n","_postman_id":"7f14a81d-d60a-4801-8f08-57f263c8f35f"},{"name":"Ecom Multiple Licensing Track","item":[{"name":"Handle Members' Selections via session","item":[{"name":"SetMemberSession","id":"f87cf87b-e173-412e-aeec-6d61b7be49a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"Data\": {\r\n        \"Tracks\": [{\r\n            \"ID\": \"{{TrackID1}}\"\r\n        },\r\n        {\r\n            \"ID\": \"{{TrackID2}}\"\r\n        },\r\n        {\r\n            \"ID\": \"{{TrackID3}}\"\r\n        }]\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/SetMemberSession/{{HM_ServiceAPI_MemberToken}}/{{SessionGuidID}}","urlObject":{"path":["SetMemberSession","{{HM_ServiceAPI_MemberToken}}","{{SessionGuidID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"bb630c01-3c14-435a-89f1-823dab764223","name":"SetMemberSession (JSON)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"Data\": {\r\n        \"Tracks\": [{\r\n            \"ID\": \"{{TrackID1}}\"\r\n        },\r\n        {\r\n            \"ID\": \"{{TrackID2}}\"\r\n        },\r\n        {\r\n            \"ID\": \"{{TrackID3}}\"\r\n        }]\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/SetMemberSession/{{HM_ServiceAPI_MemberToken}}/{{SessionGuidID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 04 Jun 2024 21:47:29 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Session\": [\n        {\n            \"GuidID\": \"0AF0978F-9012-411D-8236-96D7922044D0\",\n            \"DateTime\": \"2024-06-05T07:47:29.8866434+10:00\",\n            \"Data\": {\n                \"Tracks\": [\n                    {\n                        \"ID\": \"039f15ce5f1d5b6b\"\n                    },\n                    {\n                        \"ID\": \"aee17c071c893876\"\n                    },\n                    {\n                        \"ID\": \"a10abd77eaa542a1\"\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"f87cf87b-e173-412e-aeec-6d61b7be49a1"},{"name":"GetMemberSession","id":"cad718d3-3851-47ff-9758-b4d2a84d2389","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{HM_ServiceAPI_URL}}/GetMemberSession/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["GetMemberSession","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"eecd5593-ad61-4376-9af0-80221c76fb85","name":"GetMemberSession (JSON)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"url":"{{HM_ServiceAPI_URL}}/GetMemberSession/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 04 Jun 2024 21:49:27 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Session\": [\n        {\n            \"GuidID\": \"0AF0978F-9012-411D-8236-96D7922044D0\",\n            \"DateTime\": \"2024-06-05T07:47:29.8866434+10:00\",\n            \"Data\": {\n                \"Tracks\": [\n                    {\n                        \"ID\": \"039f15ce5f1d5b6b\"\n                    },\n                    {\n                        \"ID\": \"aee17c071c893876\"\n                    },\n                    {\n                        \"ID\": \"a10abd77eaa542a1\"\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"cad718d3-3851-47ff-9758-b4d2a84d2389"},{"name":"VoidMemberSession","id":"d401b9aa-5ab5-4282-819f-1cb6e065d663","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/VoidMemberSession/{{HM_ServiceAPI_MemberToken}}/{{SessionGuidID}}","urlObject":{"path":["VoidMemberSession","{{HM_ServiceAPI_MemberToken}}","{{SessionGuidID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"47e7b375-32c7-42f7-9f65-f98176ae0b5c","name":"VoidMemberSession (JSON)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"{{HM_ServiceAPI_URL}}/VoidMemberSession/{{HM_ServiceAPI_MemberToken}}?{{SessionGuidID}}","host":["{{HM_ServiceAPI_URL}}"],"path":["VoidMemberSession","{{HM_ServiceAPI_MemberToken}}"],"query":[{"key":"{{SessionGuidID}}","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 17 May 2024 06:32:22 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Code\": \"OK\"\n}"}],"_postman_id":"d401b9aa-5ab5-4282-819f-1cb6e065d663"}],"id":"55260d6b-9110-4a9c-a8f8-127763988e6e","_postman_id":"55260d6b-9110-4a9c-a8f8-127763988e6e","description":""},{"name":"Start Licensing","item":[{"name":"Get Licensing For","id":"81a0cabc-30a6-4a27-b158-62db0b96f4bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"url":"{{HM_ServiceAPI_URL}}/GetAutomaticDiscounts/{{HM_ServiceAPI_Token}}","urlObject":{"path":["GetAutomaticDiscounts","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"90b45084-5196-4849-b809-7810d1e0521e","name":"Get Licensing For (JSON)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"url":"{{HM_ServiceAPI_URL}}/GetAutomaticDiscounts/{{HM_ServiceAPI_Token}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/10.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Date","value":"Wed, 05 Jun 2024 01:30:19 GMT","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Discounts\": [\n        {\n            \"ID\": \"47800e5732182292\",\n            \"AccountID\": \"a78a2958d39dff66\",\n            \"Name\": \"Personal\",\n            \"StartDate\": \"2024-06-05 00:00:00\",\n            \"Type\": \"Automatic\",\n            \"Percentage\": 20,\n            \"TriggerValue\": \"3.00\",\n            \"TriggerRates\": [],\n            \"ApplyToRates\": []\n        },\n        {\n            \"ID\": \"b31e02b362421e6f\",\n            \"AccountID\": \"a78a2958d39dff66\",\n            \"Name\": \"Professional\",\n            \"StartDate\": \"2024-06-05 00:00:00\",\n            \"Type\": \"Automatic\",\n            \"Percentage\": 30,\n            \"TriggerValue\": \"4.00\",\n            \"TriggerRates\": [],\n            \"ApplyToRates\": []\n        }\n    ]\n}"}],"_postman_id":"81a0cabc-30a6-4a27-b158-62db0b96f4bf"},{"name":"Get Pricing Groups","id":"c4aa97cd-4f5d-44db-88cc-5d08dc557357","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"url":"{{HM_ServiceAPI_URL}}/GetPricingGroups/{{HM_ServiceAPI_MemberToken}}?currencycode={{Currency}}","urlObject":{"path":["GetPricingGroups","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"currencycode","value":"{{Currency}}"}],"variable":[]}},"response":[{"id":"8803bd5e-6e6f-47ab-9abf-d343fa03b52f","name":"Get Pricing Groups (JSON)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"url":{"raw":"{{HM_ServiceAPI_URL}}/GetPricingGroups/{{HM_ServiceAPI_MemberToken}}?currencycode=AUD","host":["{{HM_ServiceAPI_URL}}"],"path":["GetPricingGroups","{{HM_ServiceAPI_MemberToken}}"],"query":[{"key":"currencycode","value":"AUD"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Jun 2024 06:13:21 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"PricingGroups\": [\n        {\n            \"ID\": \"a89b1466396f7c0a\",\n            \"Name\": \"Local\",\n            \"Description\": \"Local\",\n            \"OrderID\": \"1995\",\n            \"Usage\": [\n                {\n                    \"ID\": \"33dcc2c9e4c61682\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Branded Content\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                },\n                {\n                    \"ID\": \"1f670d6cbb8a9a1b\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Commercial/Ad\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                },\n                {\n                    \"ID\": \"7e08f8497f4d5497\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Podcast\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                },\n                {\n                    \"ID\": \"06ae6c0be3f621bf\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Program\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                },\n                {\n                    \"ID\": \"e67630c40ed47e94\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Promo/PSA\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                }\n            ],\n            \"Rates\": [\n                {\n                    \"ID\": \"ec676789b1358444\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP001\",\n                    \"Title\": \"Promo/PSA / Program\",\n                    \"Description\": \"Local Internet/Social\",\n                    \"Fee\": 175,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:22:53\",\n                    \"OrderID\": \"1998\",\n                    \"CurrencyCode\": \"AUD\"\n                },\n                {\n                    \"ID\": \"e0da54a4bee1366a\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP002\",\n                    \"Title\": \"Promo/PSA / Program\",\n                    \"Description\": \"Local Radio\",\n                    \"Fee\": 125,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:32:34\",\n                    \"OrderID\": \"1999\",\n                    \"CurrencyCode\": \"AUD\"\n                },\n                {\n                    \"ID\": \"881629aaa45eaa73\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP003\",\n                    \"Title\": \"Promo/PSA /  Program\",\n                    \"Description\": \"Local All TV/Streaming\",\n                    \"Fee\": 200,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:34:12\",\n                    \"OrderID\": \"2000\",\n                    \"CurrencyCode\": \"AUD\"\n                },\n                {\n                    \"ID\": \"89b4e8664c662c05\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DROP004\",\n                    \"Title\": \"Promo/PSA / Program\",\n                    \"Description\": \"Local Industrial\",\n                    \"Fee\": 250,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:36:50\",\n                    \"OrderID\": \"2001\",\n                    \"CurrencyCode\": \"AUD\"\n                },\n                {\n                    \"ID\": \"3f399de182054188\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP005\",\n                    \"Title\": \"Promo/PSA / Program\",\n                    \"Description\": \"Local Internal\",\n                    \"Fee\": 150,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:38:42\",\n                    \"OrderID\": \"2002\",\n                    \"CurrencyCode\": \"AUD\"\n                }\n            ]\n        },\n        {\n            \"ID\": \"7489bf7337910b83\",\n            \"Name\": \"Regional\",\n            \"Description\": \"Regional\",\n            \"OrderID\": \"1996\",\n            \"Usage\": [\n                {\n                    \"ID\": \"33dcc2c9e4c61682\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Branded Content\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                },\n                {\n                    \"ID\": \"1f670d6cbb8a9a1b\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Commercial/Ad\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                },\n                {\n                    \"ID\": \"7e08f8497f4d5497\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Podcast\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                },\n                {\n                    \"ID\": \"06ae6c0be3f621bf\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Program\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                },\n                {\n                    \"ID\": \"e67630c40ed47e94\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Promo/PSA\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                }\n            ],\n            \"Rates\": [\n                {\n                    \"ID\": \"4251eff4483089cb\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP008\",\n                    \"Title\": \"Promo/PSA / Program\",\n                    \"Description\": \"Regional Internet/Social\",\n                    \"Fee\": 225,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:46:17\",\n                    \"OrderID\": \"2005\",\n                    \"CurrencyCode\": \"AUD\"\n                },\n                {\n                    \"ID\": \"921b4239606f2ca9\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP009\",\n                    \"Title\": \"Promo/PSA / Program\",\n                    \"Description\": \"Regional Radio\",\n                    \"Fee\": 170,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:46:58\",\n                    \"OrderID\": \"2006\",\n                    \"CurrencyCode\": \"AUD\"\n                },\n                {\n                    \"ID\": \"e197869d71502563\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP009\",\n                    \"Title\": \"Promo/PSA / Program\",\n                    \"Description\": \"Regional All TV/Streaming\",\n                    \"Fee\": 270,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:47:30\",\n                    \"OrderID\": \"2007\",\n                    \"CurrencyCode\": \"AUD\"\n                },\n                {\n                    \"ID\": \"64c909e89ef86636\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP010\",\n                    \"Title\": \"Promo/PSA / Program\",\n                    \"Description\": \"Regional Industrial\",\n                    \"Fee\": 325,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:48:26\",\n                    \"OrderID\": \"2008\",\n                    \"CurrencyCode\": \"AUD\"\n                },\n                {\n                    \"ID\": \"0cccbaf4941574b9\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP011\",\n                    \"Title\": \"Promo/PSA / Program\",\n                    \"Description\": \"Regional Internal\",\n                    \"Fee\": 150,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:49:03\",\n                    \"OrderID\": \"2009\",\n                    \"CurrencyCode\": \"AUD\"\n                }\n            ]\n        },\n        {\n            \"ID\": \"c1ed8dd27b09165c\",\n            \"Name\": \"National/Global\",\n            \"Description\": \"National/Global\",\n            \"OrderID\": \"1997\",\n            \"Usage\": [],\n            \"Rates\": []\n        }\n    ],\n    \"RateTags\": [\n        {\n            \"ID\": \"94e4ee1579d18252\",\n            \"GroupID\": \"15346e27fe392591\",\n            \"ItemName\": \"All TV/Streaming\",\n            \"Locked\": false,\n            \"GroupItemStatus\": \"Active\"\n        },\n        {\n            \"ID\": \"f627f6d4e5705cb6\",\n            \"GroupID\": \"15346e27fe392591\",\n            \"ItemName\": \"Industrial\",\n            \"Locked\": false,\n            \"GroupItemStatus\": \"Active\"\n        },\n        {\n            \"ID\": \"ab34bb4d5367526d\",\n            \"GroupID\": \"15346e27fe392591\",\n            \"ItemName\": \"Internal\",\n            \"Locked\": false,\n            \"GroupItemStatus\": \"Active\"\n        },\n        {\n            \"ID\": \"95ce6b8ced3020bd\",\n            \"GroupID\": \"15346e27fe392591\",\n            \"ItemName\": \"Internet/Social\",\n            \"Locked\": false,\n            \"GroupItemStatus\": \"Active\"\n        },\n        {\n            \"ID\": \"ea890f025962bf92\",\n            \"GroupID\": \"15346e27fe392591\",\n            \"ItemName\": \"Radio\",\n            \"Locked\": false,\n            \"GroupItemStatus\": \"Active\"\n        }\n    ]\n}"}],"_postman_id":"c4aa97cd-4f5d-44db-88cc-5d08dc557357"},{"name":"Get Discounts","id":"8933569a-7efe-4069-a2c1-47db4a9423eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"url":"{{HM_ServiceAPI_URL}}/getdiscounts/{{HM_ServiceAPI_Token}}","urlObject":{"path":["getdiscounts","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"3622f26c-ba74-4b77-8d70-101872dccf54","name":"Get Discounts","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","disabled":true},{"key":"Accept","value":"application/json"}],"url":"{{HM_ServiceAPI_URL}}/getdiscounts/{{HM_ServiceAPI_Token}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Mon, 08 Sep 2025 09:03:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"Discounts\": [\n        {\n            \"ID\": \"952ed3fbc6027941\",\n            \"AccountID\": \"e072a9105fd2f362\",\n            \"Name\": \"Expired\",\n            \"StartDate\": \"2025-09-08 00:00:00\",\n            \"EndDate\": \"2025-09-07 23:59:59\",\n            \"Type\": \"Code\",\n            \"Percentage\": 50,\n            \"TriggerValue\": \"TEST001\",\n            \"TriggerRates\": [\n                {\n                    \"ID\": \"168e4ca5cbfdee45\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"BCAST\",\n                    \"Description\": \"Local\",\n                    \"Fee\": 210,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-03-24 13:19:29\",\n                    \"OrderID\": \"1298\"\n                },\n                {\n                    \"ID\": \"05c7ac7bfa418642\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"AMXT\",\n                    \"Description\": \"Local\",\n                    \"Fee\": 375,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-03-24 15:13:40\",\n                    \"OrderID\": \"1299\"\n                },\n                {\n                    \"ID\": \"18da4f267427498f\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP001\",\n                    \"Description\": \"Local Internet/Social\",\n                    \"Fee\": 175,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-03-24 15:14:12\",\n                    \"OrderID\": \"1300\"\n                },\n                {\n                    \"ID\": \"8e65c0fc032ae6b6\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP002\",\n                    \"Description\": \"Local Radio\",\n                    \"Fee\": 125,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-03-24 15:14:38\",\n                    \"OrderID\": \"1301\"\n                },\n                {\n                    \"ID\": \"525a16ce6a8adfb2\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP008\",\n                    \"Description\": \"Regional Internet/Social\",\n                    \"Fee\": 225,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-03-24 15:15:02\",\n                    \"OrderID\": \"1302\"\n                },\n                {\n                    \"ID\": \"dbc96feb30519ec4\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP009\",\n                    \"Description\": \"Regional Radio\",\n                    \"Fee\": 170,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-03-24 15:15:25\",\n                    \"OrderID\": \"1303\"\n                },\n                {\n                    \"ID\": \"943a8ff88f11c636\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP014\",\n                    \"Description\": \"Yes\",\n                    \"Fee\": 129,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-03-24 15:15:54\",\n                    \"OrderID\": \"54\"\n                },\n                {\n                    \"ID\": \"07846b3f2e415d5c\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP015\",\n                    \"Description\": \"No\",\n                    \"Fee\": 49,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-03-24 15:16:21\",\n                    \"OrderID\": \"55\"\n                },\n                {\n                    \"ID\": \"07a62788ab0db03d\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DISPLAY001\",\n                    \"Description\": \"Local Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Inte\",\n                    \"Fee\": 125,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:22:53\",\n                    \"OrderID\": \"1\"\n                },\n                {\n                    \"ID\": \"cf4b33d48a8310f9\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DISPLAY002\",\n                    \"Description\": \"Distributed over-the-air or via satellite. *Does not include internet radio.*\",\n                    \"Fee\": 125,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:32:34\",\n                    \"OrderID\": \"2\"\n                },\n                {\n                    \"ID\": \"b44cb84fb95e7964\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DISPLAY003\",\n                    \"Description\": \"Local All TV/Streaming\",\n                    \"Fee\": 200,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:34:12\",\n                    \"OrderID\": \"3\"\n                },\n                {\n                    \"ID\": \"a291843e7fead4c5\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DISPLAY004\",\n                    \"Description\": \"Local Industrial\",\n                    \"Fee\": 250,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:36:50\",\n                    \"OrderID\": \"4\"\n                },\n                {\n                    \"ID\": \"d175c3961f3db3d6\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DISPLAY005\",\n                    \"Description\": \"Local Internal\",\n                    \"Fee\": 150,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:38:42\",\n                    \"OrderID\": \"5\"\n                },\n                {\n                    \"ID\": \"3d8653eb49e32805\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Podcast\",\n                    \"Fee\": 10,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-07-25 08:03:38\",\n                    \"OrderID\": \"33\"\n                },\n                {\n                    \"ID\": \"77e9d90b7844d274\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Branded Content Internet Description\",\n                    \"Fee\": 250,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-13 17:37:41\",\n                    \"OrderID\": \"20\"\n                },\n                {\n                    \"ID\": \"56fbbb09d050bcfe\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Branded Content Radio Description\",\n                    \"Fee\": 150,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 18:40:49\",\n                    \"OrderID\": \"21\"\n                },\n                {\n                    \"ID\": \"cbd3d4c3d62626e8\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local All TV Description\",\n                    \"Fee\": 250,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 18:42:07\",\n                    \"OrderID\": \"22\"\n                },\n                {\n                    \"ID\": \"d4142cb00cd35a3d\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Branded Content Industrial Description\",\n                    \"Fee\": 150,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 18:44:44\",\n                    \"OrderID\": \"23\"\n                },\n                {\n                    \"ID\": \"316c796f99ee7514\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Branded Content Internal Description\",\n                    \"Fee\": 150,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 18:45:13\",\n                    \"OrderID\": \"24\"\n                },\n                {\n                    \"ID\": \"14b6db5f239abad3\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Commercial Internet/Social Description\",\n                    \"Fee\": 300,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 18:46:00\",\n                    \"OrderID\": \"26\"\n                },\n                {\n                    \"ID\": \"1b8665a51a69fdf1\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Commercial Radio Description\",\n                    \"Fee\": 175,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 18:46:38\",\n                    \"OrderID\": \"27\"\n                },\n                {\n                    \"ID\": \"065e4c7806ca462c\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Commercial All TVDescription\",\n                    \"Fee\": 300,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 18:47:27\",\n                    \"OrderID\": \"28\"\n                },\n                {\n                    \"ID\": \"d9c57a5508d0c1c5\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Industrial Commercial Description\",\n                    \"Fee\": 200,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 18:48:00\",\n                    \"OrderID\": \"30\"\n                },\n                {\n                    \"ID\": \"bc6b7d2c538e97ba\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Internal Commercial Description\",\n                    \"Fee\": 200,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 18:48:32\",\n                    \"OrderID\": \"29\"\n                },\n                {\n                    \"ID\": \"c882b7b4b371cfba\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Branded Content Combined\",\n                    \"Fee\": 325,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 18:50:00\",\n                    \"OrderID\": \"25\"\n                },\n                {\n                    \"ID\": \"527462d9f249b015\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Commercial All Broadcast Description\",\n                    \"Fee\": 350,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 18:54:29\",\n                    \"OrderID\": \"31\"\n                },\n                {\n                    \"ID\": \"141107486cc64e7b\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Commercial AMXT Description\",\n                    \"Fee\": 375,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 18:55:12\",\n                    \"OrderID\": \"32\"\n                },\n                {\n                    \"ID\": \"0bea3fa73f2f8636\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Promo Internet\",\n                    \"Fee\": 175,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:01:46\",\n                    \"OrderID\": \"6\"\n                },\n                {\n                    \"ID\": \"63e9b5840e6fe97b\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Promo Radio Description\",\n                    \"Fee\": 125,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:04:45\",\n                    \"OrderID\": \"7\"\n                },\n                {\n                    \"ID\": \"022af20321b42888\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Promo All TV Description\",\n                    \"Fee\": 200,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:06:18\",\n                    \"OrderID\": \"8\"\n                },\n                {\n                    \"ID\": \"9596db002f4b862b\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Promo Industrial Description\",\n                    \"Fee\": 250,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:06:49\",\n                    \"OrderID\": \"9\"\n                },\n                {\n                    \"ID\": \"a7154d951098414e\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Promo Internal Description\",\n                    \"Fee\": 150,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:07:28\",\n                    \"OrderID\": \"10\"\n                },\n                {\n                    \"ID\": \"8c3ab8b80b0e3a60\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Program Internet Description\",\n                    \"Fee\": 175,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:20:12\",\n                    \"OrderID\": \"13\"\n                },\n                {\n                    \"ID\": \"6f812bb9383c56a3\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Program Radio Description\",\n                    \"Fee\": 125,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:31:09\",\n                    \"OrderID\": \"14\"\n                },\n                {\n                    \"ID\": \"c4daea32f0f8653c\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Program All TV\",\n                    \"Fee\": 200,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:31:41\",\n                    \"OrderID\": \"15\"\n                },\n                {\n                    \"ID\": \"f339aba98c15d707\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Program Industrial\",\n                    \"Fee\": 250,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:32:15\",\n                    \"OrderID\": \"16\"\n                },\n                {\n                    \"ID\": \"fe98c16a1202423f\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Program Internal\",\n                    \"Fee\": 150,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:32:44\",\n                    \"OrderID\": \"17\"\n                },\n                {\n                    \"ID\": \"2d3399862aa81b5c\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DISPLAYR001\",\n                    \"Description\": \"Regional Internet/Social\",\n                    \"Fee\": 225,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:46:17\",\n                    \"OrderID\": \"34\"\n                },\n                {\n                    \"ID\": \"0f2395ab56b1f6a0\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DISPLAYR003\",\n                    \"Description\": \"Regional All TV/Streaming\",\n                    \"Fee\": 270,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:47:30\",\n                    \"OrderID\": \"36\"\n                },\n                {\n                    \"ID\": \"383a18e7a74bed97\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DISPLAYR002\",\n                    \"Description\": \"Regional Radio\",\n                    \"Fee\": 170,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:46:58\",\n                    \"OrderID\": \"35\"\n                },\n                {\n                    \"ID\": \"dcc0a1c5fad4017b\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DISPLAYR004\",\n                    \"Description\": \"Regional Industrial\",\n                    \"Fee\": 325,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:48:26\",\n                    \"OrderID\": \"37\"\n                },\n                {\n                    \"ID\": \"8060fc2ebff0014a\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DISPLAYR004\",\n                    \"Description\": \"Regional Internal\",\n                    \"Fee\": 150,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:49:03\",\n                    \"OrderID\": \"38\"\n                },\n                {\n                    \"ID\": \"82b04c10de913761\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"AMXTR\",\n                    \"Description\": \"Regional Promo AMXT\",\n                    \"Fee\": 475,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-01-31 09:27:48\",\n                    \"OrderID\": \"40\"\n                },\n                {\n                    \"ID\": \"c4fd87ffc5394573\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"BCASTR\",\n                    \"Description\": \"Regional All Broadcast\",\n                    \"Fee\": 290,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-01-31 09:26:31\",\n                    \"OrderID\": \"39\"\n                },\n                {\n                    \"ID\": \"319fee0f8c513822\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"BCASTR\",\n                    \"Description\": \"Regional Program All Broadcast\",\n                    \"Fee\": 290,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:59:17\",\n                    \"OrderID\": \"51\"\n                },\n                {\n                    \"ID\": \"85da6fc53b35ecf4\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"AMXTR\",\n                    \"Description\": \"Regional Program AMXT\",\n                    \"Fee\": 475,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 20:00:16\",\n                    \"OrderID\": \"52\"\n                },\n                {\n                    \"ID\": \"bd53e3f5f5b98716\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Regional Podcast\",\n                    \"Fee\": 20,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-07 15:54:33\",\n                    \"OrderID\": \"53\"\n                },\n                {\n                    \"ID\": \"129aa6ad60cc6bde\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Regional Promo Internet\",\n                    \"Fee\": 225,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:52:02\",\n                    \"OrderID\": \"41\"\n                },\n                {\n                    \"ID\": \"9dcbbb0d2c561dfc\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Regional Promo Radio\",\n                    \"Fee\": 170,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:52:35\",\n                    \"OrderID\": \"42\"\n                },\n                {\n                    \"ID\": \"f178f512e34a4bd4\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Regional Promo All TV\",\n                    \"Fee\": 270,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:53:03\",\n                    \"OrderID\": \"43\"\n                },\n                {\n                    \"ID\": \"9377948eb71629a8\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Regional Promo Industrial\",\n                    \"Fee\": 325,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:53:31\",\n                    \"OrderID\": \"44\"\n                },\n                {\n                    \"ID\": \"13c1b81bbbbcffcb\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Regional Promo Internal\",\n                    \"Fee\": 150,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:55:09\",\n                    \"OrderID\": \"45\"\n                },\n                {\n                    \"ID\": \"2725de3eccdcda32\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Regional Program Internet\",\n                    \"Fee\": 225,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:55:35\",\n                    \"OrderID\": \"46\"\n                },\n                {\n                    \"ID\": \"3feab1fa454d5ddf\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Regional Program Radio\",\n                    \"Fee\": 170,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:56:04\",\n                    \"OrderID\": \"47\"\n                },\n                {\n                    \"ID\": \"99c8011046f795f0\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Regional Program All TV\",\n                    \"Fee\": 270,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:56:35\",\n                    \"OrderID\": \"48\"\n                },\n                {\n                    \"ID\": \"4e00ea841d6f8e03\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Regional Program Industrial\",\n                    \"Fee\": 325,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:57:35\",\n                    \"OrderID\": \"49\"\n                },\n                {\n                    \"ID\": \"8223fb297b065f77\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Regional Program Internal\",\n                    \"Fee\": 150,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:58:23\",\n                    \"OrderID\": \"50\"\n                },\n                {\n                    \"ID\": \"e2ca3b7003fcea22\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Promo All Broadcast Description\",\n                    \"Fee\": 210,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-21 12:02:50\",\n                    \"OrderID\": \"11\"\n                },\n                {\n                    \"ID\": \"50e2418e4b1fe956\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Promo AMXT Description\",\n                    \"Fee\": 375,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-21 12:03:35\",\n                    \"OrderID\": \"12\"\n                },\n                {\n                    \"ID\": \"b6678540fa69f790\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Program All Broadcast Description\",\n                    \"Fee\": 210,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-21 12:10:31\",\n                    \"OrderID\": \"18\"\n                },\n                {\n                    \"ID\": \"06a31281bc276fd9\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Program AMXT Description\",\n                    \"Fee\": 375,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-21 12:11:02\",\n                    \"OrderID\": \"19\"\n                },\n                {\n                    \"ID\": \"174818b9aa214404\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Branded Content AMXT\",\n                    \"Fee\": 325,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-21 12:44:49\",\n                    \"OrderID\": \"1359\"\n                }\n            ],\n            \"Validity\": false\n        },\n        {\n            \"ID\": \"7c5edf91e7602217\",\n            \"AccountID\": \"e072a9105fd2f362\",\n            \"Name\": \"New\",\n            \"StartDate\": \"2025-09-08 00:00:00\",\n            \"EndDate\": \"2025-09-09 23:59:59\",\n            \"Type\": \"Code\",\n            \"Percentage\": 50,\n            \"TriggerValue\": \"TEST001\",\n            \"TriggerRates\": [\n                {\n                    \"ID\": \"168e4ca5cbfdee45\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"BCAST\",\n                    \"Description\": \"Local\",\n                    \"Fee\": 210,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-03-24 13:19:29\",\n                    \"OrderID\": \"1298\"\n                },\n                {\n                    \"ID\": \"05c7ac7bfa418642\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"AMXT\",\n                    \"Description\": \"Local\",\n                    \"Fee\": 375,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-03-24 15:13:40\",\n                    \"OrderID\": \"1299\"\n                },\n                {\n                    \"ID\": \"18da4f267427498f\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP001\",\n                    \"Description\": \"Local Internet/Social\",\n                    \"Fee\": 175,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-03-24 15:14:12\",\n                    \"OrderID\": \"1300\"\n                },\n                {\n                    \"ID\": \"8e65c0fc032ae6b6\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP002\",\n                    \"Description\": \"Local Radio\",\n                    \"Fee\": 125,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-03-24 15:14:38\",\n                    \"OrderID\": \"1301\"\n                },\n                {\n                    \"ID\": \"525a16ce6a8adfb2\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP008\",\n                    \"Description\": \"Regional Internet/Social\",\n                    \"Fee\": 225,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-03-24 15:15:02\",\n                    \"OrderID\": \"1302\"\n                },\n                {\n                    \"ID\": \"dbc96feb30519ec4\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP009\",\n                    \"Description\": \"Regional Radio\",\n                    \"Fee\": 170,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-03-24 15:15:25\",\n                    \"OrderID\": \"1303\"\n                },\n                {\n                    \"ID\": \"943a8ff88f11c636\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP014\",\n                    \"Description\": \"Yes\",\n                    \"Fee\": 129,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-03-24 15:15:54\",\n                    \"OrderID\": \"54\"\n                },\n                {\n                    \"ID\": \"07846b3f2e415d5c\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP015\",\n                    \"Description\": \"No\",\n                    \"Fee\": 49,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-03-24 15:16:21\",\n                    \"OrderID\": \"55\"\n                },\n                {\n                    \"ID\": \"07a62788ab0db03d\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DISPLAY001\",\n                    \"Description\": \"Local Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Internet/Social DescriptionLocal Inte\",\n                    \"Fee\": 125,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:22:53\",\n                    \"OrderID\": \"1\"\n                },\n                {\n                    \"ID\": \"cf4b33d48a8310f9\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DISPLAY002\",\n                    \"Description\": \"Distributed over-the-air or via satellite. *Does not include internet radio.*\",\n                    \"Fee\": 125,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:32:34\",\n                    \"OrderID\": \"2\"\n                },\n                {\n                    \"ID\": \"b44cb84fb95e7964\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DISPLAY003\",\n                    \"Description\": \"Local All TV/Streaming\",\n                    \"Fee\": 200,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:34:12\",\n                    \"OrderID\": \"3\"\n                },\n                {\n                    \"ID\": \"a291843e7fead4c5\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DISPLAY004\",\n                    \"Description\": \"Local Industrial\",\n                    \"Fee\": 250,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:36:50\",\n                    \"OrderID\": \"4\"\n                },\n                {\n                    \"ID\": \"d175c3961f3db3d6\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DISPLAY005\",\n                    \"Description\": \"Local Internal\",\n                    \"Fee\": 150,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:38:42\",\n                    \"OrderID\": \"5\"\n                },\n                {\n                    \"ID\": \"3d8653eb49e32805\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Podcast\",\n                    \"Fee\": 10,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-07-25 08:03:38\",\n                    \"OrderID\": \"33\"\n                },\n                {\n                    \"ID\": \"77e9d90b7844d274\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Branded Content Internet Description\",\n                    \"Fee\": 250,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-13 17:37:41\",\n                    \"OrderID\": \"20\"\n                },\n                {\n                    \"ID\": \"56fbbb09d050bcfe\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Branded Content Radio Description\",\n                    \"Fee\": 150,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 18:40:49\",\n                    \"OrderID\": \"21\"\n                },\n                {\n                    \"ID\": \"cbd3d4c3d62626e8\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local All TV Description\",\n                    \"Fee\": 250,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 18:42:07\",\n                    \"OrderID\": \"22\"\n                },\n                {\n                    \"ID\": \"d4142cb00cd35a3d\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Branded Content Industrial Description\",\n                    \"Fee\": 150,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 18:44:44\",\n                    \"OrderID\": \"23\"\n                },\n                {\n                    \"ID\": \"316c796f99ee7514\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Branded Content Internal Description\",\n                    \"Fee\": 150,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 18:45:13\",\n                    \"OrderID\": \"24\"\n                },\n                {\n                    \"ID\": \"14b6db5f239abad3\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Commercial Internet/Social Description\",\n                    \"Fee\": 300,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 18:46:00\",\n                    \"OrderID\": \"26\"\n                },\n                {\n                    \"ID\": \"1b8665a51a69fdf1\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Commercial Radio Description\",\n                    \"Fee\": 175,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 18:46:38\",\n                    \"OrderID\": \"27\"\n                },\n                {\n                    \"ID\": \"065e4c7806ca462c\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Commercial All TVDescription\",\n                    \"Fee\": 300,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 18:47:27\",\n                    \"OrderID\": \"28\"\n                },\n                {\n                    \"ID\": \"d9c57a5508d0c1c5\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Industrial Commercial Description\",\n                    \"Fee\": 200,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 18:48:00\",\n                    \"OrderID\": \"30\"\n                },\n                {\n                    \"ID\": \"bc6b7d2c538e97ba\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Internal Commercial Description\",\n                    \"Fee\": 200,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 18:48:32\",\n                    \"OrderID\": \"29\"\n                },\n                {\n                    \"ID\": \"c882b7b4b371cfba\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Branded Content Combined\",\n                    \"Fee\": 325,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 18:50:00\",\n                    \"OrderID\": \"25\"\n                },\n                {\n                    \"ID\": \"527462d9f249b015\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Commercial All Broadcast Description\",\n                    \"Fee\": 350,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 18:54:29\",\n                    \"OrderID\": \"31\"\n                },\n                {\n                    \"ID\": \"141107486cc64e7b\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Commercial AMXT Description\",\n                    \"Fee\": 375,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 18:55:12\",\n                    \"OrderID\": \"32\"\n                },\n                {\n                    \"ID\": \"0bea3fa73f2f8636\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Promo Internet\",\n                    \"Fee\": 175,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:01:46\",\n                    \"OrderID\": \"6\"\n                },\n                {\n                    \"ID\": \"63e9b5840e6fe97b\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Promo Radio Description\",\n                    \"Fee\": 125,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:04:45\",\n                    \"OrderID\": \"7\"\n                },\n                {\n                    \"ID\": \"022af20321b42888\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Promo All TV Description\",\n                    \"Fee\": 200,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:06:18\",\n                    \"OrderID\": \"8\"\n                },\n                {\n                    \"ID\": \"9596db002f4b862b\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Promo Industrial Description\",\n                    \"Fee\": 250,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:06:49\",\n                    \"OrderID\": \"9\"\n                },\n                {\n                    \"ID\": \"a7154d951098414e\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Promo Internal Description\",\n                    \"Fee\": 150,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:07:28\",\n                    \"OrderID\": \"10\"\n                },\n                {\n                    \"ID\": \"8c3ab8b80b0e3a60\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Program Internet Description\",\n                    \"Fee\": 175,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:20:12\",\n                    \"OrderID\": \"13\"\n                },\n                {\n                    \"ID\": \"6f812bb9383c56a3\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Program Radio Description\",\n                    \"Fee\": 125,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:31:09\",\n                    \"OrderID\": \"14\"\n                },\n                {\n                    \"ID\": \"c4daea32f0f8653c\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Program All TV\",\n                    \"Fee\": 200,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:31:41\",\n                    \"OrderID\": \"15\"\n                },\n                {\n                    \"ID\": \"f339aba98c15d707\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Program Industrial\",\n                    \"Fee\": 250,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:32:15\",\n                    \"OrderID\": \"16\"\n                },\n                {\n                    \"ID\": \"fe98c16a1202423f\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Program Internal\",\n                    \"Fee\": 150,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:32:44\",\n                    \"OrderID\": \"17\"\n                },\n                {\n                    \"ID\": \"2d3399862aa81b5c\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DISPLAYR001\",\n                    \"Description\": \"Regional Internet/Social\",\n                    \"Fee\": 225,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:46:17\",\n                    \"OrderID\": \"34\"\n                },\n                {\n                    \"ID\": \"0f2395ab56b1f6a0\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DISPLAYR003\",\n                    \"Description\": \"Regional All TV/Streaming\",\n                    \"Fee\": 270,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:47:30\",\n                    \"OrderID\": \"36\"\n                },\n                {\n                    \"ID\": \"383a18e7a74bed97\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DISPLAYR002\",\n                    \"Description\": \"Regional Radio\",\n                    \"Fee\": 170,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:46:58\",\n                    \"OrderID\": \"35\"\n                },\n                {\n                    \"ID\": \"dcc0a1c5fad4017b\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DISPLAYR004\",\n                    \"Description\": \"Regional Industrial\",\n                    \"Fee\": 325,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:48:26\",\n                    \"OrderID\": \"37\"\n                },\n                {\n                    \"ID\": \"8060fc2ebff0014a\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DISPLAYR004\",\n                    \"Description\": \"Regional Internal\",\n                    \"Fee\": 150,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2024-05-23 16:49:03\",\n                    \"OrderID\": \"38\"\n                },\n                {\n                    \"ID\": \"82b04c10de913761\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"AMXTR\",\n                    \"Description\": \"Regional Promo AMXT\",\n                    \"Fee\": 475,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-01-31 09:27:48\",\n                    \"OrderID\": \"40\"\n                },\n                {\n                    \"ID\": \"c4fd87ffc5394573\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"BCASTR\",\n                    \"Description\": \"Regional All Broadcast\",\n                    \"Fee\": 290,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-01-31 09:26:31\",\n                    \"OrderID\": \"39\"\n                },\n                {\n                    \"ID\": \"319fee0f8c513822\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"BCASTR\",\n                    \"Description\": \"Regional Program All Broadcast\",\n                    \"Fee\": 290,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:59:17\",\n                    \"OrderID\": \"51\"\n                },\n                {\n                    \"ID\": \"85da6fc53b35ecf4\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"AMXTR\",\n                    \"Description\": \"Regional Program AMXT\",\n                    \"Fee\": 475,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 20:00:16\",\n                    \"OrderID\": \"52\"\n                },\n                {\n                    \"ID\": \"bd53e3f5f5b98716\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Regional Podcast\",\n                    \"Fee\": 20,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-07 15:54:33\",\n                    \"OrderID\": \"53\"\n                },\n                {\n                    \"ID\": \"129aa6ad60cc6bde\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Regional Promo Internet\",\n                    \"Fee\": 225,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:52:02\",\n                    \"OrderID\": \"41\"\n                },\n                {\n                    \"ID\": \"9dcbbb0d2c561dfc\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Regional Promo Radio\",\n                    \"Fee\": 170,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:52:35\",\n                    \"OrderID\": \"42\"\n                },\n                {\n                    \"ID\": \"f178f512e34a4bd4\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Regional Promo All TV\",\n                    \"Fee\": 270,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:53:03\",\n                    \"OrderID\": \"43\"\n                },\n                {\n                    \"ID\": \"9377948eb71629a8\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Regional Promo Industrial\",\n                    \"Fee\": 325,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:53:31\",\n                    \"OrderID\": \"44\"\n                },\n                {\n                    \"ID\": \"13c1b81bbbbcffcb\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Regional Promo Internal\",\n                    \"Fee\": 150,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:55:09\",\n                    \"OrderID\": \"45\"\n                },\n                {\n                    \"ID\": \"2725de3eccdcda32\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Regional Program Internet\",\n                    \"Fee\": 225,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:55:35\",\n                    \"OrderID\": \"46\"\n                },\n                {\n                    \"ID\": \"3feab1fa454d5ddf\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Regional Program Radio\",\n                    \"Fee\": 170,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:56:04\",\n                    \"OrderID\": \"47\"\n                },\n                {\n                    \"ID\": \"99c8011046f795f0\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Regional Program All TV\",\n                    \"Fee\": 270,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:56:35\",\n                    \"OrderID\": \"48\"\n                },\n                {\n                    \"ID\": \"4e00ea841d6f8e03\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Regional Program Industrial\",\n                    \"Fee\": 325,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:57:35\",\n                    \"OrderID\": \"49\"\n                },\n                {\n                    \"ID\": \"8223fb297b065f77\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Regional Program Internal\",\n                    \"Fee\": 150,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-18 19:58:23\",\n                    \"OrderID\": \"50\"\n                },\n                {\n                    \"ID\": \"e2ca3b7003fcea22\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Promo All Broadcast Description\",\n                    \"Fee\": 210,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-21 12:02:50\",\n                    \"OrderID\": \"11\"\n                },\n                {\n                    \"ID\": \"50e2418e4b1fe956\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Promo AMXT Description\",\n                    \"Fee\": 375,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-21 12:03:35\",\n                    \"OrderID\": \"12\"\n                },\n                {\n                    \"ID\": \"b6678540fa69f790\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Program All Broadcast Description\",\n                    \"Fee\": 210,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-21 12:10:31\",\n                    \"OrderID\": \"18\"\n                },\n                {\n                    \"ID\": \"06a31281bc276fd9\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Program AMXT Description\",\n                    \"Fee\": 375,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-21 12:11:02\",\n                    \"OrderID\": \"19\"\n                },\n                {\n                    \"ID\": \"174818b9aa214404\",\n                    \"Style\": \"Drop\",\n                    \"Code\": \"DRP\",\n                    \"Description\": \"Local Branded Content AMXT\",\n                    \"Fee\": 325,\n                    \"FeeWithTax\": 0,\n                    \"DatetimeStamp\": \"2025-08-21 12:44:49\",\n                    \"OrderID\": \"1359\"\n                }\n            ],\n            \"Validity\": true\n        }\n    ]\n}"}],"_postman_id":"8933569a-7efe-4069-a2c1-47db4a9423eb"}],"id":"641700b1-7255-4bf6-b44c-5712b514901a","_postman_id":"641700b1-7255-4bf6-b44c-5712b514901a","description":""},{"name":"Get Rates","item":[{"name":"Get Rates By Tags","id":"4692bb20-bcdf-457f-989a-eec9ab5bca26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"Style\": \"Drop\",\r\n    \"PricingGroupID\": \"923c8d9d948d6013\",\r\n    \"PricingGroupUsageID\": \"0ef87011d7454c73\",\r\n    \"currencycode\":\"USD\",\r\n    \"Tags\": [\r\n        \"Internet/Social\", \"radio\", \"industrial\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getratesbytags/{{HM_ServiceAPI_MemberToken}}","description":"<p>This endpoint returns one or multiple rates that applies, depending on the tags provided in the request.</p>\n","urlObject":{"path":["getratesbytags","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"disabled":true,"key":"Authentication","value":"{{HM_ServiceAPI_AuthToken}}"}],"variable":[]}},"response":[{"id":"f7d5f44c-6803-4372-97d4-4dadd16bdf7c","name":"Get Rates By Tags (JSON)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"Style\": \"Drop\",\r\n    \"PricingGroupID\": \"{{HM_ServiceAPI_GroupID_Local}}\",\r\n    \"currencycode\":\"AUD\",\r\n    \"Tags\": [\r\n        \"internal\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{HM_ServiceAPI_URL_Local}}/getratesbytags/{{HM_ServiceAPI_Token}}?Authentication={{HM_ServiceAPI_AuthToken}}","host":["{{HM_ServiceAPI_URL_Local}}"],"path":["getratesbytags","{{HM_ServiceAPI_Token}}"],"query":[{"key":"Authentication","value":"{{HM_ServiceAPI_AuthToken}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/10.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true},{"key":"Date","value":"Wed, 05 Jun 2024 02:57:10 GMT","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Rates\": [\n        {\n            \"ID\": \"e3d5c96d4eb8982b\",\n            \"Style\": \"Drop\",\n            \"Code\": \"DRP005\",\n            \"Title\": \"Promo/PSA / Program\",\n            \"Description\": \"Local Internal\",\n            \"Fee\": 150,\n            \"FeeWithTax\": 0,\n            \"DatetimeStamp\": \"2024-05-23 16:38:42\",\n            \"OrderID\": \"2002\",\n            \"CurrencyCode\": \"AUD\",\n            \"ParentRate\": {\n                \"ID\": \"b33dac4210a13a28\",\n                \"Code\": \"\",\n                \"Description\": \"Local\",\n                \"Fee\": 0,\n                \"FeeWithTax\": 0,\n                \"OrderID\": \"1995\",\n                \"DescriptionNotes\": \"Local\"\n            },\n            \"Tags\": \",9977,\"\n        }\n    ]\n}"}],"_postman_id":"4692bb20-bcdf-457f-989a-eec9ab5bca26"}],"id":"249081ee-f820-416c-b7b0-f07ac4aac6e1","_postman_id":"249081ee-f820-416c-b7b0-f07ac4aac6e1","description":""},{"name":"My Music","item":[{"name":"Search Invoice","event":[{"listen":"test","script":{"id":"b5ca7520-4b18-41d1-a7a4-0e9758017751","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Get Invoice Document\");"],"type":"text/javascript","packages":{}}}],"id":"3c33cf06-6503-4879-b707-4013728ab244","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"fromamount\":0,\r\n\t\"fromdate\":\"2020-01-08T22:19:27.95\",\r\n\t\"toamount\":1000,\r\n\t\"todate\":\"2026-05-16T22:19:27.95\",\r\n\t\"limit\":10,\r\n\t\"skip\":0,\r\n    \"ReturnInvoiceItems\": \"true\",\r\n    \"ReferenceLineItemType\": \"\",\r\n    \"Status\": \"Paid\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/searchinvoices/{{HM_ServiceAPI_MemberToken}}","description":"<p>Search invoices by amounts and dates.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FromAmount</td>\n<td>Optional, default value is 0. The lower invoice amount for which to filter by</td>\n</tr>\n<tr>\n<td>FromDate</td>\n<td>Optional, the lower due date for which to filter by</td>\n</tr>\n<tr>\n<td>ToAmount</td>\n<td>Optional, the upper invoice amount for which to filter by</td>\n</tr>\n<tr>\n<td>ToDate</td>\n<td>Optional, the upper due date for which to filter by</td>\n</tr>\n<tr>\n<td>Skip</td>\n<td>Optional, the number of results to skip</td>\n</tr>\n<tr>\n<td>Limit</td>\n<td>Required, the number of results to return</td>\n</tr>\n<tr>\n<td>ReferenceLineItemType</td>\n<td>Optional, the type of reference line item to be filtered; possible values are: Album, Track or Subscription. *In the case of invoices containing reference line items mixed with Tracks and Albums, then searching by either Track or Album will return them.</td>\n</tr>\n<tr>\n<td>Status</td>\n<td>Optional, the invoice status to return; possible values are: Pending, Void, Paid, Draft, Processing or Deleted</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["searchinvoices","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3c33cf06-6503-4879-b707-4013728ab244"},{"name":"Get Invoice","event":[{"listen":"test","script":{"id":"b5ca7520-4b18-41d1-a7a4-0e9758017751","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Pay Invoice\");"],"type":"text/javascript"}}],"id":"920ce959-1759-44bf-96a5-23c28b5edd37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"invoiceid\":\"{{HM_ServiceAPI_InvoiceID}}\",\r\n\t\"returntracks\":true,\r\n\t\"returnrates\": true,\r\n\t\"returndiscounts\": true\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p>Gets an invoice.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvoiceID</td>\n<td>Required, the unique ID of the invoice that is to be retrieved</td>\n</tr>\n<tr>\n<td>ReturnTracks</td>\n<td>Optional, default value is false. When true, the retrieved invoice will contain the tracks that make up the invoice</td>\n</tr>\n<tr>\n<td>ReturnRates</td>\n<td>Optional, default value is false. When true, the retrieved invoice will contain the rates that make up the invoice</td>\n</tr>\n<tr>\n<td>ReturnDiscounts</td>\n<td>Optional, default value is false. When true, the retrieved invoice will contain the discounts that make up the invoice</td>\n</tr>\n<tr>\n<td>ReturnSubscriptions</td>\n<td>Optional, default value is false. When true, the retrieved invoice will containg the subscription that make up the invoice.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<p>Invoices of any status can be retrieved.</p>\n","urlObject":{"path":["getinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"3a6a2bcf-4bf4-4947-a5a9-5b91a3a1014b","name":"Get Invoice (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":""}],"body":{"mode":"raw","raw":"{\r\n\t\"invoiceid\":\"\",\r\n\t\"returntracks\":true,\r\n\t\"returnrates\": true,\r\n\t\"returndiscounts\": true\r\n}"},"url":"{{HM_ServiceAPI_URL}}/getinvoice/HMP-WS.svc//getinvoice/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 18 Jun 2024 08:26:44 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"a6da8aef24de5be1\",\n        \"memberaccountid\": \"d3b0eae379e7e2d8\",\n        \"issuedate\": \"2024-06-18T18:25:34.76\",\n        \"duedate\": \"2024-06-18T18:25:35.353\",\n        \"UTCOffset\": 10,\n        \"discount\": 0,\n        \"totaltax\": 0,\n        \"subtotal\": 425,\n        \"total\": 425,\n        \"invoicelineitems\": [\n            {\n                \"amount\": 425,\n                \"description\": \"Track Purchase - Track Display Title 01 from Album 01\",\n                \"quantity\": 1,\n                \"amounttax\": 0,\n                \"track\": {\n                    \"trackid\": \"16ff21fe04dfec0c\",\n                    \"albumid\": \"227041b2179afa8f\",\n                    \"originalfilename\": \"Track01.wav\",\n                    \"filename\": \"Track01.wav\",\n                    \"title\": \"Track Title 01 from Album 01\",\n                    \"displaytitle\": \"Track Display Title 01 from Album 01\",\n                    \"tracknumber\": \"001\",\n                    \"duration\": 290,\n                    \"bitrate\": 290,\n                    \"frequency\": 0,\n                    \"description\": \"Track Description 01\"\n                },\n                \"rates\": [\n                    {\n                        \"id\": \"ec676789b1358444\",\n                        \"style\": 4,\n                        \"code\": \"DRP001\",\n                        \"title\": \"Promo/PSA / Program\",\n                        \"description\": \"Local Internet/Social\",\n                        \"fee\": 175,\n                        \"feewithtax\": 175\n                    },\n                    {\n                        \"id\": \"89b4e8664c662c05\",\n                        \"style\": 4,\n                        \"code\": \"DROP004\",\n                        \"title\": \"Promo/PSA / Program\",\n                        \"description\": \"Local Industrial\",\n                        \"fee\": 250,\n                        \"feewithtax\": 250\n                    }\n                ]\n            }\n        ],\n        \"invoicenumber\": 199,\n        \"status\": \"Pending\",\n        \"invoiceproduction\": {\n            \"client\": \"camila@harvestmedia.net\",\n            \"title\": \"Production Name\",\n            \"producer\": \"Producer Name\",\n            \"productiondate\": \"2020-01-08T00:00:00\",\n            \"length\": \"Total Production Length\",\n            \"po\": \"Purchase Order Number\"\n        },\n        \"currencycode\": \"AUD\",\n        \"billingdetails\": {\n            \"FullName\": \"\",\n            \"CompanyName\": \"\",\n            \"Address1\": \"\",\n            \"Address2\": \"\",\n            \"City\": \"\",\n            \"State\": \"\",\n            \"PostalCode\": \"\",\n            \"Country\": \"\"\n        },\n        \"blanketdiscount\": false\n    },\n    \"checkoutkeys\": {\n        \"ConnectedAccountID\": \"acct_1ONSQvITn8N7IvCC\",\n        \"AccountCurrency\": \"AUD\"\n    }\n}"}],"_postman_id":"920ce959-1759-44bf-96a5-23c28b5edd37"}],"id":"4a081243-e3da-45c8-b7cc-1789b249db91","_postman_id":"4a081243-e3da-45c8-b7cc-1789b249db91","description":""},{"name":"Custom Forms","item":[{"name":"Send Custom Form Email","id":"d7a16297-263d-4dd3-9351-79bcfbe4c3df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"ToEmail\": [\"{{toemail1}}\", \"{{toemail2}}\"],\r\n    \"BodyRequest\": \"{{bodyHTMLrequest}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/sendecomcustomformemail/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["sendecomcustomformemail","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"87ca9521-d24d-4328-b663-ac6cd45304a4","name":"Send Custom Form Email - ServiceToken","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"ToEmail\": [\"{{toemail1}}\", \"{{toemail2}}\"],\r\n    \"BodyRequest\": \"{{bodyHTMLrequest}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/sendecomcustomformemail/{{HM_ServiceAPI_Token}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 31 Jul 2025 04:31:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"Code\": \"OK\"\n}"},{"id":"ad2c234b-df40-4fc1-a280-07385dda1b1e","name":"Send Custom Form Email - MemberToken","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"ToEmail\": [\"{{toemail1}}\", \"{{toemail2}}\"],\r\n    \"BodyRequest\": \"{{bodyHTMLrequest}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/sendecomcustomformemail/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 31 Jul 2025 04:32:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"Code\": \"OK\"\n}"}],"_postman_id":"d7a16297-263d-4dd3-9351-79bcfbe4c3df"}],"id":"a5221b9e-f9ae-4927-b3b5-848095997112","description":"<p>The endpoint sendecomcustomformemail is able to receive:</p>\n<ul>\n<li><p>a list of recipient emails in \"ToEmail\"</p>\n</li>\n<li><p>a HTML request containing the form to be sent.</p>\n</li>\n</ul>\n<p>Along with the 'ToEmail' (which can be the admin account responsible for analyzing this form custom request), the logged-in member will also receive a notification that their form is being analyzed.</p>\n","_postman_id":"a5221b9e-f9ae-4927-b3b5-848095997112"},{"name":"Checkout","item":[{"name":"Pay Now","item":[{"name":"Pay Invoice","event":[{"listen":"test","script":{"id":"daa1a982-c9f6-47a9-a621-51b142d6ae5f","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Search Invoice\");"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"57a1b937-03dc-4784-a138-05861810825f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoicepayment\": {\r\n        \"invoiceid\": \"HM4628e0fa73666edb\",\r\n        \"amount\": 15.00,\r\n        \"contactname\": \"camila@harvestmedia.net\",\r\n        \"date\": \"2023-12-11T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"paymentreferencenumber\": \"\",\r\n        \"paymentstatus\": \"Processing\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/payinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p>Pays a pending state invoice.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Payment</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InvoiceID</td>\n<td>Required, the unique ID of the invoice that is moving to a paid status</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>Required, the amount of the associated invoice that was paid</td>\n</tr>\n<tr>\n<td>ContactName</td>\n<td>Required, the name to be associated against the payment</td>\n</tr>\n<tr>\n<td>Date</td>\n<td>Required, the date payment was made</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td>Required, possible values are; \"CreditCard\", or \"PayPal\" or \"SalesForce\"</td>\n</tr>\n<tr>\n<td>PaymentReferenceNumber</td>\n<td>Optional, this should only be set if payment is taken in advance of creating an invoice and should be the unique payment reference number returned from the payment gateway</td>\n</tr>\n<tr>\n<td>PaymentStatus</td>\n<td>Required, the unique payment reference number returned from the payment gateway</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Misc</strong></p>\n<p>There should be one of these for every unique item on the invoice.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SendEmail</td>\n<td>Optional, default value is false. If true an email will be sent with an associated PDF invoice attached to it</td>\n</tr>\n<tr>\n<td>BCCEmail</td>\n<td>Optional, email address to be BCC'd. This is not a comma-separated list of email addresses, but rather a single email address</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<p>On invoice creation success, the response will be the invoice that was paid. This will contain the relevant InvoiceID that will be needed to mark the invoice as paid or to retrieve it.</p>\n","urlObject":{"path":["payinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"246086b3-be26-4261-b066-17de6383d366","name":"Pay Invoice (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoicepayment\": {\r\n        \"invoiceid\": \"4628e0fa73666edb\",\r\n        \"amount\": 15.00,\r\n        \"contactname\": \"camila@harvestmedia.net\",\r\n        \"date\": \"2023-12-11T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"paymentreferencenumber\": \"\",\r\n        \"paymentstatus\": \"Processing\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/payinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Dec 2023 01:10:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"4628e0fa73666edb\",\n        \"memberaccountid\": \"92662dfe696a497f\",\n        \"issuedate\": \"2023-12-11T12:00:32.123\",\n        \"duedate\": \"2023-12-11T12:00:32.137\",\n        \"totaltax\": 0,\n        \"subtotal\": 15,\n        \"total\": 15,\n        \"invoicenumber\": 183,\n        \"status\": \"Processing\",\n        \"currencycode\": \"AUD\"\n    },\n    \"checkoutdetail\": {\n        \"clientsecret\": \"pi_3OLy0lIGENCfkRK204bsv1Hf_secret_v5erMRdpDoMKjrK2H0Jzs82QE\",\n        \"checkoutconfirmtype\": \"Payment\"\n    }\n}"}],"_postman_id":"57a1b937-03dc-4784-a138-05861810825f"}],"id":"8131c94c-cb90-4d51-af75-1fc86dbf0294","_postman_id":"8131c94c-cb90-4d51-af75-1fc86dbf0294","description":""},{"name":"Pay Later","item":[{"name":"Add Invoice","event":[{"listen":"test","script":{"id":"07931462-9b4b-4220-bf48-fe6cb6749f7e","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","var jsonData = null;","var jsonDataInvoiceID = \"\";","var jsonDataInvoiceTotal = \"\";","","if (responseBody.indexOf(\"<?xml\") >= 0) {","    jsonData = xml2Json(responseBody);","    jsonDataInvoiceID = jsonData.responseinvoice.invoice.id;","    jsonDataInvoiceTotal = jsonData.responseinvoice.invoice.total;","} else {","    jsonData = JSON.parse(responseBody)","    if (jsonData.invoice !== null) {","        jsonDataInvoiceID = jsonData.invoice.id;","        jsonDataInvoiceTotal = jsonData.invoice.total;","    }","}","","console.log(\"HM_ServiceAPI_InvoiceID set to \" + jsonDataInvoiceID);","","postman.setEnvironmentVariable(\"HM_ServiceAPI_InvoiceID\", jsonDataInvoiceID);","postman.setEnvironmentVariable(\"HM_ServiceAPI_InvoiceTotal\", jsonDataInvoiceTotal);","","postman.setNextRequest(\"Get Invoice\");"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"952cfe28-c891-45ac-b060-9e820c109142","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"b3dcaa7fee44b05d0aa221b11bce8b66\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"ec676789b1358444\",\r\n                    \"referencetype\":\"Rate\",\r\n                    \"referenceoption\":\"Internet/Social, radio, industrial\",\r\n                    \"referenceparentoptionid\":\"0ef87011d7454c73\"\r\n                }]\r\n            }\r\n        ],\r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\":\"Production Name\",\r\n\t\t\t\"productiondate\":\"2020-01-08T00:00:00\",\r\n\t\t\t\"producer\":\"Producer Name\",\r\n\t\t\t\"length\":\"Total Production Length\",\r\n\t\t\t\"po\":\"Purchase Order Number\"\r\n        },\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-12-15T23:59:59\",\r\n        \"issuedate\": \"2023-12-15T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}"},"url":"{{HM_ServiceAPI_URL}}/addinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p>Creates an invoice based on the associated invoice line items.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CurrencyCode</td>\n<td>Required, the currency for which payment will be taken in</td>\n</tr>\n<tr>\n<td>DueDate</td>\n<td>Required, the date the invoice is due. This should always be set to the current date</td>\n</tr>\n<tr>\n<td>IssueDate</td>\n<td>Optional, this date the invoice was generated. This should always be set to the current date</td>\n</tr>\n<tr>\n<td>DiscountID</td>\n<td>Optional, the ID of the applied discount. This should only be used when a discount applies to an entire invoice. *Not applicable for Subscriptions. See below reference line to get to know more.</td>\n</tr>\n<tr>\n<td>Discount</td>\n<td>Optional, the amount of the applied discount.</td>\n</tr>\n<tr>\n<td>SubTotal</td>\n<td>Optional, the total amount of all line items (excluding any applicable tax or discount amounts). *Not applicable for subscriptions, the SubTotal will be filled based on the Invoice Line Item ReferenceID (SubscriptionPlanID) in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>TotalTax</td>\n<td>Optional, the total tax amount of all line items (including any applicable tax reductions based on discount amounts). *Not applicable for subscriptions, the TotalTax will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>Total</td>\n<td>Optional, the total amount of all line items (including any applicable tax or discount amounts). *Not applicable for subscriptions, the Total sum will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td>Optional, possible values are; \"CreditCard\", \"PayPal\" or \"SalesForce\". This should only be set if payment is taken in advance of creating an invoice</td>\n</tr>\n<tr>\n<td>PaymentReferenceNumber</td>\n<td>Optional, this should only be set if payment is taken in advance of creating an invoice and should be the unique payment reference number returned from the payment gateway</td>\n</tr>\n<tr>\n<td>InvoiceLineItems</td>\n<td>Required, these are the items that make up in the invoice</td>\n</tr>\n<tr>\n<td>InvoiceProduction</td>\n<td>Required, this is the production that the invoice covers</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice Line Items</strong></p>\n<p>There should be one of these for every unique item on the invoice.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Quantity</td>\n<td>Required, the quantity of the line item</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>Optional, the amount of the line item (excluding any applicable tax or discount amounts). *Not applicable for subscriptions, the Line Item Amount will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>AmountTax</td>\n<td>Optional, the tax amount of the line item (including any applicable tax reductions based on discount amounts). *Not applicable for subscriptions, the item AmountTax will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>Required, the description of the line item. A good example to be used here would be the track display title.  <br />*For Subscriptions, empty is accepted.</td>\n</tr>\n<tr>\n<td>DiscountID</td>\n<td>Optional, the ID of the applied discount. This should only be used when a discount applies to this specific line item.  <br />*For subscriptions,  <br />- 1. If a plan has an automatic voucher discount (no voucher code needed from the member) it will be automatically applied to the invoice total and returned on the response.  <br />- 2. Now, to apply discount using a voucher code previously validated, refer below to Invoice Line Items References.</td>\n</tr>\n<tr>\n<td>Discount</td>\n<td>Optional, the amount of the applied discount</td>\n</tr>\n<tr>\n<td>InvoiceItemReferences</td>\n<td>Required, hese are the items that make up the line item</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice Line Items - References</strong></p>\n<p>Each unique item on the invoice will have 2 of these; one of type \"Track\" and another of type \"Rate\".</p>\n<p>For Subscription, it could either have only one reference line item of type \"Subscription\" or another type \"SubscriptionDiscount\" when voucher code applies.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceType</td>\n<td>Required, possible values are; \"Track\", \"Rate\", \"Subscription\", or \"SubscriptionDiscount\".</td>\n</tr>\n<tr>\n<td>ReferenceID</td>\n<td>Required, the ID to be used here will depend on the value selected for the ReferenceType. So it will either be a TrackID, RateID, SubscriptionID or SubscriptionDiscountID (this last one will be returned via ValidateCoupon()).</td>\n</tr>\n<tr>\n<td>ReferenceOption</td>\n<td>Optional. It's a string that refers to the rate tags used on GetRatesByTags(). i.e. \"Industrial,Radio\"</td>\n</tr>\n<tr>\n<td>ReferenceParentOptionId</td>\n<td>Optional. It's the PricingGroupUsageID, when applies.</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>Optional, the Value to be used here should depend on the value selected for the ReferenceType. For example, when \"Track\" then the value should be the track display title. When \"Rate\" then the value should be the code of that Rate.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Production</strong></p>\n<p>Optional. This is not an array and will only ever be a single production. This does not need to be provided and should only be used when a production is to be specified as part of the invoice creation. If a production is provided then there are specific fields (listed below) that need to be provided as part of the production object.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Client</td>\n<td>Required, this should be the email associated with against the invoice. If it is a guest purchase then it will be the guests email, otherwise it will be the members email</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>Required, the name of the production. This would typically be the name given to the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>ProductionDate</td>\n<td>Optional, the date of the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>Producer</td>\n<td>Optional, the producer associated with the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>Length</td>\n<td>Optional, the total length of the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>PO</td>\n<td>Optional, the purchase order number associated with the production as provided by the invoicee</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<p>On invoice creation success, the response will be the invoice that was created. This will contain the relevant InvoiceID that will be needed to mark the invoice as paid or to retrieve it.</p>\n","urlObject":{"path":["addinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"c6b04446-2b5a-4b30-a6be-ef4330546fe7","name":"Add Invoice (PRO w blanket)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":""}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"LicensingFor\":\"7ef73e68361d5167\",\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"16ff21fe04dfec0c\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"ec676789b1358444\",\r\n                    \"referencetype\":\"Rate\",\r\n                    \"referenceoption\":\"Internet/Social, radio, industrial\",\r\n                    \"referenceparentoptionid\":\"0ef87011d7454c73\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"e6b93746fb6e48d9\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"ec676789b1358444\",\r\n                    \"referencetype\":\"Rate\",\r\n                    \"referenceoption\":\"Internet/Social, radio, industrial\",\r\n                    \"referenceparentoptionid\":\"0ef87011d7454c73\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"0a20acb59ba703b0df63efd52d9d1fd0\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"ec676789b1358444\",\r\n                    \"referencetype\":\"Rate\",\r\n                    \"referenceoption\":\"Internet/Social, radio, industrial\",\r\n                    \"referenceparentoptionid\":\"0ef87011d7454c73\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"a7cafbf479f13964931a91b4c9bae962\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"ec676789b1358444\",\r\n                    \"referencetype\":\"Rate\",\r\n                    \"referenceoption\":\"Internet/Social, radio, industrial\",\r\n                    \"referenceparentoptionid\":\"0ef87011d7454c73\"\r\n                }]\r\n            }\r\n        ],\r\n        \r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\":\"Production Name\",\r\n\t\t\t\"productiondate\":\"2020-01-08T00:00:00\",\r\n\t\t\t\"producer\":\"Producer Name\",\r\n\t\t\t\"length\":\"Total Production Length\",\r\n\t\t\t\"po\":\"Purchase Order Number\"\r\n        },\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-12-15T23:59:59\",\r\n        \"issuedate\": \"2023-12-15T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/addinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 06 Jun 2024 03:28:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"66993e7ef8fc4f64\",\n        \"memberaccountid\": \"7172c8db5dcd6e02\",\n        \"issuedate\": \"2024-06-06T13:28:54.323\",\n        \"duedate\": \"2024-06-06T13:28:55.993\",\n        \"UTCOffset\": 10,\n        \"discount\": 480,\n        \"totaltax\": 0,\n        \"subtotal\": 1600,\n        \"total\": 1120,\n        \"invoicenumber\": 1654,\n        \"status\": \"Pending\",\n        \"currencycode\": \"AUD\",\n        \"billingdetails\": {},\n        \"blanketdiscount\": false\n    },\n    \"checkoutkeys\": {\n        \"StripeAPIKey\": \"pk_test_51MjXTGINFIsu1VM9coCRmwphHaoHWhsKVYzGOqNCwNg7EArDLkFlO9bMQIbB6leGxZ8kvrhfha6dTwy8NLxR0CIg00KKMvSCPT\",\n        \"ConnectedAccountID\": \"acct_1POAHTRNc4GHwYYw\",\n        \"AccountCurrency\": \"AUD\"\n    }\n}"},{"id":"85edf313-19de-4b1d-8fb9-b365b5e7e7e7","name":"Add Invoice (PRO no blanket)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"LicensingFor\":\"{{HM_ServiceAPI_LicensingFor_Professional}}\",\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"{{TrackID1}}\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"{{HM_Rate_Local_InternetSocial}}\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            }\r\n        ],\r\n        \r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\":\"Production Name\",\r\n\t\t\t\"productiondate\":\"2020-01-08T00:00:00\",\r\n\t\t\t\"producer\":\"Producer Name\",\r\n\t\t\t\"length\":\"Total Production Length\",\r\n\t\t\t\"po\":\"Purchase Order Number\"\r\n        },\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-12-15T23:59:59\",\r\n        \"issuedate\": \"2023-12-15T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/addinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 06 Jun 2024 03:28:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"66993e7ef8fc4f64\",\n        \"memberaccountid\": \"7172c8db5dcd6e02\",\n        \"issuedate\": \"2024-06-06T13:28:54.323\",\n        \"duedate\": \"2024-06-06T13:28:55.993\",\n        \"UTCOffset\": 10,\n        \"discount\": 480,\n        \"totaltax\": 0,\n        \"subtotal\": 1600,\n        \"total\": 1120,\n        \"invoicenumber\": 1654,\n        \"status\": \"Pending\",\n        \"currencycode\": \"AUD\",\n        \"billingdetails\": {},\n        \"blanketdiscount\": false\n    },\n    \"checkoutkeys\": {\n        \"StripeAPIKey\": \"pk_test_51MjXTGINFIsu1VM9coCRmwphHaoHWhsKVYzGOqNCwNg7EArDLkFlO9bMQIbB6leGxZ8kvrhfha6dTwy8NLxR0CIg00KKMvSCPT\",\n        \"ConnectedAccountID\": \"acct_1POAHTRNc4GHwYYw\",\n        \"AccountCurrency\": \"AUD\"\n    }\n}"},{"id":"2aa6e88f-bf15-488d-832d-f25da053b21a","name":"Add Invoice (PER w blanket)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"LicensingFor\":\"{{HM_ServiceAPI_LicensingFor_Personal}}\",\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"{{TrackID1}}\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"{{HM_Rate_Regional_Radio}}\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"{{TrackID2}}\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"{{HM_Rate_Regional_Radio}}\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"{{TrackID3}}\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"{{HM_Rate_Regional_Radio}}\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"{{TrackID4}}\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"{{HM_Rate_Regional_Radio}}\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            }\r\n        ],\r\n        \r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\":\"Production Name\",\r\n\t\t\t\"productiondate\":\"2020-01-08T00:00:00\",\r\n\t\t\t\"producer\":\"Producer Name\",\r\n\t\t\t\"length\":\"Total Production Length\",\r\n\t\t\t\"po\":\"Purchase Order Number\"\r\n        },\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-12-15T23:59:59\",\r\n        \"issuedate\": \"2023-12-15T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/addinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 06 Jun 2024 03:43:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"c580a29691600276\",\n        \"memberaccountid\": \"7172c8db5dcd6e02\",\n        \"issuedate\": \"2024-06-06T13:42:59.657\",\n        \"duedate\": \"2024-06-06T13:43:00.003\",\n        \"UTCOffset\": 10,\n        \"discount\": 39.2,\n        \"totaltax\": 0,\n        \"subtotal\": 196,\n        \"total\": 156.8,\n        \"invoicenumber\": 1655,\n        \"status\": \"Pending\",\n        \"currencycode\": \"AUD\",\n        \"billingdetails\": {},\n        \"blanketdiscount\": false\n    },\n    \"checkoutkeys\": {\n        \"StripeAPIKey\": \"pk_test_51MjXTGINFIsu1VM9coCRmwphHaoHWhsKVYzGOqNCwNg7EArDLkFlO9bMQIbB6leGxZ8kvrhfha6dTwy8NLxR0CIg00KKMvSCPT\",\n        \"ConnectedAccountID\": \"acct_1POAHTRNc4GHwYYw\",\n        \"AccountCurrency\": \"AUD\"\n    }\n}"},{"id":"f07ba3b8-313e-44b7-815c-9bf56797732c","name":"Add Invoice (PER no blanket)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"LicensingFor\":\"{{HM_ServiceAPI_LicensingFor_Personal}}\",\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"{{TrackID1}}\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"{{HM_Rate_Regional_Radio}}\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            }\r\n        ],\r\n        \r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\":\"Production Name\",\r\n\t\t\t\"productiondate\":\"2020-01-08T00:00:00\",\r\n\t\t\t\"producer\":\"Producer Name\",\r\n\t\t\t\"length\":\"Total Production Length\",\r\n\t\t\t\"po\":\"Purchase Order Number\"\r\n        },\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-12-15T23:59:59\",\r\n        \"issuedate\": \"2023-12-15T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/addinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 06 Jun 2024 03:45:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"8f2e53a2523ab03c\",\n        \"memberaccountid\": \"7172c8db5dcd6e02\",\n        \"issuedate\": \"2024-06-06T13:45:36.72\",\n        \"duedate\": \"2024-06-06T13:45:37.293\",\n        \"UTCOffset\": 10,\n        \"discount\": 0,\n        \"totaltax\": 0,\n        \"subtotal\": 49,\n        \"total\": 49,\n        \"invoicenumber\": 1656,\n        \"status\": \"Pending\",\n        \"currencycode\": \"AUD\",\n        \"billingdetails\": {},\n        \"blanketdiscount\": false\n    },\n    \"checkoutkeys\": {\n        \"StripeAPIKey\": \"pk_test_51MjXTGINFIsu1VM9coCRmwphHaoHWhsKVYzGOqNCwNg7EArDLkFlO9bMQIbB6leGxZ8kvrhfha6dTwy8NLxR0CIg00KKMvSCPT\",\n        \"ConnectedAccountID\": \"acct_1POAHTRNc4GHwYYw\",\n        \"AccountCurrency\": \"AUD\"\n    }\n}"},{"id":"142a0420-2f87-4ee6-adc2-9e7d6980da22","name":"Add Invoice (w PromoCode)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"b3dcaa7fee44b05d0aa221b11bce8b66\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"ec676789b1358444\",\r\n                    \"referencetype\":\"Rate\"\r\n                }, {\r\n                    \"referenceid\":\"207d9e094d264f78\",\r\n                    \"referencetype\":\"Discount\"\r\n                }]\r\n            }\r\n        ],\r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\":\"Production Name\",\r\n\t\t\t\"productiondate\":\"2020-01-08T00:00:00\",\r\n\t\t\t\"producer\":\"Producer Name\",\r\n\t\t\t\"length\":\"Total Production Length\",\r\n\t\t\t\"po\":\"Purchase Order Number\"\r\n        },\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-12-15T23:59:59\",\r\n        \"issuedate\": \"2023-12-15T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}"},"url":"{{HM_ServiceAPI_URL}}/addinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Jul 2025 04:33:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"6301a3ff036fe7cd\",\n        \"memberaccountid\": \"d3b0eae379e7e2d8\",\n        \"issuedate\": \"2025-07-10T14:33:25.87\",\n        \"duedate\": \"2025-07-10T14:33:25.947\",\n        \"UTCOffset\": 10,\n        \"discount\": 157.5,\n        \"totaltax\": 0,\n        \"subtotal\": 175,\n        \"total\": 17.5,\n        \"refundedamount\": 0,\n        \"invoicenumber\": 306,\n        \"status\": \"Pending\",\n        \"currencycode\": \"AUD\",\n        \"billingdetails\": {\n            \"FullName\": \"\",\n            \"CompanyName\": \"\",\n            \"Address1\": \"\",\n            \"Address2\": \"\",\n            \"City\": \"\",\n            \"State\": \"\",\n            \"PostalCode\": \"\",\n            \"Country\": \"\"\n        },\n        \"blanketdiscount\": false\n    },\n    \"checkoutkeys\": {\n        \"StripeAPIKey\": \"pk_live_51MjXTGINFIsu1VM9JVHrWU3kxWokmJKXrNX7mF7exPdByryYVziz2BnWXBNa8vFPbDVKab5KKbfWtIRAumtgwAWn00juQFO095\",\n        \"ConnectedAccountID\": \"acct_1ONSQvITn8N7IvCC\",\n        \"AccountCurrency\": \"AUD\"\n    }\n}"}],"_postman_id":"952cfe28-c891-45ac-b060-9e820c109142"}],"id":"0dad6ee7-b96f-4e07-92fb-e8e64d43fd1d","description":"<p>When an account offers a \"Pay Later\" option, it means that the client won't be charged via usual Stripe checkout, and a new invoice \"addinvoice/\" with\" PaymentType=SalesForce\" (in case they're integrated with SF) needs to be triggered from FLEX to the Harvest API.</p>\n","_postman_id":"0dad6ee7-b96f-4e07-92fb-e8e64d43fd1d"},{"name":"Validate Promo Code","id":"cac6860c-bc2d-4f70-8a78-e1423a868d57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"RateID\":\"0cccbaf4941574b9\",\r\n    \"PromoCode\":\"DEMO90\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/validatepromocode/{{HM_ServiceAPI_Token}}","urlObject":{"path":["validatepromocode","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"2924448a-4686-4159-8bb4-9c1f6fd4d2e8","name":"Validate Promo Code (JSON)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"RateID\":\"{{HM_Rate_Local_InternetSocial}}\",\r\n    \"PromoCode\":\"JUN10\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{HM_ServiceAPI_URL}}/validatepromocode/{{HM_ServiceAPI_Token}}?Authentication={{HM_ServiceAPI_AuthToken}}","host":["{{HM_ServiceAPI_URL}}"],"path":["validatepromocode","{{HM_ServiceAPI_Token}}"],"query":[{"key":"Authentication","value":"{{HM_ServiceAPI_AuthToken}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 06 Jun 2024 04:12:01 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"Result\": \"Valid\",\n    \"Discount\": {\n        \"ID\": \"ba2ddc954bed2aa4\",\n        \"Name\": \"PROMOTEST\",\n        \"StartDate\": \"6/6/2024 12:00:00 AM\",\n        \"Percentage\": 50,\n        \"TriggerCode\": \"PROMOTEST\",\n        \"UTCOffset\": 10\n    }\n}"}],"_postman_id":"cac6860c-bc2d-4f70-8a78-e1423a868d57"},{"name":"Update Invoice","id":"5fed6b2f-a264-441a-8524-6a11e43c6516","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"id\": \"3ed96cbee349345f\",\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2024-01-20T23:59:59\",\r\n        \"issuedate\": \"2024-01-20T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\",\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"23bd9bc58e66b9f5c755c3313943a2d2\",\r\n                    \"referencetype\":\"Track\"\r\n                },\r\n                {\r\n                    \"referenceid\":\"50c7165591e2efc7\",\r\n                    \"referencetype\":\"Rate\",\r\n                    \"referenceoption\":\"Internet/Social, radio, industrial\",\r\n                    \"referenceparentoptionid\":\"0ef87011d7454c73\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"ff22bfbc2c027f5ccc662bcd19e272b0\",\r\n                    \"referencetype\":\"Track\",\r\n                    \"referenceoption\":\"Internet/Social, radio, industrial\",\r\n                    \"referenceparentoptionid\":\"0ef87011d7454c73\"\r\n                },\r\n                {\r\n                    \"referenceid\":\"50c7165591e2efc7\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            }\r\n        ],\r\n        \"BillingDetails\": {\r\n            \"FullName\": \"cs-test-card-update\",\r\n            \"CompanyName\": \"company-update\",\r\n            \"Address1\": \"addr 1 update\",\r\n            \"Address2\": \"addr 2 update\",\r\n            \"City\": \"city update\",\r\n            \"State\": \"state update\",\r\n            \"PostalCode\": \"postal update\",\r\n            \"Country\": \"AU\"\r\n        },\r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\": \"CS-TEST-SUB\",\r\n            \"productiondate\": \"2023-08-15T00:00:00\",\r\n            \"producer\": \"CS TEST SUB\",\r\n            \"length\": \"TEST SUB Length\",\r\n            \"po\": \"Purchase Order Number SUB\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updateinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p>Updates an invoice based on the associated invoice line items.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CurrencyCode</td>\n<td>Required, the currency for which payment will be taken in</td>\n</tr>\n<tr>\n<td>DueDate</td>\n<td>Required, the date the invoice is due. This should always be set to the current date</td>\n</tr>\n<tr>\n<td>IssueDate</td>\n<td>Optional, this date the invoice was generated. This should always be set to the current date</td>\n</tr>\n<tr>\n<td>DiscountID</td>\n<td>Optional, the ID of the applied discount. This should only be used when a discount applies to an entire invoice. *Not applicable for Subscriptions. See below reference line to get to know more.</td>\n</tr>\n<tr>\n<td>Discount</td>\n<td>Optional, the amount of the applied discount</td>\n</tr>\n<tr>\n<td>SubTotal</td>\n<td>Optional, the total amount of all line items (excluding any applicable tax or discount amounts). *Not applicable for subscriptions, the SubTotal will be filled based on the Invoice Line Item ReferenceID (SubscriptionPlanID) in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>TotalTax</td>\n<td>Optional, the total tax amount of all line items (including any applicable tax reductions based on discount amounts). *Not applicable for subscriptions, the TotalTax will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>Total</td>\n<td>Optional, the total amount of all line items (including any applicable tax or discount amounts). *Not applicable for subscriptions, the Total sum will be calculated in the background and returned on the response</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td>Optional, case sensitive, possible values are; \"CreditCard\", or \"Paypal\". This should only be set if payment is taken in advance of creating an invoice</td>\n</tr>\n<tr>\n<td>PaymentReferenceNumber</td>\n<td>Optional, this should only be set if payment is taken in advance of creating an invoice and should be the unique payment reference number returned from the payment gateway</td>\n</tr>\n<tr>\n<td>InvoiceLineItems</td>\n<td>Required, these are the items that make up in the invoice</td>\n</tr>\n<tr>\n<td>InvoiceProduction</td>\n<td>Required, this is the production that the invoice covers</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice Line Items</strong></p>\n<p>There should be one of these for every unique item on the invoice.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Quantity</td>\n<td>Required, the quantity of the line item</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>Optional, the amount of the line item (excluding any applicable tax or discount amounts). *Not applicable for subscriptions, the Line Item Amount will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>AmountTax</td>\n<td>Optional, the tax amount of the line item (including any applicable tax reductions based on discount amounts). *Not applicable for subscriptions, the item AmountTax will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>Required, the description of the line item. A good example to be used here would be the track display title</td>\n</tr>\n<tr>\n<td>DiscountID</td>\n<td>Optional, the ID of the applied discount. This should only be used when a discount applies to this specific line item.  <br /><strong>*For subscriptions,</strong>  <br />- 1. If a plan has an automatic voucher discount (no voucher code needed from the member) it will be automatically applied to the invoice total and returned on the response.  <br />- 2. Now, to apply discount using a voucher code previously validated, refer below to Invoice Line Items References.</td>\n</tr>\n<tr>\n<td>Discount</td>\n<td>Optional, the amount of the applied discount</td>\n</tr>\n<tr>\n<td>InvoiceItemReferences</td>\n<td>Required, hese are the items that make up the line item</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice Line Items - References</strong></p>\n<p>Each unique item on the invoice will have 2 of these; one of type \"Track\" and another of type \"Rate\".</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceType</td>\n<td>Required, possible values are; \"Track\", \"Rate\", \"Subscription\", or \"SubscriptionDiscount\".</td>\n</tr>\n<tr>\n<td>ReferenceID</td>\n<td>Required, the ID to be used here will depend on the value selected for the ReferenceType. So it will either be a TrackID, RateID, SubscriptionID or SubscriptionDiscountID (this last one will be returned via ValidateCoupon()).</td>\n</tr>\n<tr>\n<td>ReferenceOption</td>\n<td>Optional. It's a string that refers to the rate tags used on GetRatesByTags(). i.e. \"Industrial,Radio\"</td>\n</tr>\n<tr>\n<td>ReferenceParentOptionId</td>\n<td>Optional. It's the PricingGroupUsageID, when applies.</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>Optional, the Value to be used here should depend on the value selected for the ReferenceType. For example, when \"Track\" then the value should be the track display title. When \"Rate\" then the value should be the code of that Rate</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Production</strong></p>\n<p>Optional. This is not an array and will only ever be a single production. This does not need to be provided and should only be used when a production is to be specified as part of the invoice creation. If a production is provided then there are specific fields (listed below) that need to be provided as part of the production object.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Client</td>\n<td>Required, this should be the email associated with against the invoice. If it is a guest purchase then it will be the guests email, otherwise it will be the members email</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>Required, the name of the production. This would typically be the name given to the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>ProductionDate</td>\n<td>Optional, the date of the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>Producer</td>\n<td>Optional, the producer associated with the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>Length</td>\n<td>Optional, the total length of the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>PO</td>\n<td>Optional, the purchase order number associated with the production as provided by the invoicee</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<p>On invoice creation success, the response will be the invoice that was created. This will contain the relevant InvoiceID that will be needed to mark the invoice as paid or to retrieve it.</p>\n","urlObject":{"path":["updateinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"1e94905c-8780-44c7-819c-b9b74daa7eb3","name":"Update Invoice (PRO w Drop)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"id\": \"{{InvoiceID}}\",\r\n        \"LicensingFor\":\"{{HM_ServiceAPI_LicensingFor_Professional}}\",\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"{{TrackID1}}\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"{{HM_Rate_Local_InternetSocial}}\",\r\n                    \"referencetype\":\"Rate\"\r\n                }, {\r\n                    \"referenceid\":\"{{HM_Rate_Local_InternetSocial}}\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"{{TrackID2}}\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"{{HM_Rate_Local_InternetSocial}}\",\r\n                    \"referencetype\":\"Rate\"\r\n                }, {\r\n                    \"referenceid\":\"{{HM_Rate_Local_InternetSocial}}\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"{{TrackID3}}\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"{{HM_Rate_Local_InternetSocial}}\",\r\n                    \"referencetype\":\"Rate\"\r\n                }, {\r\n                    \"referenceid\":\"{{HM_Rate_Local_InternetSocial}}\",\r\n                    \"referencetype\":\"Rate\"\r\n                }, {\r\n                    \"referenceid\":\"{{HM_Rate_Local_InternetSocial}}\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"{{TrackID4}}\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"{{HM_Rate_Local_InternetSocial}}\",\r\n                    \"referencetype\":\"Rate\"\r\n                }, {\r\n                    \"referenceid\":\"{{HM_Rate_Local_InternetSocial}}\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            }\r\n        ],\r\n        \r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\":\"Production Name\",\r\n\t\t\t\"productiondate\":\"2020-01-08T00:00:00\",\r\n\t\t\t\"producer\":\"Producer Name\",\r\n\t\t\t\"length\":\"Total Production Length\",\r\n\t\t\t\"po\":\"Purchase Order Number\"\r\n        },\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-12-15T23:59:59\",\r\n        \"issuedate\": \"2023-12-15T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updateinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 06 Jun 2024 03:33:37 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"66993e7ef8fc4f64\",\n        \"memberaccountid\": \"7172c8db5dcd6e02\",\n        \"issuedate\": \"2024-06-06T13:33:36.29\",\n        \"duedate\": \"2024-06-06T13:33:36.65\",\n        \"UTCOffset\": 10,\n        \"discount\": 480,\n        \"totaltax\": 0,\n        \"subtotal\": 1600,\n        \"total\": 1120,\n        \"invoicenumber\": 1654,\n        \"status\": \"Pending\",\n        \"currencycode\": \"AUD\",\n        \"blanketdiscount\": false\n    },\n    \"checkoutkeys\": {\n        \"StripeAPIKey\": \"pk_test_51MjXTGINFIsu1VM9coCRmwphHaoHWhsKVYzGOqNCwNg7EArDLkFlO9bMQIbB6leGxZ8kvrhfha6dTwy8NLxR0CIg00KKMvSCPT\",\n        \"ConnectedAccountID\": \"acct_1POAHTRNc4GHwYYw\",\n        \"AccountCurrency\": \"AUD\"\n    }\n}"},{"id":"6d8066ac-b61b-4c61-a5a6-9bc9a4de7b94","name":"Update Invoice (PER w Drop)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"id\": \"{{InvoiceID}}\",\r\n        \"LicensingFor\":\"{{HM_ServiceAPI_LicensingFor_Personal}}\",\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"{{TrackID1}}\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"{{HM_Rate_Regional_Radio}}\",\r\n                    \"referencetype\":\"Rate\"\r\n                }, {\r\n                    \"referenceid\":\"{{HM_Rate_Regional_Radio}}\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            }\r\n        ],\r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\":\"Production Name\",\r\n\t\t\t\"productiondate\":\"2020-01-08T00:00:00\",\r\n\t\t\t\"producer\":\"Producer Name\",\r\n\t\t\t\"length\":\"Total Production Length\",\r\n\t\t\t\"po\":\"Purchase Order Number\"\r\n        },\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-12-15T23:59:59\",\r\n        \"issuedate\": \"2023-12-15T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updateinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 06 Jun 2024 03:50:48 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"66993e7ef8fc4f64\",\n        \"memberaccountid\": \"7172c8db5dcd6e02\",\n        \"issuedate\": \"2024-06-06T13:50:48.263\",\n        \"duedate\": \"2024-06-06T13:50:48.553\",\n        \"UTCOffset\": 10,\n        \"discount\": 0,\n        \"totaltax\": 0,\n        \"subtotal\": 49,\n        \"total\": 49,\n        \"invoicenumber\": 1654,\n        \"status\": \"Pending\",\n        \"currencycode\": \"AUD\",\n        \"blanketdiscount\": false\n    },\n    \"checkoutkeys\": {\n        \"StripeAPIKey\": \"pk_test_51MjXTGINFIsu1VM9coCRmwphHaoHWhsKVYzGOqNCwNg7EArDLkFlO9bMQIbB6leGxZ8kvrhfha6dTwy8NLxR0CIg00KKMvSCPT\",\n        \"ConnectedAccountID\": \"acct_1POAHTRNc4GHwYYw\",\n        \"AccountCurrency\": \"AUD\"\n    }\n}"},{"id":"a277641b-bb6d-494b-b174-e58fa991e562","name":"Update Invoice (PRO with COUPON)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}","disabled":true},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"id\": \"64298d0f0e0aa5cf\",\r\n        \"LicensingFor\":\"b31e02b362421e6f\",\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"039f15ce5f1d5b6b\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"9409b022227aa90d\",\r\n                    \"referencetype\":\"Rate\"\r\n                }, {\r\n                    \"referenceid\":\"e3d5c96d4eb8982b\",\r\n                    \"referencetype\":\"Rate\"\r\n                }, {\r\n                    \"referenceid\":\"ba2ddc954bed2aa4\",\r\n                    \"referencetype\":\"Discount\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"aee17c071c893876\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"9409b022227aa90d\",\r\n                    \"referencetype\":\"Rate\"\r\n                }, {\r\n                    \"referenceid\":\"e3d5c96d4eb8982b\",\r\n                    \"referencetype\":\"Rate\"\r\n                }, {\r\n                    \"referenceid\":\"ba2ddc954bed2aa4\",\r\n                    \"referencetype\":\"Discount\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"a10abd77eaa542a1\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"9409b022227aa90d\",\r\n                    \"referencetype\":\"Rate\"\r\n                }, {\r\n                    \"referenceid\":\"e3d5c96d4eb8982b\",\r\n                    \"referencetype\":\"Rate\"\r\n                }, {\r\n                    \"referenceid\":\"ba2ddc954bed2aa4\",\r\n                    \"referencetype\":\"Discount\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"f652e54b33d734eb\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"9409b022227aa90d\",\r\n                    \"referencetype\":\"Rate\"\r\n                }, {\r\n                    \"referenceid\":\"e3d5c96d4eb8982b\",\r\n                    \"referencetype\":\"Rate\"\r\n                }, {\r\n                    \"referenceid\":\"ba2ddc954bed2aa4\",\r\n                    \"referencetype\":\"Discount\"\r\n                }]\r\n            }\r\n        ],\r\n        \r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\":\"Production Name\",\r\n\t\t\t\"productiondate\":\"2020-01-08T00:00:00\",\r\n\t\t\t\"producer\":\"Producer Name\",\r\n\t\t\t\"length\":\"Total Production Length\",\r\n\t\t\t\"po\":\"Purchase Order Number\"\r\n        },\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-12-15T23:59:59\",\r\n        \"issuedate\": \"2023-12-15T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updateinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 06 Jun 2024 04:26:25 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"64298d0f0e0aa5cf\",\n        \"memberaccountid\": \"7172c8db5dcd6e02\",\n        \"issuedate\": \"2024-06-06T14:26:25.89\",\n        \"duedate\": \"2024-06-06T14:26:25.95\",\n        \"UTCOffset\": 10,\n        \"discount\": 800,\n        \"totaltax\": 0,\n        \"subtotal\": 1600,\n        \"total\": 800,\n        \"invoicenumber\": 1660,\n        \"status\": \"Pending\",\n        \"currencycode\": \"AUD\",\n        \"blanketdiscount\": false\n    },\n    \"checkoutkeys\": {\n        \"StripeAPIKey\": \"pk_test_51MjXTGINFIsu1VM9coCRmwphHaoHWhsKVYzGOqNCwNg7EArDLkFlO9bMQIbB6leGxZ8kvrhfha6dTwy8NLxR0CIg00KKMvSCPT\",\n        \"ConnectedAccountID\": \"acct_1POAHTRNc4GHwYYw\",\n        \"AccountCurrency\": \"AUD\"\n    }\n}"},{"id":"56415e08-9a8e-4fca-a32a-1baf94af2474","name":"Update Invoice (PER with COUPON)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"id\": \"580777672371841f\",\r\n        \"LicensingFor\":\"{{HM_ServiceAPI_LicensingFor_Personal}}\",\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"{{TrackID1}}\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"{{HM_Rate_Local_InternetSocial}}\",\r\n                    \"referencetype\":\"Rate\"\r\n                }, {\r\n                    \"referenceid\":\"{{HM_Coupon10OFF}}\",\r\n                    \"referencetype\":\"Discount\"\r\n                }]\r\n            }\r\n        ],\r\n        \r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\":\"Production Name\",\r\n\t\t\t\"productiondate\":\"2020-01-08T00:00:00\",\r\n\t\t\t\"producer\":\"Producer Name\",\r\n\t\t\t\"length\":\"Total Production Length\",\r\n\t\t\t\"po\":\"Purchase Order Number\"\r\n        },\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-12-15T23:59:59\",\r\n        \"issuedate\": \"2023-12-15T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/updateinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 06 Jun 2024 04:27:32 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"66993e7ef8fc4f64\",\n        \"memberaccountid\": \"7172c8db5dcd6e02\",\n        \"issuedate\": \"2024-06-06T14:27:32.5\",\n        \"duedate\": \"2024-06-06T14:27:32.56\",\n        \"UTCOffset\": 10,\n        \"discount\": 9.8,\n        \"totaltax\": 0,\n        \"subtotal\": 49,\n        \"total\": 39.2,\n        \"invoicenumber\": 1654,\n        \"status\": \"Pending\",\n        \"currencycode\": \"AUD\",\n        \"blanketdiscount\": false\n    },\n    \"checkoutkeys\": {\n        \"StripeAPIKey\": \"pk_test_51MjXTGINFIsu1VM9coCRmwphHaoHWhsKVYzGOqNCwNg7EArDLkFlO9bMQIbB6leGxZ8kvrhfha6dTwy8NLxR0CIg00KKMvSCPT\",\n        \"ConnectedAccountID\": \"acct_1POAHTRNc4GHwYYw\",\n        \"AccountCurrency\": \"AUD\"\n    }\n}"}],"_postman_id":"5fed6b2f-a264-441a-8524-6a11e43c6516"},{"name":"Add Invoice","event":[{"listen":"test","script":{"id":"07931462-9b4b-4220-bf48-fe6cb6749f7e","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","var jsonData = null;","var jsonDataInvoiceID = \"\";","var jsonDataInvoiceTotal = \"\";","","if (responseBody.indexOf(\"<?xml\") >= 0) {","    jsonData = xml2Json(responseBody);","    jsonDataInvoiceID = jsonData.responseinvoice.invoice.id;","    jsonDataInvoiceTotal = jsonData.responseinvoice.invoice.total;","} else {","    jsonData = JSON.parse(responseBody)","    if (jsonData.invoice !== null) {","        jsonDataInvoiceID = jsonData.invoice.id;","        jsonDataInvoiceTotal = jsonData.invoice.total;","    }","}","","console.log(\"HM_ServiceAPI_InvoiceID set to \" + jsonDataInvoiceID);","","postman.setEnvironmentVariable(\"HM_ServiceAPI_InvoiceID\", jsonDataInvoiceID);","postman.setEnvironmentVariable(\"HM_ServiceAPI_InvoiceTotal\", jsonDataInvoiceTotal);","","postman.setNextRequest(\"Get Invoice\");"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"c75e1fd7-c9f2-4b5d-af5e-f08799de08fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"a21c9c37e30fb517eefefa288b14270e\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"e796192591975e02\",\r\n                    \"referencetype\":\"Rate\",\r\n                    \"referenceoption\":\"Internet/Social\",\r\n                    \"referenceparentoptionid\":\"0ef87011d7454c73\"\r\n                }]\r\n            }\r\n        ],\r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvest.music\",\r\n            \"title\":\"Production Name\",\r\n\t\t\t\"productiondate\":\"2020-01-08T00:00:00\",\r\n\t\t\t\"producer\":\"Producer Name\",\r\n\t\t\t\"length\":\"Total Production Length\",\r\n\t\t\t\"po\":\"Purchase Order Number\"\r\n        },\r\n        \"currencycode\": \"USD\",\r\n        \"duedate\": \"2023-12-15T23:59:59\",\r\n        \"issuedate\": \"2023-12-15T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}"},"url":"{{HM_ServiceAPI_URL}}/addinvoice/{{HM_ServiceAPI_MemberToken}}","description":"<p>Creates an invoice based on the associated invoice line items.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CurrencyCode</td>\n<td>Required, the currency for which payment will be taken in</td>\n</tr>\n<tr>\n<td>DueDate</td>\n<td>Required, the date the invoice is due. This should always be set to the current date</td>\n</tr>\n<tr>\n<td>IssueDate</td>\n<td>Optional, this date the invoice was generated. This should always be set to the current date</td>\n</tr>\n<tr>\n<td>DiscountID</td>\n<td>Optional, the ID of the applied discount. This should only be used when a discount applies to an entire invoice. *Not applicable for Subscriptions. See below reference line to get to know more.</td>\n</tr>\n<tr>\n<td>Discount</td>\n<td>Optional, the amount of the applied discount.</td>\n</tr>\n<tr>\n<td>SubTotal</td>\n<td>Optional, the total amount of all line items (excluding any applicable tax or discount amounts). *Not applicable for subscriptions, the SubTotal will be filled based on the Invoice Line Item ReferenceID (SubscriptionPlanID) in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>TotalTax</td>\n<td>Optional, the total tax amount of all line items (including any applicable tax reductions based on discount amounts). *Not applicable for subscriptions, the TotalTax will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>Total</td>\n<td>Optional, the total amount of all line items (including any applicable tax or discount amounts). *Not applicable for subscriptions, the Total sum will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td>Optional, possible values are; \"CreditCard\", or \"PayPal\". This should only be set if payment is taken in advance of creating an invoice</td>\n</tr>\n<tr>\n<td>PaymentReferenceNumber</td>\n<td>Optional, this should only be set if payment is taken in advance of creating an invoice and should be the unique payment reference number returned from the payment gateway</td>\n</tr>\n<tr>\n<td>InvoiceLineItems</td>\n<td>Required, these are the items that make up in the invoice</td>\n</tr>\n<tr>\n<td>InvoiceProduction</td>\n<td>Required, this is the production that the invoice covers</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice Line Items</strong></p>\n<p>There should be one of these for every unique item on the invoice.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Quantity</td>\n<td>Required, the quantity of the line item</td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>Optional, the amount of the line item (excluding any applicable tax or discount amounts). *Not applicable for subscriptions, the Line Item Amount will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>AmountTax</td>\n<td>Optional, the tax amount of the line item (including any applicable tax reductions based on discount amounts). *Not applicable for subscriptions, the item AmountTax will be calculated in the background and returned on the response.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>Required, the description of the line item. A good example to be used here would be the track display title.  <br />*For Subscriptions, empty is accepted.</td>\n</tr>\n<tr>\n<td>DiscountID</td>\n<td>Optional, the ID of the applied discount. This should only be used when a discount applies to this specific line item.  <br />*For subscriptions,  <br />- 1. If a plan has an automatic voucher discount (no voucher code needed from the member) it will be automatically applied to the invoice total and returned on the response.  <br />- 2. Now, to apply discount using a voucher code previously validated, refer below to Invoice Line Items References.</td>\n</tr>\n<tr>\n<td>Discount</td>\n<td>Optional, the amount of the applied discount</td>\n</tr>\n<tr>\n<td>InvoiceItemReferences</td>\n<td>Required, hese are the items that make up the line item</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Invoice Line Items - References</strong></p>\n<p>Each unique item on the invoice will have 2 of these; one of type \"Track\" and another of type \"Rate\".</p>\n<p>For Subscription, it could either have only one reference line item of type \"Subscription\" or another type \"SubscriptionDiscount\" when voucher code applies.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceType</td>\n<td>Required, possible values are; \"Track\", \"Rate\", \"Subscription\", or \"SubscriptionDiscount\".</td>\n</tr>\n<tr>\n<td>ReferenceID</td>\n<td>Required, the ID to be used here will depend on the value selected for the ReferenceType. So it will either be a TrackID, RateID, SubscriptionID or SubscriptionDiscountID (this last one will be returned via ValidateCoupon()).</td>\n</tr>\n<tr>\n<td>ReferenceOption</td>\n<td>Optional. It's a string that refers to the rate tags used on GetRatesByTags(). i.e. \"Industrial,Radio\"</td>\n</tr>\n<tr>\n<td>ReferenceParentOptionId</td>\n<td>Optional. It's the PricingGroupUsageID, when applies.</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>Optional, the Value to be used here should depend on the value selected for the ReferenceType. For example, when \"Track\" then the value should be the track display title. When \"Rate\" then the value should be the code of that Rate.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes: Production</strong></p>\n<p>Optional. This is not an array and will only ever be a single production. This does not need to be provided and should only be used when a production is to be specified as part of the invoice creation. If a production is provided then there are specific fields (listed below) that need to be provided as part of the production object.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Client</td>\n<td>Required, this should be the email associated with against the invoice. If it is a guest purchase then it will be the guests email, otherwise it will be the members email</td>\n</tr>\n<tr>\n<td>Title</td>\n<td>Required, the name of the production. This would typically be the name given to the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>ProductionDate</td>\n<td>Optional, the date of the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>Producer</td>\n<td>Optional, the producer associated with the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>Length</td>\n<td>Optional, the total length of the production as provided by the invoicee</td>\n</tr>\n<tr>\n<td>PO</td>\n<td>Optional, the purchase order number associated with the production as provided by the invoicee</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response Notes</strong></p>\n<p>On invoice creation success, the response will be the invoice that was created. This will contain the relevant InvoiceID that will be needed to mark the invoice as paid or to retrieve it.</p>\n","urlObject":{"path":["addinvoice","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"3da02a02-d5bf-484e-b9b7-09f1c5928cef","name":"Add Invoice (PRO w blanket)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":""}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"LicensingFor\":\"7ef73e68361d5167\",\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"16ff21fe04dfec0c\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"ec676789b1358444\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"e6b93746fb6e48d9\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"ec676789b1358444\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"0a20acb59ba703b0df63efd52d9d1fd0\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"ec676789b1358444\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"a7cafbf479f13964931a91b4c9bae962\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"ec676789b1358444\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            }\r\n        ],\r\n        \r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\":\"Production Name\",\r\n\t\t\t\"productiondate\":\"2020-01-08T00:00:00\",\r\n\t\t\t\"producer\":\"Producer Name\",\r\n\t\t\t\"length\":\"Total Production Length\",\r\n\t\t\t\"po\":\"Purchase Order Number\"\r\n        },\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-12-15T23:59:59\",\r\n        \"issuedate\": \"2023-12-15T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/addinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 06 Jun 2024 03:28:56 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"66993e7ef8fc4f64\",\n        \"memberaccountid\": \"7172c8db5dcd6e02\",\n        \"issuedate\": \"2024-06-06T13:28:54.323\",\n        \"duedate\": \"2024-06-06T13:28:55.993\",\n        \"UTCOffset\": 10,\n        \"discount\": 480,\n        \"totaltax\": 0,\n        \"subtotal\": 1600,\n        \"total\": 1120,\n        \"invoicenumber\": 1654,\n        \"status\": \"Pending\",\n        \"currencycode\": \"AUD\",\n        \"billingdetails\": {},\n        \"blanketdiscount\": false\n    },\n    \"checkoutkeys\": {\n        \"StripeAPIKey\": \"pk_test_51MjXTGINFIsu1VM9coCRmwphHaoHWhsKVYzGOqNCwNg7EArDLkFlO9bMQIbB6leGxZ8kvrhfha6dTwy8NLxR0CIg00KKMvSCPT\",\n        \"ConnectedAccountID\": \"acct_1POAHTRNc4GHwYYw\",\n        \"AccountCurrency\": \"AUD\"\n    }\n}"},{"id":"bfeac9a8-6363-4081-9090-cfc40be6cd1a","name":"Add Invoice (PRO no blanket)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"LicensingFor\":\"{{HM_ServiceAPI_LicensingFor_Professional}}\",\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"{{TrackID1}}\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"{{HM_Rate_Local_InternetSocial}}\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            }\r\n        ],\r\n        \r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\":\"Production Name\",\r\n\t\t\t\"productiondate\":\"2020-01-08T00:00:00\",\r\n\t\t\t\"producer\":\"Producer Name\",\r\n\t\t\t\"length\":\"Total Production Length\",\r\n\t\t\t\"po\":\"Purchase Order Number\"\r\n        },\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-12-15T23:59:59\",\r\n        \"issuedate\": \"2023-12-15T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/addinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 06 Jun 2024 03:28:56 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"66993e7ef8fc4f64\",\n        \"memberaccountid\": \"7172c8db5dcd6e02\",\n        \"issuedate\": \"2024-06-06T13:28:54.323\",\n        \"duedate\": \"2024-06-06T13:28:55.993\",\n        \"UTCOffset\": 10,\n        \"discount\": 480,\n        \"totaltax\": 0,\n        \"subtotal\": 1600,\n        \"total\": 1120,\n        \"invoicenumber\": 1654,\n        \"status\": \"Pending\",\n        \"currencycode\": \"AUD\",\n        \"billingdetails\": {},\n        \"blanketdiscount\": false\n    },\n    \"checkoutkeys\": {\n        \"StripeAPIKey\": \"pk_test_51MjXTGINFIsu1VM9coCRmwphHaoHWhsKVYzGOqNCwNg7EArDLkFlO9bMQIbB6leGxZ8kvrhfha6dTwy8NLxR0CIg00KKMvSCPT\",\n        \"ConnectedAccountID\": \"acct_1POAHTRNc4GHwYYw\",\n        \"AccountCurrency\": \"AUD\"\n    }\n}"},{"id":"bb562a98-7884-42c0-a9ac-5d29ce158a6b","name":"Add Invoice (PER w blanket)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"LicensingFor\":\"{{HM_ServiceAPI_LicensingFor_Personal}}\",\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"{{TrackID1}}\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"{{HM_Rate_Regional_Radio}}\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"{{TrackID2}}\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"{{HM_Rate_Regional_Radio}}\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"{{TrackID3}}\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"{{HM_Rate_Regional_Radio}}\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            },\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"{{TrackID4}}\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"{{HM_Rate_Regional_Radio}}\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            }\r\n        ],\r\n        \r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\":\"Production Name\",\r\n\t\t\t\"productiondate\":\"2020-01-08T00:00:00\",\r\n\t\t\t\"producer\":\"Producer Name\",\r\n\t\t\t\"length\":\"Total Production Length\",\r\n\t\t\t\"po\":\"Purchase Order Number\"\r\n        },\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-12-15T23:59:59\",\r\n        \"issuedate\": \"2023-12-15T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/addinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 06 Jun 2024 03:43:00 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"c580a29691600276\",\n        \"memberaccountid\": \"7172c8db5dcd6e02\",\n        \"issuedate\": \"2024-06-06T13:42:59.657\",\n        \"duedate\": \"2024-06-06T13:43:00.003\",\n        \"UTCOffset\": 10,\n        \"discount\": 39.2,\n        \"totaltax\": 0,\n        \"subtotal\": 196,\n        \"total\": 156.8,\n        \"invoicenumber\": 1655,\n        \"status\": \"Pending\",\n        \"currencycode\": \"AUD\",\n        \"billingdetails\": {},\n        \"blanketdiscount\": false\n    },\n    \"checkoutkeys\": {\n        \"StripeAPIKey\": \"pk_test_51MjXTGINFIsu1VM9coCRmwphHaoHWhsKVYzGOqNCwNg7EArDLkFlO9bMQIbB6leGxZ8kvrhfha6dTwy8NLxR0CIg00KKMvSCPT\",\n        \"ConnectedAccountID\": \"acct_1POAHTRNc4GHwYYw\",\n        \"AccountCurrency\": \"AUD\"\n    }\n}"},{"id":"fb4eb260-bdf0-484d-8e53-03b478325c9a","name":"Add Invoice (PER no blanket)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \"LicensingFor\":\"{{HM_ServiceAPI_LicensingFor_Personal}}\",\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"{{TrackID1}}\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"{{HM_Rate_Regional_Radio}}\",\r\n                    \"referencetype\":\"Rate\"\r\n                }]\r\n            }\r\n        ],\r\n        \r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\":\"Production Name\",\r\n\t\t\t\"productiondate\":\"2020-01-08T00:00:00\",\r\n\t\t\t\"producer\":\"Producer Name\",\r\n\t\t\t\"length\":\"Total Production Length\",\r\n\t\t\t\"po\":\"Purchase Order Number\"\r\n        },\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-12-15T23:59:59\",\r\n        \"issuedate\": \"2023-12-15T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/addinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 06 Jun 2024 03:45:37 GMT","enabled":true},{"key":"Content-Type","value":"application/json","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache, no-store","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Content-Encoding","value":"gzip","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.0","enabled":true},{"key":"Access-Control-Allow-Origin","value":"*","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"8f2e53a2523ab03c\",\n        \"memberaccountid\": \"7172c8db5dcd6e02\",\n        \"issuedate\": \"2024-06-06T13:45:36.72\",\n        \"duedate\": \"2024-06-06T13:45:37.293\",\n        \"UTCOffset\": 10,\n        \"discount\": 0,\n        \"totaltax\": 0,\n        \"subtotal\": 49,\n        \"total\": 49,\n        \"invoicenumber\": 1656,\n        \"status\": \"Pending\",\n        \"currencycode\": \"AUD\",\n        \"billingdetails\": {},\n        \"blanketdiscount\": false\n    },\n    \"checkoutkeys\": {\n        \"StripeAPIKey\": \"pk_test_51MjXTGINFIsu1VM9coCRmwphHaoHWhsKVYzGOqNCwNg7EArDLkFlO9bMQIbB6leGxZ8kvrhfha6dTwy8NLxR0CIg00KKMvSCPT\",\n        \"ConnectedAccountID\": \"acct_1POAHTRNc4GHwYYw\",\n        \"AccountCurrency\": \"AUD\"\n    }\n}"},{"id":"d8160733-68a9-4f26-815e-382d6948303a","name":"Add Invoice (w PromoCode)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"invoice\": {\r\n        \r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\":\"b3dcaa7fee44b05d0aa221b11bce8b66\",\r\n                    \"referencetype\":\"Track\"\r\n                }, {\r\n                    \"referenceid\":\"ec676789b1358444\",\r\n                    \"referencetype\":\"Rate\"\r\n                }, {\r\n                    \"referenceid\":\"207d9e094d264f78\",\r\n                    \"referencetype\":\"Discount\"\r\n                }]\r\n            }\r\n        ],\r\n        \"invoiceproduction\": {\r\n            \"client\": \"camila@harvestmedia.net\",\r\n            \"title\":\"Production Name\",\r\n\t\t\t\"productiondate\":\"2020-01-08T00:00:00\",\r\n\t\t\t\"producer\":\"Producer Name\",\r\n\t\t\t\"length\":\"Total Production Length\",\r\n\t\t\t\"po\":\"Purchase Order Number\"\r\n        },\r\n        \"currencycode\": \"AUD\",\r\n        \"duedate\": \"2023-12-15T23:59:59\",\r\n        \"issuedate\": \"2023-12-15T00:00:00\",\r\n        \"paymenttype\": \"CreditCard\"\r\n    }\r\n}"},"url":"{{HM_ServiceAPI_URL}}/addinvoice/{{HM_ServiceAPI_MemberToken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Jul 2025 04:33:26 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"invoice\": {\n        \"id\": \"6301a3ff036fe7cd\",\n        \"memberaccountid\": \"d3b0eae379e7e2d8\",\n        \"issuedate\": \"2025-07-10T14:33:25.87\",\n        \"duedate\": \"2025-07-10T14:33:25.947\",\n        \"UTCOffset\": 10,\n        \"discount\": 157.5,\n        \"totaltax\": 0,\n        \"subtotal\": 175,\n        \"total\": 17.5,\n        \"refundedamount\": 0,\n        \"invoicenumber\": 306,\n        \"status\": \"Pending\",\n        \"currencycode\": \"AUD\",\n        \"billingdetails\": {\n            \"FullName\": \"\",\n            \"CompanyName\": \"\",\n            \"Address1\": \"\",\n            \"Address2\": \"\",\n            \"City\": \"\",\n            \"State\": \"\",\n            \"PostalCode\": \"\",\n            \"Country\": \"\"\n        },\n        \"blanketdiscount\": false\n    },\n    \"checkoutkeys\": {\n        \"StripeAPIKey\": \"pk_live_51MjXTGINFIsu1VM9JVHrWU3kxWokmJKXrNX7mF7exPdByryYVziz2BnWXBNa8vFPbDVKab5KKbfWtIRAumtgwAWn00juQFO095\",\n        \"ConnectedAccountID\": \"acct_1ONSQvITn8N7IvCC\",\n        \"AccountCurrency\": \"AUD\"\n    }\n}"}],"_postman_id":"c75e1fd7-c9f2-4b5d-af5e-f08799de08fb"},{"name":"Get Invoice Download URL","event":[{"listen":"test","script":{"id":"0a513f1c-9154-434c-9899-236e75a70447","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","postman.setNextRequest(\"Get Invoice Document\");"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"73233924-73e3-4ded-9434-3bf1434623ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getinvoicedownloadurl/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_InvoiceID}}","description":"<p>Search invoices by amounts and dates.</p>\n<p><strong>Request Elements</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Status</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MemberToken</td>\n<td>String</td>\n<td>Mandatory</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Request Notes</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FromAmount</td>\n<td>Optional, default value is 0. The lower invoice amount for which to filter by</td>\n</tr>\n<tr>\n<td>FromDate</td>\n<td>Optional, the lower due date for which to filter by</td>\n</tr>\n<tr>\n<td>ToAmount</td>\n<td>Optional, the upper invoice amount for which to filter by</td>\n</tr>\n<tr>\n<td>ToDate</td>\n<td>Optional, the upper due date for which to filter by</td>\n</tr>\n<tr>\n<td>Skip</td>\n<td>Optional, the number of results to skip</td>\n</tr>\n<tr>\n<td>Limit</td>\n<td>Required, the number of results to return</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["getinvoicedownloadurl","{{HM_ServiceAPI_MemberToken}}","{{HM_ServiceAPI_InvoiceID}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"aaf5b542-215f-46dd-ade8-ce9c325b9335","name":"Get Invoice Download URL","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"url":"{{HM_ServiceAPI_URL}}/getinvoicedownloadurl/{{HM_ServiceAPI_MemberToken}}/{{HM_ServiceAPI_InvoiceID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 29 Feb 2024 05:34:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/8.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"Url\": \"https://d2zsljmk3mm9kv.cloudfront.net/CDN/downloads/invoices/e072a9105fd2f362/bd394687-3f7f-4c09-80e6-56a9393f6202/CAMILA_SCHEVENIN DA SILVA_HTN-INV137.pdf\"\n}"}],"_postman_id":"73233924-73e3-4ded-9434-3bf1434623ae"}],"id":"7044d739-0aab-451b-a3a6-060d86c7ab24","_postman_id":"7044d739-0aab-451b-a3a6-060d86c7ab24","description":""},{"name":"Guest Checkout","item":[{"name":"Get Automatic Discounts","item":[{"name":"Get Licensing For","id":"159e5a33-98b0-4073-9754-18cfde98bb28","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"url":"{{HM_ServiceAPI_URL}}/GetAutomaticDiscounts/{{HM_ServiceAPI_Token}}","urlObject":{"path":["GetAutomaticDiscounts","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"67c04941-a42d-4dd2-8af0-4dc482c9f706","name":"Get Licensing For","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"url":"{{HM_ServiceAPI_URL}}/GetAutomaticDiscounts/{{HM_ServiceAPI_Token}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Jan 2025 20:55:16 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"Discounts\": [\n        {\n            \"ID\": \"3460aac33d9d5974\",\n            \"AccountID\": \"e072a9105fd2f362\",\n            \"Name\": \"Personal\",\n            \"StartDate\": \"2024-06-11 11:05:43\",\n            \"Type\": \"Automatic\",\n            \"Percentage\": 20,\n            \"TriggerValue\": \"3.00\",\n            \"TriggerRates\": [],\n            \"ApplyToRates\": []\n        },\n        {\n            \"ID\": \"7ef73e68361d5167\",\n            \"AccountID\": \"e072a9105fd2f362\",\n            \"Name\": \"Professional\",\n            \"StartDate\": \"2024-06-11 00:00:00\",\n            \"Type\": \"Automatic\",\n            \"Percentage\": 30,\n            \"TriggerValue\": \"4.00\",\n            \"TriggerRates\": [],\n            \"ApplyToRates\": []\n        }\n    ]\n}"}],"_postman_id":"159e5a33-98b0-4073-9754-18cfde98bb28"}],"id":"f59c5927-709a-4a47-bb6e-92a79889b1d7","_postman_id":"f59c5927-709a-4a47-bb6e-92a79889b1d7","description":""},{"name":"Get Pricing Group","item":[{"name":"Get Pricing Groups","id":"68e8499c-6f22-4a68-8534-59951ce801a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"url":"{{HM_ServiceAPI_URL}}/GetPricingGroups/{{HM_ServiceAPI_MemberToken}}?currencycode={{Currency}}","urlObject":{"path":["GetPricingGroups","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"key":"currencycode","value":"{{Currency}}"}],"variable":[]}},"response":[{"id":"80cf2f47-63c0-4d8d-9d48-860a1262b3a5","name":"Get Pricing Groups","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"url":{"raw":"{{HM_ServiceAPI_URL}}/GetPricingGroups/{{HM_ServiceAPI_MemberToken}}?currencycode=USD","host":["{{HM_ServiceAPI_URL}}"],"path":["GetPricingGroups","{{HM_ServiceAPI_MemberToken}}"],"query":[{"key":"currencycode","value":"USD"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Jan 2025 20:57:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"PricingGroups\": [\n        {\n            \"ID\": \"a89b1466396f7c0a\",\n            \"Name\": \"Local\",\n            \"Description\": \"Local\",\n            \"OrderID\": \"1995\",\n            \"Usage\": [\n                {\n                    \"ID\": \"33dcc2c9e4c61682\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Branded Content\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                },\n                {\n                    \"ID\": \"1f670d6cbb8a9a1b\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Commercial/Ad\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                },\n                {\n                    \"ID\": \"7e08f8497f4d5497\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Podcast\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                },\n                {\n                    \"ID\": \"06ae6c0be3f621bf\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Program\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                },\n                {\n                    \"ID\": \"e67630c40ed47e94\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Promo/PSA\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                }\n            ],\n            \"Rates\": []\n        },\n        {\n            \"ID\": \"7489bf7337910b83\",\n            \"Name\": \"Regional\",\n            \"Description\": \"Regional\",\n            \"OrderID\": \"1996\",\n            \"Usage\": [\n                {\n                    \"ID\": \"33dcc2c9e4c61682\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Branded Content\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                },\n                {\n                    \"ID\": \"1f670d6cbb8a9a1b\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Commercial/Ad\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                },\n                {\n                    \"ID\": \"7e08f8497f4d5497\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Podcast\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                },\n                {\n                    \"ID\": \"06ae6c0be3f621bf\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Program\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                },\n                {\n                    \"ID\": \"e67630c40ed47e94\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Promo/PSA\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                }\n            ],\n            \"Rates\": []\n        },\n        {\n            \"ID\": \"c1ed8dd27b09165c\",\n            \"Name\": \"National/Global\",\n            \"Description\": \"National/Global\",\n            \"OrderID\": \"1997\",\n            \"Usage\": [],\n            \"Rates\": []\n        },\n        {\n            \"ID\": \"8470186c6c481489\",\n            \"Name\": \"WW Corporate\",\n            \"Description\": \"World Wide Corporate\",\n            \"OrderID\": \"1867\",\n            \"Usage\": [\n                {\n                    \"ID\": \"e76b42cba0034596\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Corporate\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                }\n            ],\n            \"Rates\": []\n        },\n        {\n            \"ID\": \"9a6c4e855df91aba\",\n            \"Name\": \"USA\",\n            \"Description\": \"\",\n            \"OrderID\": \"1868\",\n            \"Rates\": []\n        },\n        {\n            \"ID\": \"0bae631120111bd8\",\n            \"Name\": \"WW Digital\",\n            \"Description\": \"World Wide Digital\",\n            \"OrderID\": \"1873\",\n            \"Usage\": [\n                {\n                    \"ID\": \"565d45b7b896e3d3\",\n                    \"GroupID\": \"3aafb445566fbe34\",\n                    \"ItemName\": \"Digital\",\n                    \"Locked\": false,\n                    \"GroupItemStatus\": \"Active\"\n                }\n            ],\n            \"Rates\": []\n        }\n    ],\n    \"RateTags\": []\n}"}],"_postman_id":"68e8499c-6f22-4a68-8534-59951ce801a5"}],"id":"24f042d8-88c7-4cab-a9f8-e9758e2d9dcd","_postman_id":"24f042d8-88c7-4cab-a9f8-e9758e2d9dcd","description":""},{"name":"Get Rates","item":[{"name":"Get Rates By Tags","id":"955045b4-24ef-46cb-ba4d-45964062290f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"Style\": \"Drop\",\r\n    \"PricingGroupID\": \"\",\r\n    \"currencycode\":\"AUD\",\r\n    \"Tags\": [\r\n        \"non-monetized\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getratesbytags/{{HM_ServiceAPI_MemberToken}}","description":"<p>This endpoint returns one or multiple rates that applies, depending on the tags provided in the request.</p>\n","urlObject":{"path":["getratesbytags","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[{"disabled":true,"key":"Authentication","value":"{{HM_ServiceAPI_AuthToken}}"}],"variable":[]}},"response":[{"id":"f46a34bf-e62f-442b-8d1e-d18457bb5ea7","name":"Get Rates By Tags","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"Style\": \"Drop\",\r\n    \"PricingGroupID\": \"\",\r\n    \"currencycode\":\"AUD\",\r\n    \"Tags\": [\r\n        \"non-monetized\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{HM_ServiceAPI_URL}}/getratesbytags/{{HM_ServiceAPI_MemberToken}}?Authentication={{HM_ServiceAPI_AuthToken}}","host":["{{HM_ServiceAPI_URL}}"],"path":["getratesbytags","{{HM_ServiceAPI_MemberToken}}"],"query":[{"key":"Authentication","value":"{{HM_ServiceAPI_AuthToken}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Jan 2025 21:00:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"Rates\": [\n        {\n            \"ID\": \"94f27cf3983f8a73\",\n            \"Style\": \"Drop\",\n            \"Code\": \"DRP015\",\n            \"Title\": \"Non-Monetized\",\n            \"Description\": \"No\",\n            \"Fee\": 49,\n            \"FeeWithTax\": 49,\n            \"DatetimeStamp\": \"2024-05-24 21:41:38\",\n            \"OrderID\": \"14\",\n            \"CurrencyCode\": \"AUD\"\n        }\n    ]\n}"}],"_postman_id":"955045b4-24ef-46cb-ba4d-45964062290f"}],"id":"7913cea9-eff5-4c16-abc2-518f318adc0d","_postman_id":"7913cea9-eff5-4c16-abc2-518f318adc0d","description":""},{"name":"Preview Invoice","item":[{"name":"Preview Invoice","id":"c57cba2a-4141-4620-a0ff-c06ebd7be035","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n        \"CountryISO\":\"AU\",\r\n        \"LicensingFor\":\"3a4c960a62e75e62\",\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\": \"3d90090edb748a45\",\r\n                    \"referencetype\": \"Track\"\r\n                },\r\n                {\r\n                    \"referenceid\": \"8e65c0fc032ae6b6\",\r\n                    \"referencetype\": \"Rate\"\r\n                }\r\n                ]\r\n            }\r\n        ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/previewinvoice/{{HM_ServiceAPI_Token}}","urlObject":{"path":["previewinvoice","{{HM_ServiceAPI_Token}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[{"id":"f1c57f92-b87f-4814-a966-74ffb5ba1541","name":"Preview Invoice (JSON)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n        \"CountryISO\":\"AU\",\r\n        \"LicensingFor\":\"3a4c960a62e75e62\",\r\n        \"invoicelineitems\": [\r\n            {\r\n                \"quantity\": 1,\r\n                \"description\": \"\",\r\n                \"invoiceitemreferences\":[{\r\n                    \"referenceid\": \"3d90090edb748a45\",\r\n                    \"referencetype\": \"Track\"\r\n                },\r\n                {\r\n                    \"referenceid\": \"8e65c0fc032ae6b6\",\r\n                    \"referencetype\": \"Rate\"\r\n                }\r\n                ]\r\n            }\r\n        ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/previewinvoice/{{HM_ServiceAPI_Token}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 24 Mar 2025 05:50:40 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"issuedate\": \"2025-03-24T16:50:40.8357873+11:00\",\n    \"UTCOffset\": 11,\n    \"discount\": 0,\n    \"totaltax\": 0,\n    \"subtotal\": 49,\n    \"total\": 49,\n    \"blanketdiscount\": false\n}"}],"_postman_id":"c57cba2a-4141-4620-a0ff-c06ebd7be035"}],"id":"54ae9aad-9a66-41a9-a409-debc6071ef19","_postman_id":"54ae9aad-9a66-41a9-a409-debc6071ef19","description":""}],"id":"62085b02-84f7-4912-918c-4493b128e169","description":"<p>Guests will be able to see rates before login so they can decide ahead which product fits best their interests.</p>\n","_postman_id":"62085b02-84f7-4912-918c-4493b128e169"}],"id":"97c7aa4b-8d64-410b-adbd-e2edf5bb869e","description":"<p>To licensing multiple tracks with multiple rates.</p>\n<ol>\n<li><p>Handle members' session provides the ability to store flexible objects as needed by the front-end as it will not be possible to start invoicing when selecting tracks because the rate is not known yet.</p>\n<ol>\n<li><p>Use \"SetMemberSession\" to store selected tracks on the page or any other data that will be further needed. You need to provide self-generated GuidID that will be managed by your application.</p>\n</li>\n<li><p>Use \"GetMemberSession\" to retrieve the data stored by providing the GuidID</p>\n</li>\n<li><p>Use \"VoidMemberSession\" to cleanup the session</p>\n</li>\n</ol>\n</li>\n<li><p>Start Licensing - choose details of the license to get the final rate(s)</p>\n<ol>\n<li><p>Use \"GetLicensingFor\" to get options to who this license is for</p>\n</li>\n<li><p>Use \"GetPricingGroups\" to get details of</p>\n<ol>\n<li><p>where this rate applies at (i.e. for VH, Production Type)</p>\n</li>\n<li><p>the tags (i.e. for VH, Media Type)</p>\n</li>\n</ol>\n</li>\n</ol>\n</li>\n<li><p>When all options selected, use \"GetRatesByTags\" to informe the selections and, when applies, the ID of the response provided by \"GetLicensingFor\"</p>\n</li>\n<li><p>You'll be provided with a single OR multiple rates to be start an invoice for this licensing</p>\n</li>\n</ol>\n","_postman_id":"97c7aa4b-8d64-410b-adbd-e2edf5bb869e"}],"id":"6499c88f-967a-4508-b41b-a144124fbb3f","_postman_id":"6499c88f-967a-4508-b41b-a144124fbb3f","description":""},{"name":"Spotlight Page","item":[{"name":"Get Spotlight Playlists","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"0b2b1b5f-1ca3-4f34-82ef-f94cfdf511f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"false\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"FeaturedPlaylistType\": \"Tree,Styles,MemberGroups\",\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Playlist\": {\r\n                \"Playlists\": \"g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d,g56ed5590ha8c7c34d\",\r\n                \"OrOperation\": \"true\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Playlist\",\r\n            \"Sort_Predefined\": \"\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"5\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0b2b1b5f-1ca3-4f34-82ef-f94cfdf511f4"},{"name":"Get Spotlight Playlist","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"b5b6d431-79bd-451d-88d2-f5c277c8ab48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"false\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"FeaturedPlaylistType\": \"Tree,Styles,MemberGroups\",\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Playlist\": {\r\n                \"Playlists\": \"g56ed5590ha8c7c34d\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Playlist\",\r\n            \"Sort_Predefined\": \"Alphabetic_Asc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"1\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b5b6d431-79bd-451d-88d2-f5c277c8ab48"},{"name":"Get Spotlight Playlist Tracks","event":[{"listen":"test","script":{"id":"64394e88-1776-4974-872e-e1478d42f6c8","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"],"type":"text/javascript","packages":{}}}],"id":"02b3cd65-798e-455d-9fe2-b591798ac864","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"SaveSearchHistory\": \"false\",\r\n    \"SearchFilters\": {\r\n        \"SearchType\": \"Normal\",\r\n        \"IncludeInactive\": \"false\",\r\n        \"MainOnly\": \"false\",\r\n        \"AlternateOnly\": \"false\",\r\n        \"FeaturedLibrariesOnly\": null,\r\n        \"FeaturedPlaylistType\": \"Tree,Styles,MemberGroups\",\r\n        \"HasStems\": null,\r\n        \"NearestBPM\": \"false\",\r\n        \"NearestDuration\": \"false\",\r\n        \"NearestAlternate\": \"false\",\r\n        \"ParentSearchHistoryID\": \"\",\r\n        \"SearchTermBundle\": {\r\n            \"St_Playlist\": {\r\n                \"Playlists\": \"g56ed5590ha8c7c34d\",\r\n                \"Negative\": \"false\"\r\n            }\r\n        },\r\n        \"ResultView\": {\r\n            \"View\": \"Track\",\r\n            \"Sort_Predefined\": \"Custom_Asc\",\r\n            \"RankExpression\": \"\",\r\n            \"Skip\": \"0\",\r\n            \"Limit\": \"20\",\r\n            \"Facet_Library\": \"false\",\r\n            \"Facet_LibrarySkip\": \"0\",\r\n            \"Facet_LibraryLimit\": \"0\",\r\n            \"Facet_Album\": \"false\",\r\n            \"Facet_AlbumSkip\": \"0\",\r\n            \"Facet_AlbumLimit\": \"0\",\r\n            \"Facet_Style\": \"false\",\r\n            \"Facet_StyleSkip\": \"0\",\r\n            \"Facet_StyleLimit\": \"0\",\r\n            \"Facet_Category\": \"false\",\r\n            \"Facet_CategorySkip\": \"0\",\r\n            \"Facet_CategoryLimit\": \"0\",\r\n            \"Facet_Composer\": \"false\",\r\n            \"Facet_ComposerSkip\": \"0\",\r\n            \"Facet_ComposerLimit\": \"0\",\r\n            \"Facet_BPM\": \"false\",\r\n            \"Facet_Duration\": \"false\",\r\n            \"Facet_ReleaseYear\": \"false\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/cloudsearch/{{HM_ServiceAPI_MemberToken}}","urlObject":{"path":["cloudsearch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"02b3cd65-798e-455d-9fe2-b591798ac864"}],"id":"0fd8348c-62a9-4b3d-81c6-9595c24b7299","_postman_id":"0fd8348c-62a9-4b3d-81c6-9595c24b7299","description":""},{"name":"EDL Page","item":[{"name":"Get Upload URL","id":"0ba51015-3d66-422d-83ff-5d5ee28379f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"AssetType\": \"EditDecisionList\",\r\n    \"FileName\": \"file.edl\",\r\n    \"ContentType\": \"text/plain\",\r\n    \"ExpiresInSeconds\": \"120\",\r\n    \"ObjectId\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getpresigneduploadurl/{{HM_ServiceAPI_MemberToken}}","description":"<p><b>Reponse</b></p>\n<p>The response will contain two URLs.</p>\n<p><code>PresignedUploadUrl</code> is the URL to upload the file to. This should be used when PUT the actual file.</p>\n<p><code>ResourceUrl</code> is the URL where the resultant file, once uploaded, will reside.</p>\n<p><b>Allowed content-types are:</b></p>\n<ul>\n<li><p>“.edl”</p>\n<ul>\n<li><code>ContentType</code> == “text/plain“</li>\n</ul>\n</li>\n<li><p>“.csv”</p>\n<ul>\n<li><code>ContentType</code> == “text/csv“</li>\n</ul>\n</li>\n<li><p>“.xml”</p>\n<ul>\n<li><code>ContentType</code> == “application/xml“</li>\n</ul>\n</li>\n<li><p>“.json”</p>\n<ul>\n<li><code>ContentType</code> == “application/json</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["getpresigneduploadurl","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0ba51015-3d66-422d-83ff-5d5ee28379f8"},{"name":"Confirm Upload","id":"f81c0b9f-0a7b-4b35-9f13-b5b537507af5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n    \"AssetType\": \"EditDecisionList\",\r\n    \"FileUrl\": \"{getUpload.response.presignedUrl}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/confirmpresignedupload/{{HM_ServiceAPI_MemberToken}}","description":"<p>The FileUrl value is the presigned url you received from Get Upload Url.</p>\n<p>The response here will contain an ID value - ObjectID. You will need this in the next step.</p>\n","urlObject":{"path":["confirmpresignedupload","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f81c0b9f-0a7b-4b35-9f13-b5b537507af5"},{"name":"Get Cuesheet Matches","id":"b5689b3a-0b7b-44c5-9de2-d396b3a48ab2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{HM_ServiceAPI_AuthToken}}"}],"body":{"mode":"raw","raw":"{\r\n\t\"CuesheetID\":\"{confirmUpload.response.objectID}\",\r\n\t\"OutputEmail\": \"peter@harvest.net\",\r\n    \"OutputFileName\": \"matched_cuesheet.csv\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{HM_ServiceAPI_URL}}/getcuesheetmatch/{{HM_ServiceAPI_MemberToken}}","description":"<p>If the API detects that the request is going to take too long than the output CSV will be send via email to the user using the OutputEmail and OutputFileName. When this happens, the response will be:</p>\n<ul>\n<li><p>ResponseCode = OK</p>\n</li>\n<li><p>EmailSent = true</p>\n</li>\n</ul>\n<p>If the API detects it can process the request in a timely manner, it will respond with:</p>\n<ul>\n<li><p>ResponseCode = OK</p>\n</li>\n<li><p>EmailSent = false</p>\n</li>\n<li><p>FullUrl =</p>\n</li>\n</ul>\n<p>If something bad happens, then the response will contain:</p>\n<ul>\n<li><p>ResponseCode = Error</p>\n</li>\n<li><p>Error =</p>\n</li>\n</ul>\n","urlObject":{"path":["getcuesheetmatch","{{HM_ServiceAPI_MemberToken}}"],"host":["{{HM_ServiceAPI_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b5689b3a-0b7b-44c5-9de2-d396b3a48ab2"}],"id":"5624f48c-fa03-44e1-b933-b5ae7345bde2","_postman_id":"5624f48c-fa03-44e1-b933-b5ae7345bde2","description":""}]}