{"info":{"_postman_id":"30842815-6d34-405c-b71f-b0b87852d69d","name":"Canto API","description":"<html><head></head><body><p>The Canto API allows you to connect to your Canto Account via RESTful Web Service. You have the possibility to access, create and modify the content of your Canto Account.</p>\n<h1 id=\"general-notes\">General Notes</h1>\n<p>Canto's API uses the OAuth 2.0 protocol for authorization. Every API request must contain an access_token parameter with the OAuth 2.0 access token.</p>\n<p>This document covers the methods and techniques required to access, create and modify content (assets, folders and albums) in Canto through our RESTful API. The API assumes you have a user account for Canto. The document references the http call as</p>\n<p><a href=\"{{SITE_BASEURL}}\">{{SITE_BASEURL}}</a></p>\n<p>where your domain is the domain name (Canto account name) you currently use.</p>\n<h2 id=\"api-compatibilty\">API Compatibilty</h2>\n<p>Future API versions may add new endpoints or parameters. In order to keep older versions working, behaviors and return values of APIs with given parameters will not change from the currently documented behavior and return values. That being said, there are two important exceptions:</p>\n<ul>\n<li><p>Currently undocumented request parameters (whether they are actually ignored or not) may be given a specific meaning</p>\n</li>\n<li><p>objects returned in responses may contain additional keys in the future</p>\n</li>\n</ul>\n<p>Thus, if you want to be future-proof, you should avoid passing undocumented parameters (as they may cause a different behavior in the future), and should avoid strict checks on the keys of objects found in responses. The current version is v1. So each path will start with /api/v1. Once we update the API to a newer version, we will maintain /api/v1 as it is, and we will use “/api/v2” as the new version.</p>\n<h2 id=\"ssl-only\">SSL only</h2>\n<p>We require that all requests are done over SSL.</p>\n<h2 id=\"date-format\">Date format</h2>\n<p>All dates in the API are strings in the following format: <code>yyyyMMddHHmmssSSS</code></p>\n<p><strong>Example:</strong> <code>20150415063836418</code></p>\n<p>The sequence refers to the year, month, day, hour, minute, second and millisecond format.</p>\n<p><strong>Note:</strong> If the date format is not available, the response will be of the same format that’s in the original file.</p>\n<h2 id=\"access-token\">Access Token</h2>\n<p>By default, you need to use an access token or the server will reject your request (401 status code).</p>\n<p><em>Example:</em> To retrieve the current user info, you should retrieve it as the following</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl -v -H 'Authorization: Bearer '\n-H 'User-Agent: App  Canto Publishing ' “{{SITE_BASEURL}}/api/v1/user”\n\n</code></pre><h2 id=\"http-status-codes\">HTTP Status Codes</h2>\n<p>The Canto API uses standard HTTP response codes to indicate errors.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>Request processed successfully</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Parameters are invalid</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Access Token is invalid or missing</td>\n</tr>\n<tr>\n<td>403</td>\n<td>Access Token represent account has no permission to process the request</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Results (or page) not found. (will also return this in case of arbitrary content/album/folder ID)</td>\n</tr>\n<tr>\n<td>429</td>\n<td>Rate limit exceeded</td>\n</tr>\n<tr>\n<td>500</td>\n<td>Unexpected Error</td>\n</tr>\n<tr>\n<td>503</td>\n<td>Server unaccessible</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"general-properties\">General Properties</h2>\n<p>The following properties are used in Canto:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>scheme</td>\n<td>image, video, audio, document, presentation, and other.</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Id of the Folder, Album or Asset.</td>\n</tr>\n<tr>\n<td>created</td>\n<td>Original created time.</td>\n</tr>\n<tr>\n<td>time</td>\n<td>Last modified time</td>\n</tr>\n<tr>\n<td>owner</td>\n<td>The User Id of first the uploader</td>\n</tr>\n<tr>\n<td>ownerName</td>\n<td>The Username of the asset owner</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"pagination\">Pagination</h2>\n<p>For this API call there are 2 scenarios:</p>\n<ol>\n<li><p>Always return the complete set.</p>\n</li>\n<li><p>Return selected results.</p>\n</li>\n</ol>\n<p>In the first scenario, we provide “sortBy” and “sortDirection” parameters to sort the result.</p>\n<p>In the second scenario, we will provide 2 extra parameters including “limit” and “start” to follow pagination. The response will return a ‘found’ field, which states the number of assets found.</p>\n<p><strong>Example:</strong> If the “found” is 680, and we use the default value for “limit” which is 100, then there would be a total of 7 pages.</p>\n<p>To display the 1st page, and display files [0 to 99], you will use the Parameters: “?start=0&amp;limit=100”</p>\n<p>To display the 2nd page, and display files [100 to 199], you will use the Parameters: “?start=100&amp;limit=100”</p>\n<p>To display the 3rd page, and display files [200 to 299], you will use the Parameters: “?start=200&amp;limit=100”</p>\n<p>To display the 4th page, and display files [300 to 399], you will use the Parameters: “?start=300&amp;limit=100”</p>\n<p>To display the 5th page, and display files [400 to 499], you will use the Parameters: “?start=400&amp;limit=100”</p>\n<p>To display the 6th page, and display files [500 to 599], you will use the Parameters: “?start=500&amp;limit=100”</p>\n<p>To display the 7th page, and display files [600 to 679], you will use the Parameters: “?start=600&amp;limit=100”</p>\n<h2 id=\"api-rate-limit\">API Rate Limit</h2>\n<p>Rate limits are how many API calls you can make in a given time frame. If your call exceeds the pre-defined rate limit, you will run into a “429” http error-code. After which, you will need to wait until you can make another API call.</p>\n<h3 id=\"rate-limit-level\">Rate Limit Level</h3>\n<h4 id=\"customer-rate-level\">Customer Rate Level</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Level</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>level 1</td>\n<td>1000 times per minute</td>\n</tr>\n<tr>\n<td>level 2</td>\n<td>500 times per minute</td>\n</tr>\n<tr>\n<td>level 3</td>\n<td>300 times per minute</td>\n</tr>\n<tr>\n<td>level 4</td>\n<td>200 times per minute</td>\n</tr>\n<tr>\n<td>level 5</td>\n<td>50 times per minute</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"trial-user-rate-level\">Trial User Rate Level</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Level</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>level 1</td>\n<td>500 times per minute</td>\n</tr>\n<tr>\n<td>level 2</td>\n<td>300 times per minute</td>\n</tr>\n<tr>\n<td>level 3</td>\n<td>200 times per minute</td>\n</tr>\n<tr>\n<td>level 4</td>\n<td>100 times per minute</td>\n</tr>\n<tr>\n<td>level 5</td>\n<td>50 times per minute</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"api-call-rate-limits-based-on-rate-limit-levels\">API Call Rate Limits Based on Rate Limit Levels</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Level</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><p>For example, with “#44 Search under a folder” the rate limit is level 4, meaning that the API call will limit to 200 times per minute. If you exceed 200 times, you will receive a 429 error code.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"General Notes","slug":"general-notes"}],"owner":"10302480","collectionId":"30842815-6d34-405c-b71f-b0b87852d69d","publishedId":"TVYQ2ZpL","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2022-03-08T09:39:15.000Z"},"item":[{"name":"Best Practice","item":[{"name":"General Information","item":[],"id":"bdcb8632-b600-4322-b2a6-0714664e0367","description":"<h1 id=\"identifying-assets-content-id-and-scheme\">Identifying assets: content ID and scheme</h1>\n<p>Every asset in Canto is identified by a unique ID, the <strong>content ID</strong>. Additional to this, the asset is assigned to a specific <strong>scheme</strong>, dependent on its filetype. The schemes are: “image”, “video”, “audio”, “document”, “presentation”, and “other”. To work with assets in the API, e.g. request its details, change it, delete it, etc. you need to know its c<strong>ontent ID</strong> and <strong>scheme</strong>.<br />In many use cases it can be helpful to store the content ID and scheme in your integration / application.</p>\n<h1 id=\"structuring-assets-folders-and-albums\">Structuring assets: folders and albums</h1>\n<p>In Canto you can work with a hierarchical structure in which assets can be organised. The structure contains of <strong>folders</strong> and <strong>albums</strong>. <strong>Folders</strong> contain <strong>subfolders</strong> and <strong>albums</strong>; <strong>Albums</strong> contain assets. The last level of the structure is always an <strong>album</strong> to which assets are assigned to.</p>\n<p>An asset can never be assigned to a <strong>folder</strong>, always to an <strong>album</strong>. Every <strong>folder</strong> and <strong>album</strong> has an unambiguous ID.</p>\n<p>The <strong>folder ID</strong> or <strong>album ID</strong> is part of the JSON result set of the LibraryTree endpoints, like <a href=\"https://api.canto.com/#63f90a9c-ae14-489f-a6bf-0a7a0dab6d58\">Get full library tree view</a>.</p>\n<p><strong>Note:</strong> the ID of the folder / album changes as soon as it is moved within the folder tree.</p>\n","event":[{"listen":"prerequest","script":{"id":"45be91e6-5b2e-4f02-9b9a-9a3c389606c0","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4cc370ab-7191-47b0-bae9-7213c5a9be41","type":"text/javascript","exec":[""]}}],"_postman_id":"bdcb8632-b600-4322-b2a6-0714664e0367","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"30842815-6d34-405c-b71f-b0b87852d69d","id":"30842815-6d34-405c-b71f-b0b87852d69d","name":"Canto API","type":"collection"}}},{"name":"How can I authenticate? ","item":[],"id":"234de0e6-6984-4c2c-8d24-fd049570cfb4","description":"<p>The Canto API uses OAuth2 for authentication. Your <strong>first API Key</strong> - consisting of an App ID and App Secret - will be provided by your <strong>Implementation Manager</strong>. Once you have fully activated your API you can generate your own keys as outlined in the help article <a href=\"https://support.canto.com/hc/en-us/articles/23002535539601\">Generating API Keys</a>.</p>\n<p>You’ll always need an access token with the API endpoints. There are two possibilities to get the access token - both refer to the same request, but the handling is a bit different.</p>\n<h1 id=\"using-the-canto-oauth-page-and-authorization-code\">Using the Canto Oauth Page and authorization code</h1>\n<p>With this method you have to access the Oauth Page with your APP ID as parameter and enter your account URL, user and password. You will be logged in and have to allow the access for the used App ID:</p>\n<img src=\"https://yourcantoname.canto.com/direct/image/qo3a0l4gkp1j74o200r79s177c/zhExZMO7kBe3y_2m_CmiWgej0hk/original?content-type=image/png&amp;name=auth_page01.png\" height=\"500px\" />\n\n<p>After click on „allow“, you’ll receive an authorization code within the redirect URI:</p>\n<img src=\"https://yourcantoname.canto.com/direct/image/t5fqleflqd45p2s2p4553ogp4e/Q5rxCb5B1HXWUgUTIUxUK-3b-nQ/original?content-type=image/png&amp;name=auth_page02.png\" height=\"130px\" />\n\n<p>Using this code, you can now receive the access token as described <a href=\"##87551e1b-0c0b-453f-9bc2-8720014414dd\">here</a>.</p>\n<h1 id=\"using-the-client-credential-mode\">Using the client credential mode</h1>\n<p>Working with automated integrations it is quite uncomfortable to do a manual login process to retrieve an access token. With the client credential mode you are able to get the access token in an automated way.<br />App ID and App Secret are sent directly with the request, together with the scope you want to access the account with. You’ll get the access token in the json result.<br />The access token is valid for one month and has to be renewed after that time. There is no refresh token in the client credentials mode.</p>\n<p><strong>Note:</strong> The client credentials mode has to be activated in your Canto account.</p>\n<img src=\"https://yourcantoname.canto.com/direct/image/qgp6v3cjo53b70qelil7gll770/0IHtNXEW6i-ii1hr6Y7vVtz5ejs/original?content-type=image/png&amp;name=client_credentials_mode.png\" height=\"353px\" />","event":[{"listen":"prerequest","script":{"id":"68f675f8-9dfa-4388-a191-6d786ce54b52","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b421ff98-e921-4fa2-8e3f-4a40f786641d","type":"text/javascript","exec":[""]}}],"_postman_id":"234de0e6-6984-4c2c-8d24-fd049570cfb4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"30842815-6d34-405c-b71f-b0b87852d69d","id":"30842815-6d34-405c-b71f-b0b87852d69d","name":"Canto API","type":"collection"}}},{"name":"How can I access previews and original assets? ","item":[],"id":"2ab2f8ba-5dcd-4546-a142-ac7200765dfd","description":"<p>Probably the most common use case when integrating a third-party-system like a PIM or CMS system with Canto is the access of the assets within the third-party-system.</p>\n<p>Some systems only need thumbnails or previews to embed them in the web frontend of their system, others like to use previews for their websites or offer their users a download option of the Canto assets. All this is possible in different ways with the Canto API.</p>\n<h1 id=\"canto-cdn---media-delivery-cloud-mdc\">Canto CDN - Media Delivery Cloud (MDC)</h1>\n<p>The ideal way to publish Canto assets in the third-party-system is our CDN, the Media Delivery Cloud. On basis of AWS, the MDC allows you to publish your assets worldwide with a great scalability. It offers the possibility of on-the-fly modifications of the requested assets, like different formats (e.g. jpg, png, webp), cropping and scaling. E.g. you can publish different preview sizes of an image within your e-commerce platform or CMS system.<br />If configured, the MDC URLs are delivered as custom fields within the JSON response of search or detail endpoints, like <a href=\"#dc7523ac-7acf-4c80-be39-48b39b10bfb0\">Get content details</a> or <a href=\"https://api.canto.com/#36910bbd-c42e-485e-8d3e-7d903230066a\">Search / Filter</a>. There can be differences in the configuration and the customer specific details should be discussed with our Developer Support.</p>\n<p>The <a href=\"https://support.canto.com/en/support/solutions/articles/9000216754-mdc-documentation-for-developers\">Documentation for Developers</a> gives you details on how to use the MDC.</p>\n<p>If the MDC is not available for you, please contact your Account Manager.</p>\n<h1 id=\"preview--direct-urls\">Preview &amp; Direct URLs</h1>\n<p>There are several URLs that lead you to different scalings of assets. You’ll get these URLs with the JSON response of e.g. <a href=\"#dc7523ac-7acf-4c80-be39-48b39b10bfb0\">Get content details</a> or <a href=\"https://api.canto.com/#36910bbd-c42e-485e-8d3e-7d903230066a\">Search / Filter</a></p>\n<p>The property „url“ of the json response contains following preview possibilities.</p>\n<p><a href=\"#893917f5-9abf-4b3f-8eaf-76efb3c8f6e0\">„preview“</a> gives an image view of the asset in a specific size.<br />HighJPG gives a high resolution JPG of the image and \"PNG\" delivers a converted PNG image.<br />You always need to <a href=\"#234de0e6-6984-4c2c-8d24-fd049570cfb4\">authenticate</a> to receive these previews. In contrast to this, the <a href=\"#112d6ca4-f22c-4e13-b4b3-ff72bd999b35\">„directUrlPreview“</a> delivers your asset preview directly, without authentication.<br />The \"directURLPreview\" files are generated when the asset is uploaded to Canto in seven different sizes: 100, 240, 320, 500, 640, 800 and 2000 px. To receive the size, the last parameter of the URL has to be changed, e.g. \"{{SITE_BASEURL}}/preview/image/pvaopkuh6p67t06lk11n64et24/240\"</p>\n<p><strong>Note:</strong> Both preview URLs described above make a redirect to the Cloudfront URL of the image.</p>\n<p><strong>Note</strong>: You’ll always get an image preview as jpeg with this URLs, so if your asset is a video or a document, you’ll receive the first screen or first page as a jpeg image.</p>\n<h1 id=\"cloudfront-url\">Cloudfront URL</h1>\n<p>In some cases environments cannot handle redirected URLs. For this situation you can retrieve the <a href=\"#95723993-d896-4042-a3cd-2311b61dda1a\">Cloudfront Preview URL</a> without any redirection.</p>\n<p><strong>Note:</strong> The Cloudfront URL always points to a specific asset version. If a new version of the asset is uploaded, a new Cloudfront URL is generated.<br />The Cloudfront URL also has an expiration date.</p>\n<p>Due to the previously stated aspects, the Cloudfront URLs should only be used in exceptional cases. Please consider using the MDC (see above) for image publishing.</p>\n<h1 id=\"download-original-asset\">Download Original Asset</h1>\n<p>In some cases, users of a third-party-application should have the possibility to not only see a preview, but <a href=\"#eebfc139-590e-45ee-b4b5-4cfb4163a8c0\">download the original asset</a>, e.g. pdf documents. For this case, Canto offers the download URL within the <a href=\"#dc7523ac-7acf-4c80-be39-48b39b10bfb0\">content details</a>.</p>\n<p>For image files there are also three additional formats, that allows a jpg or png download (<a href=\"#e637862a-555a-4b4b-8f03-545bad6b9a59\">„PNG“</a>, <a href=\"#9a01444c-85f3-4bd1-aac3-5f969c530de4\">„LowJPG“</a> and <a href=\"#f1907132-4864-4518-9f02-47ee895f3f6c\">„HighJPG“</a>)</p>\n<p>To get specific download possibilities like a cropping or resizing, you can use the <a href=\"#fc47ae21-64e2-4f52-926e-c587640cda1b\">Advanced Download Options</a>.<br /><strong>Please note</strong>: This is not meant for automatic downloads but just for sporadic, user initiated requests.</p>\n<p>The Media Delivery Cloud (see above) also allows you to request original assets.</p>\n<h1 id=\"difference-between-direct-urls--media-delivery-cloud\">Difference between Direct URLs &amp; Media Delivery Cloud</h1>\n<p>Integrating the Direct URLs in your third-party-system gives you very limited possibilities to publish your assets. You can use seven pre-defined preview sizes that are delivered with a cross-domain redirect, which can cause issues within the third-party-system.<br />Beside that the Media Delivery Cloud is designed to publish assets in third-party-systems. It gives you a higher performance in publishing and more flexibility when it comes to formats, scaling and cropping. To find the best way of publishing assets within your integration, please contact our Support.</p>\n","event":[{"listen":"prerequest","script":{"id":"2d80c051-9211-48eb-9a90-7f4ec73f51ff","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1c837c12-be88-46c1-adf4-4f6b77e7ffba","type":"text/javascript","exec":[""]}}],"_postman_id":"2ab2f8ba-5dcd-4546-a142-ac7200765dfd","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"30842815-6d34-405c-b71f-b0b87852d69d","id":"30842815-6d34-405c-b71f-b0b87852d69d","name":"Canto API","type":"collection"}}},{"name":"How can I change metadata? ","item":[],"id":"3c7bc534-9016-4cb5-97a9-6877a618123d","description":"<p>It can be neccesary to update specific metadata fields in Canto, like article data from your PIM system. The Canto API allows you to batch edit metadata for the assets with one request. With the endpoint <a href=\"#527977d3-1c58-4d53-9c07-1cc87d3270d2\">Batch Edit Content Apply</a> you can change standard metadata as well as custom metadata fields.  </p>\n<p>To gather the available information for the assets you want to change, you can use the request: <a href=\"#44a2467a-4dfd-4b63-89e0-1f6fa27ec73f\">Batch Edit Content Get</a>.</p>\n","_postman_id":"3c7bc534-9016-4cb5-97a9-6877a618123d","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"30842815-6d34-405c-b71f-b0b87852d69d","id":"30842815-6d34-405c-b71f-b0b87852d69d","name":"Canto API","type":"collection"}}},{"name":"Applying the folder structure of the third-party-system in Canto","item":[],"id":"575ac47e-9d05-49b8-b45d-b43cd28324e5","description":"<p>With the folder and album endpoint you have the possibility to create folders and albums within your Canto account:  </p>\n<p>See the following endpoints.</p>\n<ul>\n<li><a href=\"#80c2282b-7805-497d-bcc8-0f78976f6f4d\">Create folder</a></li>\n<li><a href=\"#028c31e7-a84b-48ed-a3d4-452f616baf96\">Create album</a></li>\n</ul>\n<p><strong>Note:</strong> Assets can only be assigned to albums and not to folders. So, the last level of your structure always has to be an album. </p>\n<p>The assignment of an asset can be done with endpoint <a href=\"#91188af2-52f8-4d76-b7fd-4a7478f3b81d\">\"Assign Content to Album\"</a>. It is possible to batch assign assets here – you need just one request for more than one asset to assign to the same album. </p>\n","_postman_id":"575ac47e-9d05-49b8-b45d-b43cd28324e5","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"30842815-6d34-405c-b71f-b0b87852d69d","id":"30842815-6d34-405c-b71f-b0b87852d69d","name":"Canto API","type":"collection"}}},{"name":"Getting Canto‘s folder structure to apply to your third-party-system","item":[],"id":"17b5dfab-cef7-40d8-9856-beaa09ed6bd3","description":"<p>Using the endpoint <a href=\"#63f90a9c-ae14-489f-a6bf-0a7a0dab6d58\">\"Get full library tree view\"</a> of the API allows you to query the whole folder structure of your account or parts of it. </p>\n<p>To query a sub tree (just one specific part of the folder tree), you need to know the folder ID of the folder you want to start with. See endpoint <a href=\"#7c7d0d31-977c-4706-b30f-41bd429ab302\">\"Get sub tree view\"</a></p>\n","_postman_id":"17b5dfab-cef7-40d8-9856-beaa09ed6bd3","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"30842815-6d34-405c-b71f-b0b87852d69d","id":"30842815-6d34-405c-b71f-b0b87852d69d","name":"Canto API","type":"collection"}}},{"name":"How to build an Asset Picker","item":[],"id":"f364a78a-42bd-4478-a498-19781f5d698b","description":"<p>Depending on your third-party application an asset picker can be<br />implemented to browse or search for Canto assets within your application. The API offers all possibilities to browse the folder structure, display assets in a thumbnail view, search or filter for assets and finally link or download them within your application.</p>\n<p>As basis for an asset picker, Canto provides a piece of Javascript<br />code, the <a href=\"https://support.canto.com/hc/en-us/articles/23002580322449\">Universal Connector</a>, that you can use and adapt to your needs.</p>\n<p>In case the Universal Connector is not suitable for your application, our API provides all functionality to build your own picker:</p>\n<p><strong>Display folder structure</strong></p>\n<p>To display the folder structure from your Canto tenant, the API offers the endpoint <a href=\"https://api.canto.com/#63f90a9c-ae14-489f-a6bf-0a7a0dab6d58\">Get full library tree view</a>. In case, you just want to display a part of the structure, e.g. you just need all product images for your PIM system, you can also request <a href=\"https://api.canto.com/#7c7d0d31-977c-4706-b30f-41bd429ab302\">a part of the folder tree</a>. For this you need to know the folder ID you want to start from. To determine the folder ID, have a look at <a href=\"https://api.canto.com/#bdcb8632-b600-4322-b2a6-0714664e0367\">General Information</a>.</p>\n<p><strong>Search and filter for Assets</strong></p>\n<p>To allow the user to search for Canto assets in your application, please use the <a href=\"https://api.canto.com/#36910bbd-c42e-485e-8d3e-7d903230066a\">Search / Filter</a> endpoint. A search for \"keyword\" uses the Canto search over many metadata fields. But you can also decide to search in one specific metadata fields.</p>\n<p>For the case you're just showing a part of the folder structure you can also search just below this part, using the <a href=\"https://api.canto.com/#7f9bf2bb-ee8f-4065-8add-4c5f5810d30f\">Search under a folder</a></p>\n<p><strong>Display Thumbnail View</strong></p>\n<p>A thumbnail view can be realised using the <a href=\"https://api.canto.com/#112d6ca4-f22c-4e13-b4b3-ff72bd999b35\">DirectURLPreview</a> URLs that are part of the JSON result set, e.g. of a search. There are seven different scalings of a preview image. For a thumbnail view, it is the best to choose a small one to avoid long loading times. You could choose e.g. a 100px or 240px preview.</p>\n<p>Please find details about the preview images <a href=\"https://api.canto.com/#2ab2f8ba-5dcd-4546-a142-ac7200765dfd\">here</a>.</p>\n<p><strong>Preview Asset</strong></p>\n<p>Also for previewing assets, the <a href=\"https://api.canto.com/#112d6ca4-f22c-4e13-b4b3-ff72bd999b35\">DirectURLPreview</a> - explained above - can be used. You can choose the scaling out of the seven rendered sizes.</p>\n<p><strong>Download Asset / Link Asset</strong></p>\n<p>To link a Canto asset or offer a download to your third-party application, please choose the DirectURLOriginal or a higher resolution of the <a href=\"https://api.canto.com/#112d6ca4-f22c-4e13-b4b3-ff72bd999b35\">DirectURLPreview</a> files.</p>\n<p><strong>Using the Media Delivery Cloud with your Asset Picker</strong></p>\n<p>For MDC customers, the thumbnail, preview and download / link sizes of the images can flexibly be set with the -S parameter. Please always use the MDC URLs instead of the DirectURLs here.</p>\n","_postman_id":"f364a78a-42bd-4478-a498-19781f5d698b","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"30842815-6d34-405c-b71f-b0b87852d69d","id":"30842815-6d34-405c-b71f-b0b87852d69d","name":"Canto API","type":"collection"}}},{"name":"Do’s and Don‘ts","item":[],"id":"d9de81e1-d86c-491d-9a36-f342a022b9be","description":"<p>To get a performant integration you should focus on keeping the number of your requests as small as possible. Canto has a number of batch-calls that can be called to get info for several assets at one time. If possible, this should be preferred.</p>\n<p>If you request a huge number of assets it can be a benefit to use pagination, so the result can be displayed page by page with e.g., 100 assets per page. </p>\n","_postman_id":"d9de81e1-d86c-491d-9a36-f342a022b9be","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"30842815-6d34-405c-b71f-b0b87852d69d","id":"30842815-6d34-405c-b71f-b0b87852d69d","name":"Canto API","type":"collection"}}},{"name":"FAQ","item":[],"id":"c923f1d2-6ad4-416e-a9d0-4b8765d1bdd4","description":"<h3 id=\"are-there-any-limits-how-often-i-can-call-the-api\">Are there any limits how often I can call the API?</h3>\n<p>Yes, there are API rate limits for the most API calls. You’ll find the specific rate limit in the documentation of each call.\\</p>\n<hr />\n\n<h3 id=\"when-authenticating-i-always-get-the-error-message-wrong-app-id-but-im-sure-i-have-the-correct-id\">When authenticating I always get the error message „wrong APP ID“ but I’m sure I have the correct ID</h3>\n<p>Please check your OAuth URL. You always have to use the URL corresponding to the domain of your account.\\</p>\n<hr />\n\n<h3 id=\"i-have-to-update-the-value-of-a-custom-field-how-can-i-do-this\">I have to update the value of a custom field. How can I do this?</h3>\n<p>To edit content you have to use the endpoint <a href=\"#527977d3-1c58-4d53-9c07-1cc87d3270d2\">Batch Edit Content Apply</a>. You can edit all standard fields and also custom fields here. </p>\n","event":[{"listen":"prerequest","script":{"id":"41c14ea2-5d80-4c53-9e7e-7fd70d8cde02","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b5269825-b7ad-4ea6-a547-26f5127990ce","type":"text/javascript","exec":[""]}}],"_postman_id":"c923f1d2-6ad4-416e-a9d0-4b8765d1bdd4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"30842815-6d34-405c-b71f-b0b87852d69d","id":"30842815-6d34-405c-b71f-b0b87852d69d","name":"Canto API","type":"collection"}}},{"name":"Integration Guidelines","item":[{"name":"As few requests as possible","item":[],"id":"759b9d66-137f-4171-b08c-321a87e59571","description":"<h1 id=\"use-as-few-requests-as-possible\">Use as few requests as possible</h1>\n<p>To get a better performance, we recommend to use as few API requests as possible. There are some possibilities to combine requests:</p>\n<ol><li><p>Every metadata field you need can be called in one request. You don't need a single request for each metadata information.<br /></p></li><li><p>Request metadata for multiple assets at once.<br />You can use <a href=\"#c9483281-c667-4ec2-be64-c07632680f2d\">Batch Get Content Details </a>or request the <a href=\"#3e9800e9-3c6b-436d-82c6-52c8b2770672\">Get content of an album.</a></p></li><li><p>Set multiple attributes in one request instead of using one request per attribute.<br />If you want to set attributes for more than one asset use <a href=\"#527977d3-1c58-4d53-9c07-1cc87d3270d2\">Batch edit content </a>to combine assets in one request<br /></p></li><h1>Limit and Pagination</h1><p>Please also take the size of the requested JSON object into account. It is good to reduce the API requests, but the JSON should not have an exceeding size. Try to find a good middle road here by using the parameters \"limit\" and the pagination when requesting metadata from Canto.<br /><br /><br />You should not request more than <b>1000</b> data records at one time.<br />If your API request exceed <b>1000</b> items, you will receive a HTTP status code 400.</p></ol>","_postman_id":"759b9d66-137f-4171-b08c-321a87e59571","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"30842815-6d34-405c-b71f-b0b87852d69d","id":"30842815-6d34-405c-b71f-b0b87852d69d","name":"Canto API","type":"collection"}}},{"name":"Caching","item":[],"id":"325ffdc7-e06b-4e03-8498-a6340af608b7","description":"<h1 id=\"use-local-cache-if-possible\">Use local cache if possible</h1>\n<p>Caching information locally will reduce the traffic on our side and consequently the performance of your integration.</p>\n<p>Maybe there is some information, that doesn't change often or can be used from the last few requests. If you cache these responses locally, you can avoid requesting the Canto System too often.</p>\n","_postman_id":"325ffdc7-e06b-4e03-8498-a6340af608b7","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"30842815-6d34-405c-b71f-b0b87852d69d","id":"30842815-6d34-405c-b71f-b0b87852d69d","name":"Canto API","type":"collection"}}},{"name":"CDN URLs","item":[],"id":"acc4efa4-3531-43e3-8442-2d6c642f5b8b","description":"<h1 id=\"use-cdn-or-direct-urls\">Use CDN or direct URLs</h1>\n<p>In case you need to receive thumbnails, previews or renditions from the Canto System, the most performant way is to use the CDN (Cloudfront) URLs, like described in section <a href=\"#95723993-d896-4042-a3cd-2311b61dda1a\"> Obtain asset preview Cloudfront URL</a>. </p>\n<h2 id=\"when-are-cdn-urls-helpful\">When are CDN URLs helpful?</h2>\n<p>Nevertheless there are some aspects to consider before using the CDN URLs: </p>\n<ul>\n<li>The CDN URL has an expiration date</li>\n<li>In case the asset changes, the Cloudfront URL will still deliver the old version.</li>\n<li>For a new version, a new URL is generated</li>\n</ul>\n\n<h2 id=\"direct-urls\">Direct URLs</h2>\n<p>In case you need the same URL for longer time and have to keep the result current, please use the <a href=\"#112d6ca4-f22c-4e13-b4b3-ff72bd999b35\">Direct URLs</a>. You receive them every time with the asset details. These are Tenant-ULRs wich redirect to the specific Cloudfront URL.\nBecause of the redirect it is not as fast as using the the Cloudfront URL, but it also gives you a fast result.</p>\n","_postman_id":"acc4efa4-3531-43e3-8442-2d6c642f5b8b","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"30842815-6d34-405c-b71f-b0b87852d69d","id":"30842815-6d34-405c-b71f-b0b87852d69d","name":"Canto API","type":"collection"}}},{"name":"What is the best way to authenticate?","item":[],"id":"25fef459-f117-4058-9591-a80cad09689c","description":"<h1 id=\"how-to-authenticate\">How to authenticate</h1>\n<p>To <a href=\"#87551e1b-0c0b-453f-9bc2-8720014414dd\">authenticate against the Canto API </a>you have to use the OAuth2 protocol. \nThere are two grant types that are offered by Canto. </p>\n<h1 id=\"grant-types\">Grant Types</h1>\n<h2 id=\"client_credentials\">client_credentials</h2>\n<p>For automated integration, running in the background it is the most comfortable way to use the client_credentials mode, as the authorisation code has to be entered manually. </p>\n<h2 id=\"authorization_code\">authorization_code</h2>\n<p>But if you're implementing a web application you should use the authorisation_code. This prevents having the login credentials in your accessible web source code and consequently makes the integration more secure. </p>\n<h1 id=\"scope\">Scope</h1>\n<p>When you decide to use the client_credentials type, please be aware of only using the scope that covers the minimum required permissions. The most requests don't require admin scope to work.</p>\n","_postman_id":"25fef459-f117-4058-9591-a80cad09689c","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"30842815-6d34-405c-b71f-b0b87852d69d","id":"30842815-6d34-405c-b71f-b0b87852d69d","name":"Canto API","type":"collection"}}},{"name":"Uploading Assets","item":[],"id":"67d24f61-1602-4e6b-90cf-b774519a4339","description":"<h1 id=\"upload-settings\">Upload Settings</h1>\n<p>The first step in the upload process, is requesting the <a href=\"https://api.canto.com/#9845f0ed-d805-49f2-a6cb-0185e8d6c1f3\">upload settings</a>\nBut you don't need to request this settings for every asset you want to upload. The settings are <b>valid for 5 hours</b>. Please avoid requesting the settings every time.</p>\n<h1 id=\"calling-the-upload-status\">Calling the Upload Status</h1>\n<p>Uploads in Canto work with the standard AWS upload procedure which is working asynchronously. To find out the current status of your upload you have to query the upload status. The time between these status requests should not be more often than every... </p>\n<ul>\n<li>30 seconds for backend applications</li>\n<li>1 second for GUI applications (single upload)</li>\n<li>10 seconds for GUI applications (batch upload)</li>\n<li>15 seconds for automated tests</li>\n</ul>\n\n<h1 id=\"use-unique-filenames\">Use unique filenames</h1>\n<p>Working with duplicate filenames can cause problems during the AWS upload. Please ensure that you're using unique filenames. This can be achieved e.g. by adding a timestamp to the filename and afterwards renaming the file to its initial name.</p>\n","_postman_id":"67d24f61-1602-4e6b-90cf-b774519a4339","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"30842815-6d34-405c-b71f-b0b87852d69d","id":"30842815-6d34-405c-b71f-b0b87852d69d","name":"Canto API","type":"collection"}}},{"name":"Downloading Assets","item":[],"id":"01e47587-fce5-47ea-a8a7-a7c2cea46968","description":"<h1 id=\"download-assets\">Download Assets</h1>\n<p>There are several ways to download an asset from Canto via the API. \nIn most ways it is sufficient to use the \"download\" URL the API provide you with the \"Get content details\" or \"Search\" request.</p>\n<p>Sometimes you need to resize or crop an image before downloading an image. This can be done with the <a href=\"https://api.canto.com/#fc47ae21-64e2-4f52-926e-c587640cda1b\">Advanced Download Options</a></p>\n<p>This endpoint is only recommended for sporadic use of individual assets. Never use the Advanced Download Options for batch processing.\nIf you need cropped or scaled images for delivery or mass download, Canto offers the Media Delivery Cloud. Please contact your Canto Implementation Manager for details.</p>\n","_postman_id":"01e47587-fce5-47ea-a8a7-a7c2cea46968","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"30842815-6d34-405c-b71f-b0b87852d69d","id":"30842815-6d34-405c-b71f-b0b87852d69d","name":"Canto API","type":"collection"}}},{"name":"Get only the data you need","item":[],"id":"f684ac5e-4326-40e9-9114-3a0c09e3a9cf","description":"<h1 id=\"delta-comparison\">Delta Comparison</h1>\n<p>Sometimes it is necessary to batch request metadata over the whole Canto account of your customer, e.g. to supply catalog production (BMEcat or others) But in most cases it is not needed to catch all data.\n<br />\nThe Canto API provides several possibilities to limit your results, e.g. by filter criteria. You can e.g. limit by the modify date since your last request or by specific flags. </p>\n<p>Whenever possible you should request delta data by using this criteria, instead of requesting the whole data of the account.</p>\n","_postman_id":"f684ac5e-4326-40e9-9114-3a0c09e3a9cf","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"30842815-6d34-405c-b71f-b0b87852d69d","id":"30842815-6d34-405c-b71f-b0b87852d69d","name":"Canto API","type":"collection"}}},{"name":"Risk Criteria","item":[],"id":"61f26cfc-de61-4829-8919-fd1e154b27ca","description":"<p>Based on our experience from the last years, we classified some points of inefficient usage, that lead to performance issues on customers side or a high load on our infrastructure. This usage should be avoided. Below these points are listed:</p>\n<h2 id=\"advanced-download\">Advanced Download</h2>\n<p>The advanced download should only be used user-initiated; never in an automated process for many assets at one time. Details see <a href=\"https://api.canto.com/#01e47587-fce5-47ea-a8a7-a7c2cea46968\">Downloading Assets</a>.</p>\n<p>In case you need cropped or scaled images to deliver to your third-party-system, the best way is to use the Canto Media Delivery Cloud (MDC). Please contact your Implementation Manager for details.</p>\n<h2 id=\"requesting-data-for-a-specific-timeslot--delta-comparison\"><strong>Requesting data for a specific timeslot / Delta Comparison</strong></h2>\n<p>Sometimes it is necessary to search for content that changed within a specific time. It is important to specify this search requests very concretely to keep the result set as small as possible (see <a href=\"https://api.canto.com/#f684ac5e-4326-40e9-9114-3a0c09e3a9cf\">Delta Comparison</a>). In most cases it is preferable to use our webhooks instead of pulling this information from a search. The webhooks send push message to a specific URL in case of new, changed or deleted assets. Details can be found in the <a href=\"https://support.canto.com/en/support/solutions/articles/9000187706-webhooks\">Canto Help Center</a>.</p>\n<p>In case you don't have the possibility to use our webhooks, please be aware of using a <a href=\"https://api.canto.com/#759b9d66-137f-4171-b08c-321a87e59571\">pagination</a> for your search result.</p>\n<h2 id=\"update-of-metadata-for-many-assets\"><strong>Update of metadata for many assets</strong></h2>\n<p>Please be aware of updating only assets that are necessary to update.</p>\n<h2 id=\"requesting-previews-for-many-assets\"><strong>Requesting previews for many assets</strong></h2>\n<p>In case you need to deliver asset previews to third-party-systems, like Webshops or CMS systems, there are several possibilities in the API to receive these previews (see <a href=\"https://api.canto.com/#2ab2f8ba-5dcd-4546-a142-ac7200765dfd\">How can I access previews...</a>). Nevertheless, the best way to go is using the Canto Media Delivery Cloud (MDC). Especially when you need to deliver many assets or expect many accesses worldwide. Please contact your Implementation Manager for details.</p>\n<h2 id=\"requesting-content-details-for-each-search-result\"><strong>Requesting content details for each search result</strong></h2>\n<p>It is not necessary to request <a href=\"https://api.canto.com/#dc7523ac-7acf-4c80-be39-48b39b10bfb0\">Get Content Details</a> for each result from the <a href=\"https://api.canto.com/#36910bbd-c42e-485e-8d3e-7d903230066a\">Search / Filter</a> endpoint. The result set from the Search / Filter endpoint already provides the metadata for the assets. Please do not use both.</p>\n","_postman_id":"61f26cfc-de61-4829-8919-fd1e154b27ca","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"30842815-6d34-405c-b71f-b0b87852d69d","id":"30842815-6d34-405c-b71f-b0b87852d69d","name":"Canto API","type":"collection"}}}],"id":"9807dab2-3221-4aa7-af7a-302bbf4b892f","description":"<h1 id=\"general-information\">General Information</h1>\n<p>The following Integration Guidelines should help you, developing a smooth and performant integration of your third-party-system to Canto. </p>\n<p>Additional to following the guidelines we would appreciate if you send us a sequence diagram of your integration so our developers can give you feedback on the process.</p>\n","_postman_id":"9807dab2-3221-4aa7-af7a-302bbf4b892f","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"30842815-6d34-405c-b71f-b0b87852d69d","id":"30842815-6d34-405c-b71f-b0b87852d69d","name":"Canto API","type":"collection"}}}],"id":"db916fe1-15e5-410a-8aa0-4372dccf4326","_postman_id":"db916fe1-15e5-410a-8aa0-4372dccf4326","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"30842815-6d34-405c-b71f-b0b87852d69d","id":"30842815-6d34-405c-b71f-b0b87852d69d","name":"Canto API","type":"collection"}}},{"name":"Authorization","item":[{"name":"Obtain Access Token / Refresh Token","event":[{"listen":"test","script":{"id":"b426dad7-bc67-410f-9ae9-27cff027f9f2","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"accessToken\", jsonData.access_token);","pm.environment.set(\"tokenType\", jsonData.token_type);","pm.environment.set(\"refreshToken\", jsonData.refresh_token);"],"type":"text/javascript"}}],"id":"004678f3-2bb7-4f9c-aae4-936b1457dc57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{OAUTH_BASE_URL}}/oauth/api/oauth2/compatible/token?app_id={{APP_ID}}&app_secret={{APP_SECRET}}&grant_type=client_credentials&redirect_uri=http://yourDomain.com&code={{authorizationCode}}&refresh_token={{refreshToken}}&scope=admin&user_id=support@canto.com","description":"<p><strong>Note:</strong> If you use grant_type=authorization_code, you have to call <a href=\"{{OAUTH_BASE_URL}}/api/oauth2/authorize?response_type=code&amp;app_id={{APP_ID}}\">{{OAUTH_BASE_URL}}/oauth/api/oauth2/authorize?response_type=code&amp;app_id={{APP_ID}}</a> first, to get the code.</p>\n<p>For more information see: <a href=\"#canto-oauth-page\">Canto OAuth Page</a></p>\n<p>The returned accessToken will be valid for 30 days.</p>\n<p>The refreshToken will be valid for 365 days. If you use the refreshToken, you'll get a new refreshToken and the old one will be invalid.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"30842815-6d34-405c-b71f-b0b87852d69d","id":"30842815-6d34-405c-b71f-b0b87852d69d","name":"Canto API","type":"collection"}},"urlObject":{"path":["oauth","api","oauth2","compatible","token"],"host":["{{OAUTH_BASE_URL}}"],"query":[{"description":{"content":"<p>REQUIRED - Your App identifier</p>\n","type":"text/plain"},"key":"app_id","value":"{{APP_ID}}"},{"description":{"content":"<p>REQUIRED - Your App Secret</p>\n","type":"text/plain"},"key":"app_secret","value":"{{APP_SECRET}}"},{"description":{"content":"<p>REQUIRED - “authorization_code”, \"client_credentials\" or \"refresh_token\"</p>\n<p>If you use \"client_credentials\", you won't get a refresh token. If your token expires, just call this request on \"client_credentials\" mode, again.</p>\n","type":"text/plain"},"key":"grant_type","value":"client_credentials"},{"description":{"content":"<p>The redirect url on third party web site.</p>\n<p>If this value is not present, Canto will take the value from your App setting.\nIf this value is present, it must be same as your {Redirect Uri} in the App setting.</p>\n","type":"text/plain"},"key":"redirect_uri","value":"http://yourDomain.com"},{"description":{"content":"<p>REQUIRED - (If grant_type is \"authorization_code\")</p>\n<p>The authorization code you gain on last step. See: <a href=\"#canto-oauth-page\">Canto OAuth Page</a>.</p>\n<p><strong>Example:</strong> a631e415f0784987a6544d567472ff47</p>\n","type":"text/plain"},"key":"code","value":"{{authorizationCode}}"},{"description":{"content":"<p>REQUIRED - (If grant_type is \"refresh_token\")</p>\n<p>The refresh token, you got on last call of this request.</p>\n<p><strong>Note:</strong> A Refresh Token is valid for 365 days,</p>\n","type":"text/plain"},"key":"refresh_token","value":"{{refreshToken}}"},{"description":{"content":"<p>The scope of the user. </p>\n<p>Valid Values: \"admin\", \"contributor\", \"consumer\"</p>\n<p><strong>Note:</strong> Only supported on client_credentials mode. \nAt least one user must exist in this scope. Otherwise the login will fail. \nYou cannot use the scope parameter in combination with parameter: \"user_id\". </p>\n<p><strong>Note:</strong> If you use scope, the first user in alphabetical order in this scope, will be used for login. We recommend to use param \"user_id\" instead.</p>\n<p>Default: admin </p>\n","type":"text/plain"},"key":"scope","value":"admin"},{"description":{"content":"<p>The user_id of the user, who should be logged in. </p>\n","type":"text/plain"},"key":"user_id","value":"support@canto.com"}],"variable":[]}},"response":[{"id":"e148a427-ec9e-462f-96e7-6e4b60b3a6d7","name":"200 OK - refresh_token","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{OAUTH_BASE_URL}}/oauth/api/oauth2/compatible/token?app_id={{APP_ID}}&app_secret={{APP_SECRET}}&grant_type=refresh_token&refresh_token={{refreshToken}}","host":["{{OAUTH_BASE_URL}}"],"path":["oauth","api","oauth2","compatible","token"],"query":[{"key":"app_id","value":"{{APP_ID}}","description":"REQUIRED - Your App identifier"},{"key":"app_secret","value":"{{APP_SECRET}}","description":"REQUIRED - Your App Secret"},{"key":"grant_type","value":"refresh_token","description":"REQUIRED - “authorization_code”, \"client_credentials\" or \"refresh_token\"\n\nIf you use \"client_credentials\", you won't get a refresh token. If your token expires, just call this request on \"client_credentials\" mode, again."},{"key":"redirect_uri","value":"http://yourDomain.com","description":"The redirect url on third party web site.\n\nIf this value is not present, Canto will take the value from your App setting.\nIf this value is present, it must be same as your {Redirect Uri} in the App setting.\n","disabled":true},{"key":"code","value":"163cb27d2a53451dbf0ab7306d88bddb","description":"REQUIRED - (If grant_type is \"authorization_code\")\n\nThe authorization code you gain on last step. See: [Canto OAuth Page](#canto-oauth-page).\n\n**Example:** a631e415f0784987a6544d567472ff47","disabled":true},{"key":"refresh_token","value":"{{refreshToken}}","description":"REQUIRED - (If grant_type is \"refresh_token\")\n\nThe refresh token, you got on last call of this request."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 05 Jan 2021 16:43:33 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"5806b577e9444a6eb80ab5fbf710e59c\",\n    \"expires_in\": \"2592000\",\n    \"token_type\": \"Bearer\",\n    \"refresh_token\": \"c1a899f17b6d4ebfac62464f617022dd1841519de39b4f38a4814a8f8a25cc92\"\n}"},{"id":"b3b8db6e-9563-448f-8406-782893b58564","name":"200 OK - client_credentials","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{OAUTH_BASE_URL}}/oauth/api/oauth2/compatible/token?app_id={{APP_ID}}&app_secret={{APP_SECRET}}&grant_type=client_credentials","host":["{{OAUTH_BASE_URL}}"],"path":["oauth","api","oauth2","compatible","token"],"query":[{"key":"app_id","value":"{{APP_ID}}","description":"REQUIRED - Your App identifier"},{"key":"app_secret","value":"{{APP_SECRET}}","description":"REQUIRED - Your App Secret"},{"key":"grant_type","value":"client_credentials","description":"REQUIRED - “authorization_code”, \"client_credentials\" or \"refresh_token\"\n\nIf you use \"client_credentials\", you won't get a refresh token. If your token expires, just call this request on \"client_credentials\" mode, again."},{"key":"redirect_uri","value":"http://yourDomain.com","description":"The redirect url on third party web site.\n\nIf this value is not present, Canto will take the value from your App setting.\nIf this value is present, it must be same as your {Redirect Uri} in the App setting.\n","disabled":true},{"key":"code","value":"{{authorizationCode}}","description":"REQUIRED - (If grant_type is \"authorization_code\")\n\nThe authorization code you gain on last step. See: [Canto OAuth Page](#canto-oauth-page).\n\n**Example:** a631e415f0784987a6544d567472ff47","disabled":true},{"key":"refresh_token","value":"{{refreshToken}}","description":"REQUIRED - (If grant_type is \"refresh_token\")\n\nThe refresh token, you got on last call of this request.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 05 Jan 2021 16:41:14 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"befcbbb2daa341d785accd148621412e\",\n    \"expires_in\": \"2592000\",\n    \"token_type\": \"Bearer\",\n    \"refresh_token\": null\n}"},{"id":"2f6212bb-0ca2-41c9-868d-64747feac061","name":"400 Bad Request - Wrong grant_type value","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{OAUTH_BASE_URL}}/oauth/api/oauth2/compatible/token?app_id={{APP_ID}}&app_secret={{APP_SECRET}}&grant_type=refresh_tokens&refresh_token={{refreshToken}}","host":["{{OAUTH_BASE_URL}}"],"path":["oauth","api","oauth2","compatible","token"],"query":[{"key":"app_id","value":"{{APP_ID}}","description":"REQUIRED - Your App identifier"},{"key":"app_secret","value":"{{APP_SECRET}}","description":"REQUIRED - Your App Secret"},{"key":"grant_type","value":"refresh_tokens","description":"REQUIRED - “authorization_code”, \"client_credentials\" or \"refresh_token\"\n\nIf you use \"client_credentials\", you won't get a refresh token. If your token expires, just call this request on \"client_credentials\" mode, again."},{"key":"redirect_uri","value":"http://yourDomain.com","description":"The redirect url on third party web site.\n\nIf this value is not present, Canto will take the value from your App setting.\nIf this value is present, it must be same as your {Redirect Uri} in the App setting.\n","disabled":true},{"key":"code","value":"163cb27d2a53451dbf0ab7306d88bddb","description":"REQUIRED - (If grant_type is \"authorization_code\")\n\nThe authorization code you gain on last step. See: [Canto OAuth Page](#canto-oauth-page).\n\n**Example:** a631e415f0784987a6544d567472ff47","disabled":true},{"key":"refresh_token","value":"{{refreshToken}}","description":"REQUIRED - (If grant_type is \"refresh_token\")\n\nThe refresh token, you got on last call of this request."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 05 Jan 2021 16:43:54 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"error_description\": \"Wrong grant_type value\",\n    \"error\": \"invalid_request\"\n}"},{"id":"1aba1de4-5e3a-4dad-b076-2893e116fd49","name":"200 OK - authorization_code","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{OAUTH_BASE_URL}}/oauth/api/oauth2/compatible/token?app_id={{APP_ID}}&app_secret={{APP_SECRET}}&grant_type=authorization_code&code=163cb27d2a53451dbf0ab7306d88bddb","host":["{{OAUTH_BASE_URL}}"],"path":["oauth","api","oauth2","compatible","token"],"query":[{"key":"app_id","value":"{{APP_ID}}","description":"REQUIRED - Your App identifier"},{"key":"app_secret","value":"{{APP_SECRET}}","description":"REQUIRED - Your App Secret"},{"key":"grant_type","value":"authorization_code","description":"REQUIRED - “authorization_code”, \"client_credentials\" or \"refresh_token\"\n\nIf you use \"client_credentials\", you won't get a refresh token. If your token expires, just call this request on \"client_credentials\" mode, again."},{"key":"redirect_uri","value":"http://yourDomain.com","description":"The redirect url on third party web site.\n\nIf this value is not present, Canto will take the value from your App setting.\nIf this value is present, it must be same as your {Redirect Uri} in the App setting.\n","disabled":true},{"key":"code","value":"163cb27d2a53451dbf0ab7306d88bddb","description":"REQUIRED - (If grant_type is \"authorization_code\")\n\nThe authorization code you gain on last step. See: [Canto OAuth Page](#canto-oauth-page).\n\n**Example:** a631e415f0784987a6544d567472ff47"},{"key":"refresh_token","value":"{{refreshToken}}","description":"REQUIRED - (If grant_type is \"refresh_token\")\n\nThe refresh token, you got on last call of this request.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 05 Jan 2021 16:42:33 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"443e4b9841c44563b28e523d34788088\",\n    \"expires_in\": \"2592000\",\n    \"token_type\": \"Bearer\",\n    \"refresh_token\": \"1b54af1f604a45df8ba41bfc7d60f6bb5e3d8fb395f74c50a925097bd5cde357\"\n}"},{"id":"dc01ec69-2ba1-4459-9972-4dcc36a1216f","name":"401 Unauthorized - Invalid authentication code","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{OAUTH_BASE_URL}}/oauth/api/oauth2/compatible/token?app_id={{APP_ID}}&app_secret={{APP_SECRET}}&grant_type=authorization_code&code=163cb27d2a53451dbf0ab7306d88bddb","host":["{{OAUTH_BASE_URL}}"],"path":["oauth","api","oauth2","compatible","token"],"query":[{"key":"app_id","value":"{{APP_ID}}","description":"REQUIRED - Your App identifier"},{"key":"app_secret","value":"{{APP_SECRET}}","description":"REQUIRED - Your App Secret"},{"key":"grant_type","value":"authorization_code","description":"REQUIRED - “authorization_code”, \"client_credentials\" or \"refresh_token\"\n\nIf you use \"client_credentials\", you won't get a refresh token. If your token expires, just call this request on \"client_credentials\" mode, again."},{"key":"redirect_uri","value":"http://yourDomain.com","description":"The redirect url on third party web site.\n\nIf this value is not present, Canto will take the value from your App setting.\nIf this value is present, it must be same as your {Redirect Uri} in the App setting.\n","disabled":true},{"key":"code","value":"163cb27d2a53451dbf0ab7306d88bddb","description":"REQUIRED - (If grant_type is \"authorization_code\")\n\nThe authorization code you gain on last step. See: [Canto OAuth Page](#canto-oauth-page).\n\n**Example:** a631e415f0784987a6544d567472ff47"},{"key":"refresh_token","value":"{{refreshToken}}","description":"REQUIRED - (If grant_type is \"refresh_token\")\n\nThe refresh token, you got on last call of this request.","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 05 Jan 2021 16:45:39 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"error_description\": \"Invalid authentication code\",\n    \"error\": \"authentication_fail\"\n}"},{"id":"935cc20b-5d5e-4afa-9ef8-e76fa1a5a23d","name":"200 OK - Test","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{OAUTH_BASE_URL}}/oauth/api/oauth2/compatible/token?app_id={{APP_ID}}&app_secret={{APP_SECRET}}&grant_type=client_credentials&redirect_uri=http://yourDomain.com","host":["{{OAUTH_BASE_URL}}"],"path":["oauth","api","oauth2","compatible","token"],"query":[{"key":"app_id","value":"{{APP_ID}}","description":"REQUIRED - Your App identifier"},{"key":"app_secret","value":"{{APP_SECRET}}","description":"REQUIRED - Your App Secret"},{"key":"grant_type","value":"client_credentials","description":"REQUIRED - “authorization_code”, \"client_credentials\" or \"refresh_token\"\n\nIf you use \"client_credentials\", you won't get a refresh token. If your token expires, just call this request on \"client_credentials\" mode, again."},{"key":"redirect_uri","value":"http://yourDomain.com","description":"The redirect url on third party web site.\n\nIf this value is not present, Canto will take the value from your App setting.\nIf this value is present, it must be same as your {Redirect Uri} in the App setting.\n"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 13 Jan 2021 08:58:26 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"ef7b418f47b048f5ad3b202080e5ab9c\",\n    \"expires_in\": \"2592000\",\n    \"token_type\": \"Bearer\",\n    \"refresh_token\": null\n}"},{"id":"bc5ca76c-4e3e-4016-8a20-a61bd7192ba0","name":"400 Bad Request - Wrong refresh token value","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{OAUTH_BASE_URL}}/oauth/api/oauth2/compatible/token?app_id={{APP_ID}}&app_secret={{APP_SECRET}}&grant_type=refresh_token","host":["{{OAUTH_BASE_URL}}"],"path":["oauth","api","oauth2","compatible","token"],"query":[{"key":"app_id","value":"{{APP_ID}}","description":"REQUIRED - Your App identifier"},{"key":"app_secret","value":"{{APP_SECRET}}","description":"REQUIRED - Your App Secret"},{"key":"grant_type","value":"refresh_token","description":"REQUIRED - “authorization_code”, \"client_credentials\" or \"refresh_token\"\n\nIf you use \"client_credentials\", you won't get a refresh token. If your token expires, just call this request on \"client_credentials\" mode, again."},{"key":"redirect_uri","value":"http://yourDomain.com","description":"The redirect url on third party web site.\n\nIf this value is not present, Canto will take the value from your App setting.\nIf this value is present, it must be same as your {Redirect Uri} in the App setting.\n","disabled":true},{"key":"code","value":"163cb27d2a53451dbf0ab7306d88bddb","description":"REQUIRED - (If grant_type is \"authorization_code\")\n\nThe authorization code you gain on last step. See: [Canto OAuth Page](#canto-oauth-page).\n\n**Example:** a631e415f0784987a6544d567472ff47","disabled":true},{"key":"refresh_token","value":"{{refreshToken}}","description":"REQUIRED - (If grant_type is \"refresh_token\")\n\nThe refresh token, you got on last call of this request.","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 05 Jan 2021 16:44:36 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"error_description\": \"Wrong refresh token value\",\n    \"error\": \"invalid_request\"\n}"}],"_postman_id":"004678f3-2bb7-4f9c-aae4-936b1457dc57"},{"name":"Obtain Access Token / Refresh Token (old version - not RFC conform)","event":[{"listen":"test","script":{"id":"b426dad7-bc67-410f-9ae9-27cff027f9f2","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"accessToken\", jsonData.accessToken);","pm.environment.set(\"tokenType\", jsonData.tokenType);","pm.environment.set(\"refreshToken\", jsonData.refreshToken);"],"type":"text/javascript"}}],"id":"87551e1b-0c0b-453f-9bc2-8720014414dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{OAUTH_BASE_URL}}/oauth/api/oauth2/token?app_id={{APP_ID}}&app_secret={{APP_SECRET}}&grant_type=client_credentials&redirect_uri=http://yourDomain.com&code={{authorizationCode}}&refresh_token={{refreshToken}}&scope=admin&user_id=support@canto.com","description":"<p><strong>Note:</strong> If you use grant_type=authorization_code, you have to call <a href=\"{{OAUTH_BASE_URL}}/api/oauth2/authorize?response_type=code&amp;app_id={{APP_ID}}\">{{OAUTH_BASE_URL}}/oauth/api/oauth2/authorize?response_type=code&amp;app_id={{APP_ID}}</a> first, to get the code.</p>\n<p>For more information see: <a href=\"#canto-oauth-page\">Canto OAuth Page</a></p>\n<p>The returned accessToken will be valid for 30 days.</p>\n<p>The refreshToken will be valid for 365 days. If you use the refreshToken, you'll get a new refreshToken and the old one will be invalid.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"30842815-6d34-405c-b71f-b0b87852d69d","id":"30842815-6d34-405c-b71f-b0b87852d69d","name":"Canto API","type":"collection"}},"urlObject":{"path":["oauth","api","oauth2","token"],"host":["{{OAUTH_BASE_URL}}"],"query":[{"description":{"content":"<p>REQUIRED - Your App identifier</p>\n","type":"text/plain"},"key":"app_id","value":"{{APP_ID}}"},{"description":{"content":"<p>REQUIRED - Your App Secret</p>\n","type":"text/plain"},"key":"app_secret","value":"{{APP_SECRET}}"},{"description":{"content":"<p>REQUIRED - “authorization_code”, \"client_credentials\" or \"refresh_token\"</p>\n<p>If you use \"client_credentials\", you won't get a refresh token. If your token expires, just call this request on \"client_credentials\" mode, again.</p>\n","type":"text/plain"},"key":"grant_type","value":"client_credentials"},{"description":{"content":"<p>The redirect url on third party web site.</p>\n<p>If this value is not present, Canto will take the value from your App setting.\nIf this value is present, it must be same as your {Redirect Uri} in the App setting.</p>\n","type":"text/plain"},"key":"redirect_uri","value":"http://yourDomain.com"},{"description":{"content":"<p>REQUIRED - (If grant_type is \"authorization_code\")</p>\n<p>The authorization code you gain on last step. See: <a href=\"#canto-oauth-page\">Canto OAuth Page</a>.</p>\n<p><strong>Example:</strong> a631e415f0784987a6544d567472ff47</p>\n","type":"text/plain"},"key":"code","value":"{{authorizationCode}}"},{"description":{"content":"<p>REQUIRED - (If grant_type is \"refresh_token\")</p>\n<p>The refresh token, you got on last call of this request.</p>\n<p><strong>Note:</strong> A Refresh Token is valid for 365 days,</p>\n","type":"text/plain"},"key":"refresh_token","value":"{{refreshToken}}"},{"description":{"content":"<p>The scope of the user. </p>\n<p>Valid Values: \"admin\", \"contributor\", \"consumer\"</p>\n<p><strong>Note:</strong> Only supported on client_credentials mode. \nAt least one user must exist in this scope. Otherwise the login will fail. \nYou cannot use the scope parameter in combination with parameter: \"user_id\". </p>\n<p><strong>Note:</strong> If you use scope, the first user in alphabetical order in this scope, will be used for login. We recommend to use param \"user_id\" instead.</p>\n<p>Default: admin </p>\n","type":"text/plain"},"key":"scope","value":"admin"},{"description":{"content":"<p>The user_id of the user, who should be logged in. </p>\n","type":"text/plain"},"key":"user_id","value":"support@canto.com"}],"variable":[]}},"response":[{"id":"97a92b63-45cc-4805-a09f-3391ea08d057","name":"200 OK - client_credentials","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{OAUTH_BASE_URL}}/oauth/api/oauth2/token?app_id={{APP_ID}}&app_secret={{APP_SECRET}}&grant_type=client_credentials","host":["{{OAUTH_BASE_URL}}"],"path":["oauth","api","oauth2","token"],"query":[{"key":"app_id","value":"{{APP_ID}}","description":"REQUIRED - Your App identifier"},{"key":"app_secret","value":"{{APP_SECRET}}","description":"REQUIRED - Your App Secret"},{"key":"grant_type","value":"client_credentials","description":"REQUIRED - “authorization_code”, \"client_credentials\" or \"refresh_token\"\n\nIf you use \"client_credentials\", you won't get a refresh token. If your token expires, just call this request on \"client_credentials\" mode, again."},{"key":"redirect_uri","value":"http://yourDomain.com","description":"The redirect url on third party web site.\n\nIf this value is not present, Canto will take the value from your App setting.\nIf this value is present, it must be same as your {Redirect Uri} in the App setting.\n","disabled":true},{"key":"code","value":"{{authorizationCode}}","description":"REQUIRED - (If grant_type is \"authorization_code\")\n\nThe authorization code you gain on last step. See: [Canto OAuth Page](#canto-oauth-page).\n\n**Example:** a631e415f0784987a6544d567472ff47","disabled":true},{"key":"refresh_token","value":"{{refreshToken}}","description":"REQUIRED - (If grant_type is \"refresh_token\")\n\nThe refresh token, you got on last call of this request.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 05 Jan 2021 16:41:14 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"accessToken\": \"befcbbb2daa341d785accd148621412e\",\n    \"expiresIn\": \"2592000\",\n    \"tokenType\": \"Bearer\",\n    \"refreshToken\": null\n}"},{"id":"a7994943-0c0d-47e0-b6e1-9648ad4c3914","name":"200 OK - authorization_code","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{OAUTH_BASE_URL}}/oauth/api/oauth2/token?app_id={{APP_ID}}&app_secret={{APP_SECRET}}&grant_type=authorization_code&code=163cb27d2a53451dbf0ab7306d88bddb","host":["{{OAUTH_BASE_URL}}"],"path":["oauth","api","oauth2","token"],"query":[{"key":"app_id","value":"{{APP_ID}}","description":"REQUIRED - Your App identifier"},{"key":"app_secret","value":"{{APP_SECRET}}","description":"REQUIRED - Your App Secret"},{"key":"grant_type","value":"authorization_code","description":"REQUIRED - “authorization_code”, \"client_credentials\" or \"refresh_token\"\n\nIf you use \"client_credentials\", you won't get a refresh token. If your token expires, just call this request on \"client_credentials\" mode, again."},{"key":"redirect_uri","value":"http://yourDomain.com","description":"The redirect url on third party web site.\n\nIf this value is not present, Canto will take the value from your App setting.\nIf this value is present, it must be same as your {Redirect Uri} in the App setting.\n","disabled":true},{"key":"code","value":"163cb27d2a53451dbf0ab7306d88bddb","description":"REQUIRED - (If grant_type is \"authorization_code\")\n\nThe authorization code you gain on last step. See: [Canto OAuth Page](#canto-oauth-page).\n\n**Example:** a631e415f0784987a6544d567472ff47"},{"key":"refresh_token","value":"{{refreshToken}}","description":"REQUIRED - (If grant_type is \"refresh_token\")\n\nThe refresh token, you got on last call of this request.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 05 Jan 2021 16:42:33 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"accessToken\": \"443e4b9841c44563b28e523d34788088\",\n    \"expiresIn\": \"2592000\",\n    \"tokenType\": \"Bearer\",\n    \"refreshToken\": \"1b54af1f604a45df8ba41bfc7d60f6bb5e3d8fb395f74c50a925097bd5cde357\"\n}"},{"id":"05ae7439-efda-46bb-914b-a024d58a1b23","name":"200 OK - refresh_token","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{OAUTH_BASE_URL}}/oauth/api/oauth2/token?app_id={{APP_ID}}&app_secret={{APP_SECRET}}&grant_type=refresh_token&refresh_token={{refreshToken}}","host":["{{OAUTH_BASE_URL}}"],"path":["oauth","api","oauth2","token"],"query":[{"key":"app_id","value":"{{APP_ID}}","description":"REQUIRED - Your App identifier"},{"key":"app_secret","value":"{{APP_SECRET}}","description":"REQUIRED - Your App Secret"},{"key":"grant_type","value":"refresh_token","description":"REQUIRED - “authorization_code”, \"client_credentials\" or \"refresh_token\"\n\nIf you use \"client_credentials\", you won't get a refresh token. If your token expires, just call this request on \"client_credentials\" mode, again."},{"key":"redirect_uri","value":"http://yourDomain.com","description":"The redirect url on third party web site.\n\nIf this value is not present, Canto will take the value from your App setting.\nIf this value is present, it must be same as your {Redirect Uri} in the App setting.\n","disabled":true},{"key":"code","value":"163cb27d2a53451dbf0ab7306d88bddb","description":"REQUIRED - (If grant_type is \"authorization_code\")\n\nThe authorization code you gain on last step. See: [Canto OAuth Page](#canto-oauth-page).\n\n**Example:** a631e415f0784987a6544d567472ff47","disabled":true},{"key":"refresh_token","value":"{{refreshToken}}","description":"REQUIRED - (If grant_type is \"refresh_token\")\n\nThe refresh token, you got on last call of this request."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 05 Jan 2021 16:43:33 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"accessToken\": \"5806b577e9444a6eb80ab5fbf710e59c\",\n    \"expiresIn\": \"2592000\",\n    \"tokenType\": \"Bearer\",\n    \"refreshToken\": \"c1a899f17b6d4ebfac62464f617022dd1841519de39b4f38a4814a8f8a25cc92\"\n}"},{"id":"9f625855-ab91-4cdb-b710-0daf399b7199","name":"400 Bad Request - Wrong grant_type value","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{OAUTH_BASE_URL}}/oauth/api/oauth2/token?app_id={{APP_ID}}&app_secret={{APP_SECRET}}&grant_type=refresh_tokens&refresh_token={{refreshToken}}","host":["{{OAUTH_BASE_URL}}"],"path":["oauth","api","oauth2","token"],"query":[{"key":"app_id","value":"{{APP_ID}}","description":"REQUIRED - Your App identifier"},{"key":"app_secret","value":"{{APP_SECRET}}","description":"REQUIRED - Your App Secret"},{"key":"grant_type","value":"refresh_tokens","description":"REQUIRED - “authorization_code”, \"client_credentials\" or \"refresh_token\"\n\nIf you use \"client_credentials\", you won't get a refresh token. If your token expires, just call this request on \"client_credentials\" mode, again."},{"key":"redirect_uri","value":"http://yourDomain.com","description":"The redirect url on third party web site.\n\nIf this value is not present, Canto will take the value from your App setting.\nIf this value is present, it must be same as your {Redirect Uri} in the App setting.\n","disabled":true},{"key":"code","value":"163cb27d2a53451dbf0ab7306d88bddb","description":"REQUIRED - (If grant_type is \"authorization_code\")\n\nThe authorization code you gain on last step. See: [Canto OAuth Page](#canto-oauth-page).\n\n**Example:** a631e415f0784987a6544d567472ff47","disabled":true},{"key":"refresh_token","value":"{{refreshToken}}","description":"REQUIRED - (If grant_type is \"refresh_token\")\n\nThe refresh token, you got on last call of this request."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 05 Jan 2021 16:43:54 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"error_description\": \"Wrong grant_type value\",\n    \"error\": \"invalid_request\"\n}"},{"id":"fc28dc8e-8fa6-4a3d-8efe-f61651a7fadc","name":"400 Bad Request - Wrong refresh token value","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{OAUTH_BASE_URL}}/oauth/api/oauth2/token?app_id={{APP_ID}}&app_secret={{APP_SECRET}}&grant_type=refresh_token","host":["{{OAUTH_BASE_URL}}"],"path":["oauth","api","oauth2","token"],"query":[{"key":"app_id","value":"{{APP_ID}}","description":"REQUIRED - Your App identifier"},{"key":"app_secret","value":"{{APP_SECRET}}","description":"REQUIRED - Your App Secret"},{"key":"grant_type","value":"refresh_token","description":"REQUIRED - “authorization_code”, \"client_credentials\" or \"refresh_token\"\n\nIf you use \"client_credentials\", you won't get a refresh token. If your token expires, just call this request on \"client_credentials\" mode, again."},{"key":"redirect_uri","value":"http://yourDomain.com","description":"The redirect url on third party web site.\n\nIf this value is not present, Canto will take the value from your App setting.\nIf this value is present, it must be same as your {Redirect Uri} in the App setting.\n","disabled":true},{"key":"code","value":"163cb27d2a53451dbf0ab7306d88bddb","description":"REQUIRED - (If grant_type is \"authorization_code\")\n\nThe authorization code you gain on last step. See: [Canto OAuth Page](#canto-oauth-page).\n\n**Example:** a631e415f0784987a6544d567472ff47","disabled":true},{"key":"refresh_token","value":"{{refreshToken}}","description":"REQUIRED - (If grant_type is \"refresh_token\")\n\nThe refresh token, you got on last call of this request.","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 05 Jan 2021 16:44:36 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"error_description\": \"Wrong refresh token value\",\n    \"error\": \"invalid_request\"\n}"},{"id":"c2c6c636-ee7d-4052-942e-f62e6eeb914d","name":"401 Unauthorized - Invalid authentication code","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{OAUTH_BASE_URL}}/oauth/api/oauth2/token?app_id={{APP_ID}}&app_secret={{APP_SECRET}}&grant_type=authorization_code&code=163cb27d2a53451dbf0ab7306d88bddb","host":["{{OAUTH_BASE_URL}}"],"path":["oauth","api","oauth2","token"],"query":[{"key":"app_id","value":"{{APP_ID}}","description":"REQUIRED - Your App identifier"},{"key":"app_secret","value":"{{APP_SECRET}}","description":"REQUIRED - Your App Secret"},{"key":"grant_type","value":"authorization_code","description":"REQUIRED - “authorization_code”, \"client_credentials\" or \"refresh_token\"\n\nIf you use \"client_credentials\", you won't get a refresh token. If your token expires, just call this request on \"client_credentials\" mode, again."},{"key":"redirect_uri","value":"http://yourDomain.com","description":"The redirect url on third party web site.\n\nIf this value is not present, Canto will take the value from your App setting.\nIf this value is present, it must be same as your {Redirect Uri} in the App setting.\n","disabled":true},{"key":"code","value":"163cb27d2a53451dbf0ab7306d88bddb","description":"REQUIRED - (If grant_type is \"authorization_code\")\n\nThe authorization code you gain on last step. See: [Canto OAuth Page](#canto-oauth-page).\n\n**Example:** a631e415f0784987a6544d567472ff47"},{"key":"refresh_token","value":"{{refreshToken}}","description":"REQUIRED - (If grant_type is \"refresh_token\")\n\nThe refresh token, you got on last call of this request.","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 05 Jan 2021 16:45:39 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"error_description\": \"Invalid authentication code\",\n    \"error\": \"authentication_fail\"\n}"},{"id":"d28a8431-24b3-4b49-9f9a-d6b5080a7cfa","name":"200 OK - Test","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{OAUTH_BASE_URL}}/oauth/api/oauth2/token?app_id={{APP_ID}}&app_secret={{APP_SECRET}}&grant_type=client_credentials&redirect_uri=http://yourDomain.com","host":["{{OAUTH_BASE_URL}}"],"path":["oauth","api","oauth2","token"],"query":[{"key":"app_id","value":"{{APP_ID}}","description":"REQUIRED - Your App identifier"},{"key":"app_secret","value":"{{APP_SECRET}}","description":"REQUIRED - Your App Secret"},{"key":"grant_type","value":"client_credentials","description":"REQUIRED - “authorization_code”, \"client_credentials\" or \"refresh_token\"\n\nIf you use \"client_credentials\", you won't get a refresh token. If your token expires, just call this request on \"client_credentials\" mode, again."},{"key":"redirect_uri","value":"http://yourDomain.com","description":"The redirect url on third party web site.\n\nIf this value is not present, Canto will take the value from your App setting.\nIf this value is present, it must be same as your {Redirect Uri} in the App setting.\n"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 13 Jan 2021 08:58:26 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"accessToken\": \"ef7b418f47b048f5ad3b202080e5ab9c\",\n    \"expiresIn\": \"2592000\",\n    \"tokenType\": \"Bearer\",\n    \"refreshToken\": null\n}"}],"_postman_id":"87551e1b-0c0b-453f-9bc2-8720014414dd"},{"name":"Get Canto Account Name","id":"752a451d-c231-450a-b18b-c96439a3e86b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{OAUTH_BASE_URL}}/oauth/api/oauth/tenant/:refreshToken","description":"<p>In case you want to know which account you are connecting to</p>\n<p><a href=\"#526d08c9-04b6-46d1-b33c-90f597ebaa7d\">Link description</a></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"30842815-6d34-405c-b71f-b0b87852d69d","id":"30842815-6d34-405c-b71f-b0b87852d69d","name":"Canto API","type":"collection"}},"urlObject":{"path":["oauth","api","oauth","tenant",":refreshToken"],"host":["{{OAUTH_BASE_URL}}"],"query":[],"variable":[{"description":{"content":"<p>REQUIRED - A valid refresh token.</p>\n","type":"text/plain"},"type":"any","value":"{{refreshToken}}","key":"refreshToken"}]}},"response":[{"id":"15773730-7445-476f-b19f-f340fe0f8232","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{OAUTH_BASE_URL}}/api/oauth/tenant/:refreshToken","host":["{{OAUTH_BASE_URL}}"],"path":["api","oauth","tenant",":refreshToken"],"variable":[{"key":"refreshToken","value":"b075f0720d8f434481f4f789b53e47b2bab35f40107d43e09a3f3fb11fff4210","description":"A valid refresh token. (required)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 04 Jan 2021 14:29:52 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"27"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{{ACCOUNT_NAME}}"},{"id":"bb5b5548-8e7f-4315-8129-23d2d3f4badd","name":"401 Unauthorized - Invalid refresh token","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{OAUTH_BASE_URL}}/api/oauth/tenant/:refreshToken","host":["{{OAUTH_BASE_URL}}"],"path":["api","oauth","tenant",":refreshToken"],"variable":[{"key":"refreshToken","value":"INVALID_TOKEN","description":"An invalid refresh token. "}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 04 Jan 2021 14:34:04 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"error_description\": \"Invalid refresh token\",\n    \"error\": \"authentication_fail\"\n}"}],"_postman_id":"752a451d-c231-450a-b18b-c96439a3e86b"}],"id":"b547550d-250c-42f3-b73f-91b5512ae790","description":"<h1 id=\"access-token\">Access Token</h1>\n<p>All OAuth endpoints use the following basic parameters. Every third party App needs the following values.</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</tr>\n</thead>\n<tbody>\n<tr>\n<td>App Id</td>\n<td>This is a string Canto will provide to you. It represents your App identifier.</td>\n</tr>\n<tr>\n<td>App Secret</td>\n<td>This is a string Canto will provide to you. It represents your App secret.</td>\n</tr>\n<tr>\n<td>Redirect Uri</td>\n<td>Your web site url, which is used for redirect when Canto processes a request and returns the respones back to you.</td>\n</tr>\n<tr>\n<td><br /><br /><p>Canto OAuth domain url</p><br /><br /></td>\n<td><br />  <br />Choose the url depending from you tenants domain.  <br /><br /><a href=\"https://oauth.canto.com\">https://oauth.canto.com</a><br /><br />  <br /><br /><a href=\"https://oauth.canto.global\">https://oauth.canto.global</a><br /><br />  <br /><br /><a href=\"https://oauth.canto.de\">https://oauth.canto.de</a><br /><br />  <br /><a href=\"https://oauth.ca.canto.com\">https://oauth.ca.canto.com</a>  <br />  <br /></td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"canto-oauth-page\">Canto OAuth Page</h1>\n<p>Open a browser, and use the below url in the address bar</p>\n<p><a href=\"{{OAUTH_BASE_URL}}/api/oauth2/authorize?response_type=code&amp;app_id={{APP_ID}}&amp;https://canto.com&amp;state=abcd\">{{OAUTH_BASE_URL}}/oauth/api/oauth2/authorize?response_type=code&amp;app_id={{APP_ID}}&amp;https://canto.com&amp;state=abcd</a></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</tr>\n</thead>\n<tbody>\n<tr>\n<td>response_type</td>\n<td>MUST be set to \"code\"</td>\n</tr>\n<tr>\n<td>app_id</td>\n<td>Your App identifier</td>\n</tr>\n<tr>\n<td>redirect_uri</td>\n<td>The redirect url on third party web site. If this value is not present, Canto will take the value from your app setting. If this value is present, it must be same as your redirect uri in the app setting.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>A value, which the redirect uri will receive alongside access tokens. This is for security purposes, to ensure the response is sent back to the right address.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"login-and-authorization-to-canto\">Login and Authorization to Canto</h2>\n<p>On the first page, enter your Canto Account URL.</p>\n<p><strong>Example:</strong> {{SITE_BASEURL}}</p>\n<p>Followed by your username (email address) and the password.</p>\n<p>On the second page, Canto will ask you whether you would like to authorize the App and connect to your Canto account.<br />If you click “Deny”, Canto will redirect to your redirect uri to tell you that you have denied the authorization.<br />For example, you will receive ?error=access_denied&amp;error_description=The+user+denied+access+to+your+application<br />If you click “Agree”, Canto will return the authorization code to your redirect uri web site.<br />Canto will then verify the validity of the account.</p>\n<h2 id=\"authorization-code\">Authorization Code</h2>\n<p>After you agree to authorize your app, Canto will return an authorization code to your web site.</p>\n<p>For example:</p>\n<p><a href=\"https://yoursite.com/rest/canto/back?code=y78isjkh4c123u2bcq2&amp;state=abcd\">https://yoursite.com/rest/canto/back?code=y78isjkh4c123u2bcq2&amp;state=abcd</a></p>\n<p>This callback contains the following parameters:</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</tr>\n</thead>\n<tbody>\n<tr>\n<td>code</td>\n<td>A string token you must exchange for your access token. The authorization code has 1-hour expiration time. (See: <a href=\"#8ac6187e-74c0-49e3-8ce8-f7a6899d24bd\">Obtain Access Token / Refresh Token</a></td>\n</tr>\n<tr>\n<td>state</td>\n<td>The state you provided earlier. You must validate that this matches your original state. If the state does not match, you should not attempt to exchange the authorization code.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"dde81506-0e30-4299-b6cd-0c194aba9146","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1b2de847-9413-46ea-a734-da191e80b204","type":"text/javascript","exec":[""]}}],"_postman_id":"b547550d-250c-42f3-b73f-91b5512ae790","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"30842815-6d34-405c-b71f-b0b87852d69d","id":"30842815-6d34-405c-b71f-b0b87852d69d","name":"Canto API","type":"collection"}}},{"name":"API-Endpoints","item":[{"name":"Content","item":[{"name":"Assets","item":[{"name":"Add version comment","id":"9664905a-b78f-4cc5-baac-81ce07645d43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"scheme\": \"{{contentScheme}}\",\n    \"id\": \"{{contentId}}\",\n    \"versionId\": \"{{versionId}}\",\n    \"comment\": \"Laudantium veritatis ut odio.\"\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/version/comment","description":"<p><a href=\"#api-rate-limit\"><i>Rate Level: 2</i></a></p>\n<p>Adds a comment to a specific version of an asset.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","version","comment"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"7ef2015b-636f-4422-b641-d09fbae4da5a","name":"200 OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"scheme\": \"{{contentScheme}}\",\n    \"id\": \"{{contentId}}\",\n    \"versionId\": \"{{versionId}}\",\n    \"comment\": \"In est laborum.\"\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/version/comment"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 11 Jan 2021 15:17:27 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"7"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 15:17:27 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"success"}],"_postman_id":"9664905a-b78f-4cc5-baac-81ce07645d43"},{"name":"Search / Filter","event":[{"listen":"test","script":{"id":"f78e1a13-5584-4e65-8638-3139d915dee6","exec":["const utils = eval(globals.loadUtils)","","var jsonData = JSON.parse(responseBody);","var resultList = jsonData.results","","var content = null","var album = null","var folder = null","for (i=0; i<resultList.length; ++i) {","    var currentElement = resultList[i]","    if(content == null && utils.isContentScheme(currentElement.scheme)) {","        content = currentElement","    } else if (utils.isTreeScheme(currentElement.scheme)) {","        if(album == null && currentElement.scheme == \"album\") {","            album = currentElement","        } ","        if(folder == null && currentElement.scheme == \"folder\") {","            folder = currentElement","        }","    }","","    if(album != null && folder != null && content != null) {","        break","    }","}","","if(folder != null) {","    pm.environment.set(\"folderId\", folder.id)","    pm.environment.set(\"folderIdPath\", folder.idPath)","}","if(album != null) {","    pm.environment.set(\"albumId\", album.id)","    pm.environment.set(\"albumPath\", album.idPath)","}","if(content != null) {","    pm.environment.set(\"contentId\", content.id)","    pm.environment.set(\"contentScheme\", content.scheme)","}",""],"type":"text/javascript"}}],"id":"36910bbd-c42e-485e-8d3e-7d903230066a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/search?keyword=photo&scheme=image&tags=Person&tagsLiteral=Blue&keywords=Canto&approval=approved&owner=canto-support@canto.com&fileSize=95073..26893954&created=1444662143..1452182400&createdTime=1571042449..1571301649&uploadedTime=1571042449..1571301649&expirationDate=1534392140..1634392260&lastModified=1571042449..1571301649&width=800..1024&height=800..1024&imageRangeOperation=or&dimension=77..3840&resolution=5..350&orientation=landscape|portrait&duration=9..1205&pageNumber=6..482&storageClass=standard|freeze&latestReviewDate=1571042449&sortBy=time&sortDirection=descending&limit=100&start=0&{{customFieldId}}=exampleValue&searchInField=filename&operator=and&exactMatch=false&colorModel=RGB&$filter=tagsLiteral ne 'Blue'","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 4</em></a></p>\n<p>General rules: If the filter field type is string (e.g. Keyword), you can search one value or multi value. Some multiple values can have both Filter conditions OR and AND. While some multiple values can only have one Filter condition: OR.</p>\n<p><strong>Note:</strong></p>\n<ul>\n<li>You can use the value \"<strong>null</strong>\" (enclosed by two underlines in front and at the end). If you want to search for assets which don't have a value in a field.</li>\n<li>You can use the value \"<strong>exists</strong>\" (enclosed by two underlines in front and at the end). If you want to search for assets which have set any value in a field.</li>\n</ul>\n<p><strong>Example for OR:</strong> standard|freeze.<br /><strong>Example for AND:</strong> sunset+beach+people</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","search"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>The search term(s)</p>\n<p>use this, to make a search simply by keyword. This is nearly the same search like you do in Canto UI on right top.</p>\n<p>One value: sunset<br />Multi values with OR: sunset|dawn<br />Multi values with AND: sunset+beach</p>\n","type":"text/plain"},"key":"keyword","value":"photo"},{"description":{"content":"<p>\"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)</p>\n<p>scheme refers to the smart albums within your Canto application.</p>\n<p>**Examples:**<br />One value: image \nMulti values with OR: image|video|audio</p>\n","type":"text/plain"},"key":"scheme","value":"image"},{"description":{"content":"<p>If you want to filter by tag</p>\n<p>**Examples:**<br />One value: sunset<br />Multi values with OR: sunset|dawn<br />Multi values with AND: sunset+beach</p>\n<p><em>Note:</em> The | character needs to be url encoded with %7C: Example: home%7Coffice</p>\n","type":"text/plain"},"key":"tags","value":"Person"},{"description":{"content":"<p>Filter by tag(case-sensitive &amp; whole word only)\n\"blue\" or \"Blue one\" didn't matched.</p>\n","type":"text/plain"},"key":"tagsLiteral","value":"Blue"},{"description":{"content":"<p>Filter result by keywords.</p>\n<p>**Examples:**<br />One value: business<br />Multi values with OR: home|office<br />Multi values with AND: business+office</p>\n<p><strong>Note:</strong> This filter searchs by keywords, you can attach on request: <a href=\"#f854b08c-270f-4f14-af87-689b028f7e7b\">Attach keyword to content</a></p>\n<p><em>Note:</em> The + character needs to be url encoded with %2B: Example: sunset%2Bdawn\n<em>Note:</em> The | character needs to be url encoded with %7C: Example: sunset%7Cdawn</p>\n","type":"text/plain"},"key":"keywords","value":"Canto"},{"description":{"content":"<p>Filter by Approval status. </p>\n<p><strong>Note:</strong> This filter only works, if the approval process is enabled.</p>\n<p>**Examples:**<br />One value: approved<br />Multi values with OR: \"approved|pending\"</p>\n<p>If you select Expired, you cannot select another status.<br />For Example: You cannot use \"expired|pending\". Only use Expired</p>\n<p><em>Note:</em> The | character needs to be url encoded with %7C: Example: approval%7Cpending</p>\n","type":"text/plain"},"key":"approval","value":"approved"},{"description":{"content":"<p>FIlter by id of an owner. </p>\n<p>**Examples:**<br />One value: <a href=\"mailto:canto-support@canto.com\">canto-support@canto.com</a><br />Multi values with OR: <a href=\"mailto:canto-support@canto.com\">canto-support@canto.com</a>|<a href=\"mailto:noreply@canto.com\">noreply@canto.com</a></p>\n<p><em>Note:</em> The | character needs to be url encoded with %7C: Example: <a href=\"mailto:canto-support@canto.com\">canto-support@canto.com</a>%<a href=\"mailto:7Cnoreply@canto.com\">7Cnoreply@canto.com</a></p>\n","type":"text/plain"},"key":"owner","value":"canto-support@canto.com"},{"description":{"content":"<p>Filter by file size</p>\n<p><strong>Example:</strong> 95073..26893954</p>\n","type":"text/plain"},"key":"fileSize","value":"95073..26893954"},{"description":{"content":"<p>Filter by time the asset was created at canto.</p>\n","type":"text/plain"},"key":"created","value":"1444662143..1452182400"},{"description":{"content":"<p>Filter by file creation time. (Value is in Unix timestamp format). </p>\n","type":"text/plain"},"key":"createdTime","value":"1571042449..1571301649"},{"description":{"content":"<p>Filter by upload time. (Value is in Unix timestamp format)</p>\n","type":"text/plain"},"key":"uploadedTime","value":"1571042449..1571301649"},{"description":{"content":"<p>Filter by expiration time. (Value is in Unix timestamp format (milliseconds)))</p>\n","type":"text/plain"},"key":"expirationDate","value":"1534392140..1634392260"},{"description":{"content":"<p>Filter by last modified time. (Value is in Unix timestamp format)</p>\n","type":"text/plain"},"key":"lastModified","value":"1571042449..1571301649"},{"description":{"content":"<p>Filter by image width in px.</p>\n<p>Example:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>example value</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>400</td>\n<td>only images having a width of exactly 400px</td>\n</tr>\n<tr>\n<td>400..1024</td>\n<td>only images having a width inside the range of 400px to 1024px</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: This filter works only on images.</p>\n","type":"text/plain"},"key":"width","value":"800..1024"},{"description":{"content":"<p>Filter by image height in px.</p>\n<p>Example:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>example value</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>400</td>\n<td>only images having a height of exactly 400px</td>\n</tr>\n<tr>\n<td>400..1024</td>\n<td>only images having a height inside the range of 400px to 1024px</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: This filter works only on images.</p>\n","type":"text/plain"},"key":"height","value":"800..1024"},{"description":{"content":"<p>Defines how the parameters \"width\" and \"height\" should be combined.</p>\n<p><em>Valid values:</em> \"or\", \"and\"</p>\n<p>\"or\" means the result must have the given width OR height \"and\" means the result must habe the given width AND height</p>\n<p><em>Default:</em> \"or\"</p>\n","type":"text/plain"},"key":"imageRangeOperation","value":"or"},{"description":{"content":"<p>Filte by image size.</p>\n<p><strong>Note:</strong> This filter works only on images.</p>\n","type":"text/plain"},"key":"dimension","value":"77..3840"},{"description":{"content":"<p>Filter by resolution in DPI</p>\n<p><strong>Note:</strong> This filter works only on images.</p>\n","type":"text/plain"},"key":"resolution","value":"5..350"},{"description":{"content":"<p>\"landscape\", \"portrait\" or \"square\"</p>\n<p><strong>Note:</strong> This filter works only on images.</p>\n<p>**Examples:**<br />One value: landscape\nMulti values: landscape|portrait</p>\n","type":"text/plain"},"key":"orientation","value":"landscape|portrait"},{"description":{"content":"<p>Filter by duration.</p>\n<p><strong>Note:</strong> This filter works only on video or audio.</p>\n","type":"text/plain"},"key":"duration","value":"9..1205"},{"description":{"content":"<p>Filter by page number.</p>\n<p><strong>Note:</strong> This filter works only on document or presentation.</p>\n","type":"text/plain"},"key":"pageNumber","value":"6..482"},{"description":{"content":"<p>\"standard\" or \"freeze\"</p>\n<p>**Examples:**<br />One value: standard<br />Multi values with OR: standard|freeze</p>\n","type":"text/plain"},"key":"storageClass","value":"standard|freeze"},{"description":{"content":"<p>Filter contents has not been reviewed from tenant created to this time</p>\n<p><em>Note</em>: supported in main library and workspace.</p>\n","type":"text/plain"},"key":"latestReviewDate","value":"1571042449"},{"description":{"content":"<p>\"name\", \"time\", \"scheme\", \"owner\" or \"size\". </p>\n<p>Default: \"time\"</p>\n","type":"text/plain"},"key":"sortBy","value":"time"},{"description":{"content":"<p>“ascending” or “descending”</p>\n<p>Default: \"descending\"</p>\n","type":"text/plain"},"key":"sortDirection","value":"descending"},{"description":{"content":"<p>Maximum number of items to be returned. </p>\n<p>Default: 100\nMax: 1000</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"description":{"content":"<p>Offset number of items to be returned. </p>\n<p>Default: 0</p>\n","type":"text/plain"},"key":"start","value":"0"},{"description":{"content":"<p>Filter by a custom field. </p>\n<p>The name of the parameter needs to be the id of the custom field. (see: <a href=\"#fc430134-ccfa-4d75-b318-a33e420ea859\">Get custom field list</a>)</p>\n<p>As an example, custom field id would look similar to \"meta_text_0\".</p>\n<p>Filter by specified custom field with id.\nThe type means custom field type, including \"text\", \"num\", \"date\", \"choice\", \"multichoice\" &amp; \"url\"; the sequence is an immutable integer given by system. \nYou could find the whole part in web page URL when filter by the same custom field in our system.</p>\n","type":"text/plain"},"key":"{{customFieldId}}","value":"exampleValue"},{"description":{"content":"<p>You can search inside the following fields: \"filename\", \"description\", \"comment\", \"keywords\", \"author\" and \"tags\".</p>\n<p>If you input other values, the results will ignore it.</p>\n","type":"text/plain"},"key":"searchInField","value":"filename"},{"description":{"content":"<p>Operator: \"and\", \"or\".</p>\n<p>Default: \"and\"</p>\n","type":"text/plain"},"key":"operator","value":"and"},{"description":{"content":"<p>exactMatch: \"true\" or \"false\"</p>\n<p>Default: false</p>\n","type":"text/plain"},"key":"exactMatch","value":"false"},{"description":{"content":"<p>Filter by image color. \nValue: RGB or CMYK </p>\n","type":"text/plain"},"key":"colorModel","value":"RGB"},{"description":{"content":"<p>Filter by “not” for tagsLiteral and keywords. \nExamples:\n$filter=tagsLiteral ne 'Blue' and keywords ne 'Canto'\nNote: Adopt the ODATA spec.</p>\n","type":"text/plain"},"key":"$filter","value":"tagsLiteral ne 'Blue'"}],"variable":[]}},"response":[{"id":"8267908b-b4bf-4d5d-a97b-36d98ecbffb0","name":"200 OK - Global Search","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/search?keyword=photograph&sortBy=time&sortDirection=descending&limit=100&start=0","host":["{{SITE_BASEURL}}"],"path":["api","v1","search"],"query":[{"key":"keyword","value":"photograph","description":"The search term(s)\n\nuse this, to make a search simply by keyword. This is nearly the same search like you do in Canto UI on right top. "},{"key":"sortBy","value":"time","description":"\"name\", \"time\", \"scheme\", \"owner\" or \"size\". \n\nDefault: \"time\""},{"key":"sortDirection","value":"descending","description":"“ascending” or “descending”\n\nDefault: \"descending\""},{"key":"limit","value":"100","description":"Maximum number of items to be returned. \n\nDefault: 100"},{"key":"start","value":"0","description":"Offset number of items to be returned. \n\nDefault: 0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Jan 2021 15:37:03 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 15:37:02 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"facets\": [\n        {\n            \"mix\": 72,\n            \"max\": 72,\n            \"name\": \"resolution\",\n            \"min\": 72\n        },\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"name\": \"duration\",\n            \"min\": 9223372036854775807\n        },\n        {\n            \"name\": \"tags\",\n            \"value\": [\n                \"Backpack\"\n            ]\n        },\n        {\n            \"name\": \"keywords\",\n            \"value\": [\n                \"Product\"\n            ]\n        },\n        {\n            \"mix\": 2920,\n            \"max\": 3168,\n            \"name\": \"dimension\",\n            \"min\": 2920\n        },\n        {\n            \"name\": \"owner\",\n            \"value\": [\n                \"canto-support@canto.com\"\n            ]\n        },\n        {\n            \"name\": \"orientation\"\n        },\n        {\n            \"name\": \"storageClass\",\n            \"value\": [\n                \"standard\"\n            ]\n        },\n        {\n            \"name\": \"approval\",\n            \"value\": [\n                \"Approved\"\n            ]\n        },\n        {\n            \"mix\": 1609856947,\n            \"max\": 1609856985,\n            \"name\": \"created\",\n            \"min\": 1609856947\n        },\n        {\n            \"mix\": 1609856947,\n            \"max\": 1609856985,\n            \"name\": \"lastModified\",\n            \"min\": 1609856947\n        },\n        {\n            \"name\": \"scheme\",\n            \"value\": [\n                \"image\"\n            ]\n        },\n        {\n            \"mix\": 1443993,\n            \"max\": 3405164,\n            \"name\": \"fileSize\",\n            \"min\": 1443993\n        },\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"name\": \"pageNumber\",\n            \"min\": 9223372036854775807\n        },\n        {\n            \"name\":\"meta_multichoice_1\",\n            \"value\":[\n                \"A\",\n                \"B\",\n                \"C\"\n            ]\n        },\n        {\n            \"name\":\"meta_choice_2\",\n            \"value\":[\n                \"image\"\n            ]\n        },\n        {\n            \"name\":\"meta_label_0\",\n            \"value\":[\n                \"#FFFFFF\"\n            ]\n        }\n    ],\n    \"limit\": 100,\n    \"found\": 2,\n    \"sortBy\": \"time\",\n    \"sortDirection\": \"descending\",\n    \"matchExpr\": \"es\",\n    \"results\": [\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/pvaopkuh6p67t06lk11n64et24/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=pvaopkuh6p67t06lk11n64et24\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/pvaopkuh6p67t06lk11n64et24/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062945000\",    // \"Date Modified\", \"Date Uploaded\" or \"Date Created\" according to the \"Sort & Display Assets By Date Field\" in the settings \n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-grey-4515-photographer.jpg\",\n            \"default\": {\n                \"Size\": \"3405164\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3168*4752 Pixels\",\n                \"Date uploaded\": \"20210105062945000\",\n                \"Date modified\": \"20210105062945000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"pvaopkuh6p67t06lk11n64et24\",\n            \"size\": \"3405164\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\n                    },\n                    \"id\": \"JARDF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"SHFO1/JARDF\"\n                }\n            ],\n            \"width\": \"3168\",\n            \"height\": \"4752\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/epnoj07hft395clgd3mqg7it1d/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=epnoj07hft395clgd3mqg7it1d\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/epnoj07hft395clgd3mqg7it1d/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062907000\",    // \"Date Modified\", \"Date Uploaded\" or \"Date Created\" according to the \"Sort & Display Assets By Date Field\" in the settings \n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-forest-green-4582-photographer.jpg\",\n            \"default\": {\n                \"Size\": \"1443993\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5184*2920 Pixels\",\n                \"Date uploaded\": \"20210105062907000\",\n                \"Date modified\": \"20210105062907000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"epnoj07hft395clgd3mqg7it1d\",\n            \"size\": \"1443993\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"5184\",\n            \"height\": \"2920\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        }\n    ]\n}"},{"id":"b5e79331-9451-43d4-a423-81be1df4a6b5","name":"200 OK - Search by scheme","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/search?scheme=image","host":["{{SITE_BASEURL}}"],"path":["api","v1","search"],"query":[{"key":"scheme","value":"image","description":"\"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)\n\nscheme refers to the smart albums within your Canto application.\n\n**Examples:**\\\nOne value: image \nMulti values with OR: image|video|audio"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Jan 2021 15:39:47 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 15:39:46 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"facets\": [\n        {\n            \"mix\": 72,\n            \"max\": 144,\n            \"name\": \"resolution\",\n            \"min\": 72\n        },\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"name\": \"duration\",\n            \"min\": 9223372036854775807\n        },\n        {\n            \"name\": \"tags\",\n            \"value\": [\n                \"Backpack\",\n                \"Great Outdoors Go\",\n                \"lifestyle\",\n                \"hiking shoes\",\n                \"Clothing\",\n                \"Campaign\",\n                \"Great Outdoors\",\n                \"Logo\",\n                \"MarTech Event\",\n                \"Retail\",\n                \"logo\",\n                \"Brochure\",\n                \"Canto\",\n                \"Text\",\n                \"Accessories\",\n                \"Accessory\",\n                \"Advertisement\",\n                \"Autumn\",\n                \"Cushion\",\n                \"Face\",\n                \"Fall\",\n                \"Female\",\n                \"Flyer\",\n                \"Gate\",\n                \"Girl\",\n                \"Glasses\",\n                \"Hair\",\n                \"Human\",\n                \"Jacket\",\n                \"Lato font\",\n                \"Menu\",\n                \"Outdoors\",\n                \"Page\",\n                \"Paper\",\n                \"Person\",\n                \"Photoshop\",\n                \"Pillow\",\n                \"Poster\",\n                \"Sitting\",\n                \"Steering Wheel\"\n            ]\n        },\n        {\n            \"name\": \"keywords\",\n            \"value\": [\n                \"Product\",\n                \"Lifestyle\",\n                \"Campaign\",\n                \"Unkeyworded\",\n                \"Company\"\n            ]\n        },\n        {\n            \"mix\": 123,\n            \"max\": 5792,\n            \"name\": \"dimension\",\n            \"min\": 123\n        },\n        {\n            \"name\": \"owner\",\n            \"value\": [\n                \"canto-support@canto.com\"\n            ]\n        },\n        {\n            \"name\": \"orientation\"\n        },\n        {\n            \"name\": \"storageClass\",\n            \"value\": [\n                \"standard\"\n            ]\n        },\n        {\n            \"name\": \"approval\",\n            \"value\": [\n                \"Approved\",\n                \"Restricted\"\n            ]\n        },\n        {\n            \"mix\": 1609856887,\n            \"max\": 1609856992,\n            \"name\": \"created\",\n            \"min\": 1609856887\n        },\n        {\n            \"mix\": 1609856947,\n            \"max\": 1609856985,\n            \"name\": \"lastModified\",\n            \"min\": 1609856947\n        },\n        {\n            \"name\": \"scheme\",\n            \"value\": [\n                \"image\"\n            ]\n        },\n        {\n            \"mix\": 11730,\n            \"max\": 58268564,\n            \"name\": \"fileSize\",\n            \"min\": 11730\n        },\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"name\": \"pageNumber\",\n            \"min\": 9223372036854775807\n        },\n        {\n            \"name\":\"meta_multichoice_1\",\n            \"value\":[\n                \"A\",\n                \"B\",\n                \"C\"\n            ]\n        },\n        {\n            \"name\":\"meta_choice_2\",\n            \"value\":[\n                \"image\"\n            ]\n        },\n        {\n            \"name\":\"meta_label_0\",\n            \"value\":[\n                \"#FFFFFF\"\n            ]\n        }\n    ],\n    \"limit\": 100,\n    \"found\": 70,\n    \"sortBy\": \"time\",\n    \"sortDirection\": \"descending\",\n    \"matchExpr\": \"es\",\n    \"results\": [\n        {\n            \"keyword\": [\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/vr32c46pnl5c7b4m8r9lt0nu3d/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/vr32c46pnl5c7b4m8r9lt0nu3d\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/vr32c46pnl5c7b4m8r9lt0nu3d/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/vr32c46pnl5c7b4m8r9lt0nu3d/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/vr32c46pnl5c7b4m8r9lt0nu3d/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/vr32c46pnl5c7b4m8r9lt0nu3d/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=vr32c46pnl5c7b4m8r9lt0nu3d\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/vr32c46pnl5c7b4m8r9lt0nu3d/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/vr32c46pnl5c7b4m8r9lt0nu3d/LowJPG\"\n            },\n            \"tag\": [\n                \"Clothing\"\n            ],\n            \"time\": \"20210105062952000\",     // \"Date Modified\", \"Date Uploaded\" or \"Date Created\" according to the \"Sort & Display Assets By Date Field\" in the settings \n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-hiking-shoes-wedding.jpg\",\n            \"default\": {\n                \"Size\": \"2536375\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5681*3787 Pixels\",\n                \"Date uploaded\": \"20210105062952000\",\n                \"Date modified\": \"20210105062952000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"vr32c46pnl5c7b4m8r9lt0nu3d\",\n            \"size\": \"2536375\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/UT9AR\"\n                    },\n                    \"id\": \"UT9AR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/UT9AR\"\n                }\n            ],\n            \"width\": \"5681\",\n            \"height\": \"3787\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Restricted\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/vm3dd9i9e91traf4pf3aq8uq5d/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/vm3dd9i9e91traf4pf3aq8uq5d\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/vm3dd9i9e91traf4pf3aq8uq5d/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/vm3dd9i9e91traf4pf3aq8uq5d/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/vm3dd9i9e91traf4pf3aq8uq5d/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/vm3dd9i9e91traf4pf3aq8uq5d/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=vm3dd9i9e91traf4pf3aq8uq5d\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/vm3dd9i9e91traf4pf3aq8uq5d/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/vm3dd9i9e91traf4pf3aq8uq5d/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062951000\",    // \"Date Modified\", \"Date Uploaded\" or \"Date Created\" according to the \"Sort & Display Assets By Date Field\" in the settings \n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-canvas-4531-man.jpg\",\n            \"default\": {\n                \"Size\": \"774767\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"2832*4240 Pixels\",\n                \"Date uploaded\": \"20210105062951000\",\n                \"Date modified\": \"20210105062951000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"vm3dd9i9e91traf4pf3aq8uq5d\",\n            \"size\": \"774767\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"2832\",\n            \"height\": \"4240\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/tokjpfolep2pf1hcadhqu47947/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=tokjpfolep2pf1hcadhqu47947\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/tokjpfolep2pf1hcadhqu47947/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062949000\",         // \"Date Modified\", \"Date Uploaded\" or \"Date Created\" according to the \"Sort & Display Assets By Date Field\" in the settings \n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-leather-4527-coat.jpg\",\n            \"default\": {\n                \"Size\": \"2507173\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"6000*4000 Pixels\",\n                \"Date uploaded\": \"20210105062949000\",\n                \"Date modified\": \"20210105062949000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"tokjpfolep2pf1hcadhqu47947\",\n            \"size\": \"2507173\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\n                    },\n                    \"id\": \"JARDF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"SHFO1/JARDF\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"4000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/se3vu7hd611bf40s3l3o0va06o/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/se3vu7hd611bf40s3l3o0va06o\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/se3vu7hd611bf40s3l3o0va06o/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/se3vu7hd611bf40s3l3o0va06o/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/se3vu7hd611bf40s3l3o0va06o/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/se3vu7hd611bf40s3l3o0va06o/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=se3vu7hd611bf40s3l3o0va06o\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/se3vu7hd611bf40s3l3o0va06o/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/se3vu7hd611bf40s3l3o0va06o/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062948000\",     // \"Date Modified\", \"Date Uploaded\" or \"Date Created\" according to the \"Sort & Display Assets By Date Field\" in the settings \n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-green-4548-winter-man.jpg\",\n            \"default\": {\n                \"Size\": \"913016\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3264*4896 Pixels\",\n                \"Date uploaded\": \"20210105062948000\",\n                \"Date modified\": \"20210105062948000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"se3vu7hd611bf40s3l3o0va06o\",\n            \"size\": \"913016\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"3264\",\n            \"height\": \"4896\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/roa5taedld663bsna3hndad30o/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/roa5taedld663bsna3hndad30o\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/roa5taedld663bsna3hndad30o/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/roa5taedld663bsna3hndad30o/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/roa5taedld663bsna3hndad30o/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/roa5taedld663bsna3hndad30o/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=roa5taedld663bsna3hndad30o\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/roa5taedld663bsna3hndad30o/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/roa5taedld663bsna3hndad30o/LowJPG\"\n            },\n            \"tag\": [\n                \"Clothing\"\n            ],\n            \"time\": \"20210105062946000\",             // \"Date Modified\", \"Date Uploaded\" or \"Date Created\" according to the \"Sort & Display Assets By Date Field\" in the settings \n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": \"5\"\n            },\n            \"name\": \"lifestyle-backpacks-family-hiking.jpg\",\n            \"default\": {\n                \"Size\": \"3113705\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5760*3240 Pixels\",\n                \"Date uploaded\": \"20210105062946000\",\n                \"Date modified\": \"20210105062946000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"roa5taedld663bsna3hndad30o\",\n            \"size\": \"3113705\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/UT9AR\"\n                    },\n                    \"id\": \"UT9AR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/UT9AR\"\n                }\n            ],\n            \"width\": \"5760\",\n            \"height\": \"3240\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/pvaopkuh6p67t06lk11n64et24/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=pvaopkuh6p67t06lk11n64et24\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/pvaopkuh6p67t06lk11n64et24/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062945000\",             // \"Date Modified\", \"Date Uploaded\" or \"Date Created\" according to the \"Sort & Display Assets By Date Field\" in the settings \n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-grey-4515-photographer.jpg\",\n            \"default\": {\n                \"Size\": \"3405164\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3168*4752 Pixels\",\n                \"Date uploaded\": \"20210105062945000\",\n                \"Date modified\": \"20210105062945000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"pvaopkuh6p67t06lk11n64et24\",\n            \"size\": \"3405164\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\n                    },\n                    \"id\": \"JARDF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"SHFO1/JARDF\"\n                }\n            ],\n            \"width\": \"3168\",\n            \"height\": \"4752\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Lifestyle\",\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/p8ag9gkd094v307g69ugnor30a/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/p8ag9gkd094v307g69ugnor30a\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/p8ag9gkd094v307g69ugnor30a/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p8ag9gkd094v307g69ugnor30a/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p8ag9gkd094v307g69ugnor30a/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/p8ag9gkd094v307g69ugnor30a/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=p8ag9gkd094v307g69ugnor30a\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/p8ag9gkd094v307g69ugnor30a/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p8ag9gkd094v307g69ugnor30a/LowJPG\"\n            },\n            \"tag\": [\n                \"Clothing\"\n            ],\n            \"time\": \"20210105062944000\",         // \"Date Modified\", \"Date Uploaded\" or \"Date Created\" according to the \"Sort & Display Assets By Date Field\" in the settings \n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"clothing-shirt-jackie.jpg\",\n            \"default\": {\n                \"Size\": \"1612095\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4333*2889 Pixels\",\n                \"Date uploaded\": \"20210105062944000\",\n                \"Date modified\": \"20210105062944000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"Hewlett-Packard\",\n                \"Date Created\": \"2019-12-18 23:33:05\",\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"p8ag9gkd094v307g69ugnor30a\",\n            \"size\": \"1612095\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/UT9AR\"\n                    },\n                    \"id\": \"UT9AR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/UT9AR\"\n                }\n            ],\n            \"width\": \"4333\",\n            \"height\": \"2889\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/p74am1pqa17fd8oe541ekihu46/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/p74am1pqa17fd8oe541ekihu46\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/p74am1pqa17fd8oe541ekihu46/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p74am1pqa17fd8oe541ekihu46/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p74am1pqa17fd8oe541ekihu46/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/p74am1pqa17fd8oe541ekihu46/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=p74am1pqa17fd8oe541ekihu46\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/p74am1pqa17fd8oe541ekihu46/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p74am1pqa17fd8oe541ekihu46/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062942000\",                 // \"Date Modified\", \"Date Uploaded\" or \"Date Created\" according to the \"Sort & Display Assets By Date Field\" in the settings \n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"backpack-3230-alps.jpg\",\n            \"default\": {\n                \"Size\": \"2700160\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4928*3043 Pixels\",\n                \"Date uploaded\": \"20210105062942000\",\n                \"Date modified\": \"20210105062942000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"p74am1pqa17fd8oe541ekihu46\",\n            \"size\": \"2700160\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/T7ALK\"\n                    },\n                    \"id\": \"T7ALK\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/T7ALK\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/KU8U8\"\n                    },\n                    \"id\": \"KU8U8\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/KU8U8\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/K2842\"\n                    },\n                    \"id\": \"K2842\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/K2842\"\n                }\n            ],\n            \"width\": \"4928\",\n            \"height\": \"3043\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/p4sei4oe7p2epe27lkrol1n974/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/p4sei4oe7p2epe27lkrol1n974\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/p4sei4oe7p2epe27lkrol1n974/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p4sei4oe7p2epe27lkrol1n974/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p4sei4oe7p2epe27lkrol1n974/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/p4sei4oe7p2epe27lkrol1n974/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=p4sei4oe7p2epe27lkrol1n974\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/p4sei4oe7p2epe27lkrol1n974/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p4sei4oe7p2epe27lkrol1n974/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062941000\",             // \"Date Modified\", \"Date Uploaded\" or \"Date Created\" according to the \"Sort & Display Assets By Date Field\" in the settings \n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-mini-black-4533-orange.jpg\",\n            \"default\": {\n                \"Size\": \"752231\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"2400*3000 Pixels\",\n                \"Date uploaded\": \"20210105062941000\",\n                \"Date modified\": \"20210105062941000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"p4sei4oe7p2epe27lkrol1n974\",\n            \"size\": \"752231\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"2400\",\n            \"height\": \"3000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/op4donlpah2et1530ave1k8c37/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/op4donlpah2et1530ave1k8c37\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/op4donlpah2et1530ave1k8c37/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/op4donlpah2et1530ave1k8c37/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/op4donlpah2et1530ave1k8c37/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/op4donlpah2et1530ave1k8c37/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=op4donlpah2et1530ave1k8c37\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/op4donlpah2et1530ave1k8c37/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/op4donlpah2et1530ave1k8c37/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062939000\",             // \"Date Modified\", \"Date Uploaded\" or \"Date Created\" according to the \"Sort & Display Assets By Date Field\" in the settings \n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8561-cliff.jpg\",\n            \"default\": {\n                \"Size\": \"3989073\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3264*4912 Pixels\",\n                \"Date uploaded\": \"20210105062939000\",\n                \"Date modified\": \"20210105062939000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"op4donlpah2et1530ave1k8c37\",\n            \"size\": \"3989073\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"3264\",\n            \"height\": \"4912\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/olqogk3l8d1nl4el3dq5t8pb3d/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/olqogk3l8d1nl4el3dq5t8pb3d\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/olqogk3l8d1nl4el3dq5t8pb3d/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/olqogk3l8d1nl4el3dq5t8pb3d/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/olqogk3l8d1nl4el3dq5t8pb3d/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/olqogk3l8d1nl4el3dq5t8pb3d/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=olqogk3l8d1nl4el3dq5t8pb3d\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/olqogk3l8d1nl4el3dq5t8pb3d/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/olqogk3l8d1nl4el3dq5t8pb3d/LowJPG\"\n            },\n            \"tag\": [\n                \"Clothing\"\n            ],\n            \"time\": \"20210105062938000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-friends-clothing.jpg\",\n            \"default\": {\n                \"Size\": \"4522747\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"6000*4000 Pixels\",\n                \"Date uploaded\": \"20210105062938000\",\n                \"Date modified\": \"20210105062938000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"olqogk3l8d1nl4el3dq5t8pb3d\",\n            \"size\": \"4522747\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/UT9AR\"\n                    },\n                    \"id\": \"UT9AR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/UT9AR\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"4000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/o9l1spr8tt04d0klfg2auch563/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/o9l1spr8tt04d0klfg2auch563\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/o9l1spr8tt04d0klfg2auch563/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/o9l1spr8tt04d0klfg2auch563/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/o9l1spr8tt04d0klfg2auch563/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/o9l1spr8tt04d0klfg2auch563/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=o9l1spr8tt04d0klfg2auch563\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/o9l1spr8tt04d0klfg2auch563/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/o9l1spr8tt04d0klfg2auch563/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062936000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-hiking-forest.jpg\",\n            \"default\": {\n                \"Size\": \"4014064\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3458*4322 Pixels\",\n                \"Date uploaded\": \"20210105062936000\",\n                \"Date modified\": \"20210105062936000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"o9l1spr8tt04d0klfg2auch563\",\n            \"size\": \"4014064\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"3458\",\n            \"height\": \"4322\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/nanq62jn2p6hje8b86h6f84m3a/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/nanq62jn2p6hje8b86h6f84m3a\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/nanq62jn2p6hje8b86h6f84m3a/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/nanq62jn2p6hje8b86h6f84m3a/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/nanq62jn2p6hje8b86h6f84m3a/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/nanq62jn2p6hje8b86h6f84m3a/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=nanq62jn2p6hje8b86h6f84m3a\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/nanq62jn2p6hje8b86h6f84m3a/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/nanq62jn2p6hje8b86h6f84m3a/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062934000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"clothing-jacket-4500-snow.jpg\",\n            \"default\": {\n                \"Size\": \"4382035\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5184*3456 Pixels\",\n                \"Date uploaded\": \"20210105062934000\",\n                \"Date modified\": \"20210105062934000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"nanq62jn2p6hje8b86h6f84m3a\",\n            \"size\": \"4382035\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/HSR4O\"\n                    },\n                    \"id\": \"HSR4O\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/HSR4O\"\n                }\n            ],\n            \"width\": \"5184\",\n            \"height\": \"3456\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/mmrcpupokt2cna2trr2ri6i351/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/mmrcpupokt2cna2trr2ri6i351\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/mmrcpupokt2cna2trr2ri6i351/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/mmrcpupokt2cna2trr2ri6i351/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/mmrcpupokt2cna2trr2ri6i351/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/mmrcpupokt2cna2trr2ri6i351/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=mmrcpupokt2cna2trr2ri6i351\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/mmrcpupokt2cna2trr2ri6i351/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/mmrcpupokt2cna2trr2ri6i351/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062933000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8554-log.jpg\",\n            \"default\": {\n                \"Size\": \"2468315\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5616*3744 Pixels\",\n                \"Date uploaded\": \"20210105062933000\",\n                \"Date modified\": \"20210105062933000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"mmrcpupokt2cna2trr2ri6i351\",\n            \"size\": \"2468315\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"5616\",\n            \"height\": \"3744\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/lr3evvp3kh2vb07jpeti7qor2k/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/lr3evvp3kh2vb07jpeti7qor2k\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/lr3evvp3kh2vb07jpeti7qor2k/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lr3evvp3kh2vb07jpeti7qor2k/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lr3evvp3kh2vb07jpeti7qor2k/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/lr3evvp3kh2vb07jpeti7qor2k/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=lr3evvp3kh2vb07jpeti7qor2k\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/lr3evvp3kh2vb07jpeti7qor2k/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lr3evvp3kh2vb07jpeti7qor2k/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062931000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-grey-4513-hike.jpg\",\n            \"default\": {\n                \"Size\": \"5961378\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5760*3840 Pixels\",\n                \"Date uploaded\": \"20210105062931000\",\n                \"Date modified\": \"20210105062931000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"lr3evvp3kh2vb07jpeti7qor2k\",\n            \"size\": \"5961378\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/KU8U8\"\n                    },\n                    \"id\": \"KU8U8\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/KU8U8\"\n                }\n            ],\n            \"width\": \"5760\",\n            \"height\": \"3840\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Lifestyle\",\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/lo7h438mu553dddvdhfqp1qo03/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/lo7h438mu553dddvdhfqp1qo03\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/lo7h438mu553dddvdhfqp1qo03/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lo7h438mu553dddvdhfqp1qo03/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lo7h438mu553dddvdhfqp1qo03/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/lo7h438mu553dddvdhfqp1qo03/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=lo7h438mu553dddvdhfqp1qo03\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/lo7h438mu553dddvdhfqp1qo03/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lo7h438mu553dddvdhfqp1qo03/LowJPG\"\n            },\n            \"tag\": [\n                \"Clothing\"\n            ],\n            \"time\": \"20210105062930000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"orange-hair-woman-coat.jpg\",\n            \"default\": {\n                \"Size\": \"3441518\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5616*3744 Pixels\",\n                \"Date uploaded\": \"20210105062930000\",\n                \"Date modified\": \"20210105062930000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"Hewlett-Packard\",\n                \"Date Created\": \"2019-12-18 23:33:08\",\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"lo7h438mu553dddvdhfqp1qo03\",\n            \"size\": \"3441518\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/UT9AR\"\n                    },\n                    \"id\": \"UT9AR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/UT9AR\"\n                }\n            ],\n            \"width\": \"5616\",\n            \"height\": \"3744\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/ll4ar2pe8l0l5478l138iukh79/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/ll4ar2pe8l0l5478l138iukh79\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/ll4ar2pe8l0l5478l138iukh79/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/ll4ar2pe8l0l5478l138iukh79/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/ll4ar2pe8l0l5478l138iukh79/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/ll4ar2pe8l0l5478l138iukh79/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=ll4ar2pe8l0l5478l138iukh79\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/ll4ar2pe8l0l5478l138iukh79/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/ll4ar2pe8l0l5478l138iukh79/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062928000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-blue-4517-utah.jpg\",\n            \"default\": {\n                \"Size\": \"1620201\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4896*3264 Pixels\",\n                \"Date uploaded\": \"20210105062928000\",\n                \"Date modified\": \"20210105062928000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"ll4ar2pe8l0l5478l138iukh79\",\n            \"size\": \"1620201\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"4896\",\n            \"height\": \"3264\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/l3mhkea1jt0ilbsuan22o7327l/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/l3mhkea1jt0ilbsuan22o7327l\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/l3mhkea1jt0ilbsuan22o7327l/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/l3mhkea1jt0ilbsuan22o7327l/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/l3mhkea1jt0ilbsuan22o7327l/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/l3mhkea1jt0ilbsuan22o7327l/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=l3mhkea1jt0ilbsuan22o7327l\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/l3mhkea1jt0ilbsuan22o7327l/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/l3mhkea1jt0ilbsuan22o7327l/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062927000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-green-4520-gear.jpg\",\n            \"default\": {\n                \"Size\": \"2790666\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3648*4560 Pixels\",\n                \"Date uploaded\": \"20210105062927000\",\n                \"Date modified\": \"20210105062927000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"l3mhkea1jt0ilbsuan22o7327l\",\n            \"size\": \"2790666\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"3648\",\n            \"height\": \"4560\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/kup4u0t4956a14o7c2hp2vei61/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/kup4u0t4956a14o7c2hp2vei61\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/kup4u0t4956a14o7c2hp2vei61/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kup4u0t4956a14o7c2hp2vei61/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kup4u0t4956a14o7c2hp2vei61/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/kup4u0t4956a14o7c2hp2vei61/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=kup4u0t4956a14o7c2hp2vei61\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/kup4u0t4956a14o7c2hp2vei61/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kup4u0t4956a14o7c2hp2vei61/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062925000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8557-summer-soles.jpg\",\n            \"default\": {\n                \"Size\": \"1872452\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4896*3264 Pixels\",\n                \"Date uploaded\": \"20210105062925000\",\n                \"Date modified\": \"20210105062925000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"kup4u0t4956a14o7c2hp2vei61\",\n            \"size\": \"1872452\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"4896\",\n            \"height\": \"3264\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Company\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/kt06v0c9gl1dl01cu60vdkro43/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/kt06v0c9gl1dl01cu60vdkro43\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/kt06v0c9gl1dl01cu60vdkro43/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kt06v0c9gl1dl01cu60vdkro43/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kt06v0c9gl1dl01cu60vdkro43/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/kt06v0c9gl1dl01cu60vdkro43/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=kt06v0c9gl1dl01cu60vdkro43\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/kt06v0c9gl1dl01cu60vdkro43/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kt06v0c9gl1dl01cu60vdkro43/LowJPG\"\n            },\n            \"tag\": [\n                \"Campaign\",\n                \"Great Outdoors\",\n                \"Logo\",\n                \"MarTech Event\",\n                \"Outdoors\",\n                \"Retail\",\n                \"Text\",\n                \"logo\"\n            ],\n            \"time\": \"20210105062924000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"gog-logo-lg-crop.png\",\n            \"default\": {\n                \"Size\": \"25153\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"386*123 Pixels\",\n                \"Date uploaded\": \"20210105062924000\",\n                \"Date modified\": \"20210105062924000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": null,\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"kt06v0c9gl1dl01cu60vdkro43\",\n            \"size\": \"25153\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"description\": \"Great Outdoors Go logo\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OLPCR\"\n                    },\n                    \"id\": \"OLPCR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/OLPCR\"\n                }\n            ],\n            \"width\": \"386\",\n            \"height\": \"123\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Company\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/knqeg2pq2p7rra5ogddbbl9e0d/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/knqeg2pq2p7rra5ogddbbl9e0d\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/knqeg2pq2p7rra5ogddbbl9e0d/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/knqeg2pq2p7rra5ogddbbl9e0d/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/knqeg2pq2p7rra5ogddbbl9e0d/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/knqeg2pq2p7rra5ogddbbl9e0d/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=knqeg2pq2p7rra5ogddbbl9e0d\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/knqeg2pq2p7rra5ogddbbl9e0d/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/knqeg2pq2p7rra5ogddbbl9e0d/LowJPG\"\n            },\n            \"tag\": [\n                \"Advertisement\",\n                \"Brochure\",\n                \"Canto\",\n                \"Flyer\",\n                \"MarTech Event\",\n                \"Menu\",\n                \"Page\",\n                \"Paper\",\n                \"Poster\",\n                \"Text\"\n            ],\n            \"time\": \"20210105062923000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"Canto-Martech-Coffee-Back.ai\",\n            \"default\": {\n                \"Size\": \"7118023\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"630*751 Pixels\",\n                \"Date uploaded\": \"20210105062923000\",\n                \"Date modified\": \"20210105062923000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"Adobe Illustrator(R) 16.0\",\n                \"Date Created\": \"2018-04-02 10:48:29\",\n                \"Creation Tool\": null,\n                \"Resolution\": null\n            },\n            \"id\": \"knqeg2pq2p7rra5ogddbbl9e0d\",\n            \"size\": \"7118023\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"description\": \"Print\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LQ9NI\"\n                    },\n                    \"id\": \"LQ9NI\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"G4T0V/LQ9NI\"\n                }\n            ],\n            \"width\": \"630\",\n            \"height\": \"751\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/kg0nm799gl1hfcd1b9gi8i9235/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/kg0nm799gl1hfcd1b9gi8i9235\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/kg0nm799gl1hfcd1b9gi8i9235/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kg0nm799gl1hfcd1b9gi8i9235/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kg0nm799gl1hfcd1b9gi8i9235/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/kg0nm799gl1hfcd1b9gi8i9235/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=kg0nm799gl1hfcd1b9gi8i9235\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/kg0nm799gl1hfcd1b9gi8i9235/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kg0nm799gl1hfcd1b9gi8i9235/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062921000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-backpack-5903.jpg\",\n            \"default\": {\n                \"Size\": \"3820649\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"6000*4000 Pixels\",\n                \"Date uploaded\": \"20210105062921000\",\n                \"Date modified\": \"20210105062921000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"kg0nm799gl1hfcd1b9gi8i9235\",\n            \"size\": \"3820649\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"4000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/j84b47ck012cd29sive5u7u535/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/j84b47ck012cd29sive5u7u535\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/j84b47ck012cd29sive5u7u535/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/j84b47ck012cd29sive5u7u535/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/j84b47ck012cd29sive5u7u535/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/j84b47ck012cd29sive5u7u535/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=j84b47ck012cd29sive5u7u535\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/j84b47ck012cd29sive5u7u535/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/j84b47ck012cd29sive5u7u535/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062920000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-4543-view.jpg\",\n            \"default\": {\n                \"Size\": \"3911813\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3808*3024 Pixels\",\n                \"Date uploaded\": \"20210105062920000\",\n                \"Date modified\": \"20210105062920000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"j84b47ck012cd29sive5u7u535\",\n            \"size\": \"3911813\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"3808\",\n            \"height\": \"3024\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/j5abfvktop22bbt0aqle3o4g57/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/j5abfvktop22bbt0aqle3o4g57\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/j5abfvktop22bbt0aqle3o4g57/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/j5abfvktop22bbt0aqle3o4g57/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/j5abfvktop22bbt0aqle3o4g57/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/j5abfvktop22bbt0aqle3o4g57/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=j5abfvktop22bbt0aqle3o4g57\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/j5abfvktop22bbt0aqle3o4g57/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/j5abfvktop22bbt0aqle3o4g57/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062918000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"kristina-wagner-PKLoOomB5Cs-unsplash.jpg\",\n            \"default\": {\n                \"Size\": \"2431757\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3600*2403 Pixels\",\n                \"Date uploaded\": \"20210105062918000\",\n                \"Date modified\": \"20210105062918000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"j5abfvktop22bbt0aqle3o4g57\",\n            \"size\": \"2431757\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/Q7OS4\"\n                    },\n                    \"id\": \"Q7OS4\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/Q7OS4\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"3600\",\n            \"height\": \"2403\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/hr2p2o6ahp2ijfkt4dsa52c31p/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/hr2p2o6ahp2ijfkt4dsa52c31p\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/hr2p2o6ahp2ijfkt4dsa52c31p/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/hr2p2o6ahp2ijfkt4dsa52c31p/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/hr2p2o6ahp2ijfkt4dsa52c31p/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/hr2p2o6ahp2ijfkt4dsa52c31p/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=hr2p2o6ahp2ijfkt4dsa52c31p\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/hr2p2o6ahp2ijfkt4dsa52c31p/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/hr2p2o6ahp2ijfkt4dsa52c31p/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062917000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-blue-4525-winter-hike.jpg\",\n            \"default\": {\n                \"Size\": \"2258457\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5428*3619 Pixels\",\n                \"Date uploaded\": \"20210105062917000\",\n                \"Date modified\": \"20210105062917000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"hr2p2o6ahp2ijfkt4dsa52c31p\",\n            \"size\": \"2258457\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"5428\",\n            \"height\": \"3619\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/h2cqt19f3p7vn8fhjdb0c8iq38/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/h2cqt19f3p7vn8fhjdb0c8iq38\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/h2cqt19f3p7vn8fhjdb0c8iq38/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/h2cqt19f3p7vn8fhjdb0c8iq38/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/h2cqt19f3p7vn8fhjdb0c8iq38/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/h2cqt19f3p7vn8fhjdb0c8iq38/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=h2cqt19f3p7vn8fhjdb0c8iq38\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/h2cqt19f3p7vn8fhjdb0c8iq38/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/h2cqt19f3p7vn8fhjdb0c8iq38/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062915000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"outdoor-gear-001.jpg\",\n            \"default\": {\n                \"Size\": \"1713767\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4356*3442 Pixels\",\n                \"Date uploaded\": \"20210105062915000\",\n                \"Date modified\": \"20210105062915000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"h2cqt19f3p7vn8fhjdb0c8iq38\",\n            \"size\": \"1713767\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"4356\",\n            \"height\": \"3442\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/gqg0hf5ecp10l9d7f47l8nlq54/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/gqg0hf5ecp10l9d7f47l8nlq54\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/gqg0hf5ecp10l9d7f47l8nlq54/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/gqg0hf5ecp10l9d7f47l8nlq54/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/gqg0hf5ecp10l9d7f47l8nlq54/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/gqg0hf5ecp10l9d7f47l8nlq54/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=gqg0hf5ecp10l9d7f47l8nlq54\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/gqg0hf5ecp10l9d7f47l8nlq54/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/gqg0hf5ecp10l9d7f47l8nlq54/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062914000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-mountain-hike-004.jpg\",\n            \"default\": {\n                \"Size\": \"2075282\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4871*3237 Pixels\",\n                \"Date uploaded\": \"20210105062914000\",\n                \"Date modified\": \"20210105062914000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"gqg0hf5ecp10l9d7f47l8nlq54\",\n            \"size\": \"2075282\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/K2842\"\n                    },\n                    \"id\": \"K2842\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/K2842\"\n                }\n            ],\n            \"width\": \"4871\",\n            \"height\": \"3237\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/gb4te6rl7h73n8236e2nsgi465/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/gb4te6rl7h73n8236e2nsgi465\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/gb4te6rl7h73n8236e2nsgi465/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/gb4te6rl7h73n8236e2nsgi465/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/gb4te6rl7h73n8236e2nsgi465/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/gb4te6rl7h73n8236e2nsgi465/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=gb4te6rl7h73n8236e2nsgi465\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/gb4te6rl7h73n8236e2nsgi465/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/gb4te6rl7h73n8236e2nsgi465/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062913000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8552-brown-rocks.jpg\",\n            \"default\": {\n                \"Size\": \"1106941\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5760*3840 Pixels\",\n                \"Date uploaded\": \"20210105062913000\",\n                \"Date modified\": \"20210105062913000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"gb4te6rl7h73n8236e2nsgi465\",\n            \"size\": \"1106941\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"5760\",\n            \"height\": \"3840\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/g1dgqq3jkl2hp1smqenv8eoq5e/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=g1dgqq3jkl2hp1smqenv8eoq5e\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/g1dgqq3jkl2hp1smqenv8eoq5e/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062911000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-grey-4512-utah.jpg\",\n            \"default\": {\n                \"Size\": \"3204622\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4495*3000 Pixels\",\n                \"Date uploaded\": \"20210105062911000\",\n                \"Date modified\": \"20210105062911000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"g1dgqq3jkl2hp1smqenv8eoq5e\",\n            \"size\": \"3204622\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/KU8U8\"\n                    },\n                    \"id\": \"KU8U8\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/KU8U8\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\n                    },\n                    \"id\": \"JARDF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"SHFO1/JARDF\"\n                }\n            ],\n            \"width\": \"4495\",\n            \"height\": \"3000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/fpdte3rh8513f6ojf0sp9l005q/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/fpdte3rh8513f6ojf0sp9l005q\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/fpdte3rh8513f6ojf0sp9l005q/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/fpdte3rh8513f6ojf0sp9l005q/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/fpdte3rh8513f6ojf0sp9l005q/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/fpdte3rh8513f6ojf0sp9l005q/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=fpdte3rh8513f6ojf0sp9l005q\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/fpdte3rh8513f6ojf0sp9l005q/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/fpdte3rh8513f6ojf0sp9l005q/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062910000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-blue-4509.jpg\",\n            \"default\": {\n                \"Size\": \"2248752\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3456*4608 Pixels\",\n                \"Date uploaded\": \"20210105062910000\",\n                \"Date modified\": \"20210105062910000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"fpdte3rh8513f6ojf0sp9l005q\",\n            \"size\": \"2248752\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/T7ALK\"\n                    },\n                    \"id\": \"T7ALK\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/T7ALK\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/KU8U8\"\n                    },\n                    \"id\": \"KU8U8\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/KU8U8\"\n                }\n            ],\n            \"width\": \"3456\",\n            \"height\": \"4608\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/f6h20aforl1v70i5n228sb4t2a/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/f6h20aforl1v70i5n228sb4t2a\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/f6h20aforl1v70i5n228sb4t2a/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/f6h20aforl1v70i5n228sb4t2a/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/f6h20aforl1v70i5n228sb4t2a/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/f6h20aforl1v70i5n228sb4t2a/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=f6h20aforl1v70i5n228sb4t2a\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/f6h20aforl1v70i5n228sb4t2a/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/f6h20aforl1v70i5n228sb4t2a/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062908000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8551-urban-fall.jpg\",\n            \"default\": {\n                \"Size\": \"4108075\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5472*3648 Pixels\",\n                \"Date uploaded\": \"20210105062908000\",\n                \"Date modified\": \"20210105062908000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"f6h20aforl1v70i5n228sb4t2a\",\n            \"size\": \"4108075\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/SB9RU\"\n                    },\n                    \"id\": \"SB9RU\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/SB9RU\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"5472\",\n            \"height\": \"3648\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/epnoj07hft395clgd3mqg7it1d/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=epnoj07hft395clgd3mqg7it1d\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/epnoj07hft395clgd3mqg7it1d/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062907000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-forest-green-4582-photographer.jpg\",\n            \"default\": {\n                \"Size\": \"1443993\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5184*2920 Pixels\",\n                \"Date uploaded\": \"20210105062907000\",\n                \"Date modified\": \"20210105062907000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"epnoj07hft395clgd3mqg7it1d\",\n            \"size\": \"1443993\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"5184\",\n            \"height\": \"2920\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/ek1fasbid5295d8nu6p6rgi406/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/ek1fasbid5295d8nu6p6rgi406\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/ek1fasbid5295d8nu6p6rgi406/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/ek1fasbid5295d8nu6p6rgi406/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/ek1fasbid5295d8nu6p6rgi406/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/ek1fasbid5295d8nu6p6rgi406/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=ek1fasbid5295d8nu6p6rgi406\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/ek1fasbid5295d8nu6p6rgi406/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/ek1fasbid5295d8nu6p6rgi406/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062905000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-black-4581-peru.jpg\",\n            \"default\": {\n                \"Size\": \"1720960\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3650*3621 Pixels\",\n                \"Date uploaded\": \"20210105062905000\",\n                \"Date modified\": \"20210105062905000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"ek1fasbid5295d8nu6p6rgi406\",\n            \"size\": \"1720960\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"3650\",\n            \"height\": \"3621\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/e0jpen6nsp1f719tb5rci4990p/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/e0jpen6nsp1f719tb5rci4990p\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/e0jpen6nsp1f719tb5rci4990p/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/e0jpen6nsp1f719tb5rci4990p/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/e0jpen6nsp1f719tb5rci4990p/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/e0jpen6nsp1f719tb5rci4990p/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=e0jpen6nsp1f719tb5rci4990p\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/e0jpen6nsp1f719tb5rci4990p/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/e0jpen6nsp1f719tb5rci4990p/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062904000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpacks-4566-with-tents.jpg\",\n            \"default\": {\n                \"Size\": \"747221\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"2031*1524 Pixels\",\n                \"Date uploaded\": \"20210105062904000\",\n                \"Date modified\": \"20210105062904000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"e0jpen6nsp1f719tb5rci4990p\",\n            \"size\": \"747221\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"2031\",\n            \"height\": \"1524\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/e089f9o5t16293rkmuqod6oe35/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/e089f9o5t16293rkmuqod6oe35\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/e089f9o5t16293rkmuqod6oe35/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/e089f9o5t16293rkmuqod6oe35/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/e089f9o5t16293rkmuqod6oe35/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/e089f9o5t16293rkmuqod6oe35/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=e089f9o5t16293rkmuqod6oe35\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/e089f9o5t16293rkmuqod6oe35/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/e089f9o5t16293rkmuqod6oe35/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062903000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-black-brown-4538-relax.jpg\",\n            \"default\": {\n                \"Size\": \"2435431\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4000*2667 Pixels\",\n                \"Date uploaded\": \"20210105062903000\",\n                \"Date modified\": \"20210105062903000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"e089f9o5t16293rkmuqod6oe35\",\n            \"size\": \"2435431\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/T7ALK\"\n                    },\n                    \"id\": \"T7ALK\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/T7ALK\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/KU8U8\"\n                    },\n                    \"id\": \"KU8U8\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/KU8U8\"\n                }\n            ],\n            \"width\": \"4000\",\n            \"height\": \"2667\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Lifestyle\",\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/dst53a6gi968f7ldaquiik0c32/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/dst53a6gi968f7ldaquiik0c32\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/dst53a6gi968f7ldaquiik0c32/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/dst53a6gi968f7ldaquiik0c32/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/dst53a6gi968f7ldaquiik0c32/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/dst53a6gi968f7ldaquiik0c32/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=dst53a6gi968f7ldaquiik0c32\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/dst53a6gi968f7ldaquiik0c32/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/dst53a6gi968f7ldaquiik0c32/LowJPG\"\n            },\n            \"tag\": [\n                \"Jacket\"\n            ],\n            \"time\": \"20210105062901000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Outerwear\"\n                ],\n                \"Product ID\": \"6565\",\n                \"Asset Type\": [\n                    \"Lifestyle\",\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"clothing-jacket-6565-rock-climbing.jpg\",\n            \"default\": {\n                \"Size\": \"5063387\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"8688*5792 Pixels\",\n                \"Date uploaded\": \"20210105062901000\",\n                \"Date modified\": \"20210105062901000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"dst53a6gi968f7ldaquiik0c32\",\n            \"size\": \"5063387\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/UT9AR\"\n                    },\n                    \"id\": \"UT9AR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/UT9AR\"\n                }\n            ],\n            \"width\": \"8688\",\n            \"height\": \"5792\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/cvdh032ch95v169to2b7bf8v0f/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/cvdh032ch95v169to2b7bf8v0f\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/cvdh032ch95v169to2b7bf8v0f/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cvdh032ch95v169to2b7bf8v0f/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cvdh032ch95v169to2b7bf8v0f/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/cvdh032ch95v169to2b7bf8v0f/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=cvdh032ch95v169to2b7bf8v0f\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/cvdh032ch95v169to2b7bf8v0f/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cvdh032ch95v169to2b7bf8v0f/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062900000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-backpack-3902.jpg\",\n            \"default\": {\n                \"Size\": \"4549016\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4000*6000 Pixels\",\n                \"Date uploaded\": \"20210105062900000\",\n                \"Date modified\": \"20210105062900000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"cvdh032ch95v169to2b7bf8v0f\",\n            \"size\": \"4549016\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"4000\",\n            \"height\": \"6000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/cto0gbga5h7et411jelup3hi4n/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/cto0gbga5h7et411jelup3hi4n\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/cto0gbga5h7et411jelup3hi4n/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cto0gbga5h7et411jelup3hi4n/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cto0gbga5h7et411jelup3hi4n/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/cto0gbga5h7et411jelup3hi4n/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=cto0gbga5h7et411jelup3hi4n\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/cto0gbga5h7et411jelup3hi4n/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cto0gbga5h7et411jelup3hi4n/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062858000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-blue-4545-with-tent.jpg\",\n            \"default\": {\n                \"Size\": \"5148727\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3264*4896 Pixels\",\n                \"Date uploaded\": \"20210105062858000\",\n                \"Date modified\": \"20210105062858000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"cto0gbga5h7et411jelup3hi4n\",\n            \"size\": \"5148727\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/KU8U8\"\n                    },\n                    \"id\": \"KU8U8\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/KU8U8\"\n                }\n            ],\n            \"width\": \"3264\",\n            \"height\": \"4896\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/cfcvf6tk7d75pbu6qmsqdtc33q/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/cfcvf6tk7d75pbu6qmsqdtc33q\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/cfcvf6tk7d75pbu6qmsqdtc33q/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cfcvf6tk7d75pbu6qmsqdtc33q/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cfcvf6tk7d75pbu6qmsqdtc33q/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/cfcvf6tk7d75pbu6qmsqdtc33q/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=cfcvf6tk7d75pbu6qmsqdtc33q\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/cfcvf6tk7d75pbu6qmsqdtc33q/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cfcvf6tk7d75pbu6qmsqdtc33q/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062857000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-7839-mountains.jpg\",\n            \"default\": {\n                \"Size\": \"3244192\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"6000*4000 Pixels\",\n                \"Date uploaded\": \"20210105062857000\",\n                \"Date modified\": \"20210105062857000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"cfcvf6tk7d75pbu6qmsqdtc33q\",\n            \"size\": \"3244192\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/SB9RU\"\n                    },\n                    \"id\": \"SB9RU\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/SB9RU\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"4000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/cddhevrbj971bb8q21us9c7p01/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/cddhevrbj971bb8q21us9c7p01\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/cddhevrbj971bb8q21us9c7p01/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cddhevrbj971bb8q21us9c7p01/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cddhevrbj971bb8q21us9c7p01/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/cddhevrbj971bb8q21us9c7p01/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=cddhevrbj971bb8q21us9c7p01\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/cddhevrbj971bb8q21us9c7p01/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cddhevrbj971bb8q21us9c7p01/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062855000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-mountain-hike.jpg\",\n            \"default\": {\n                \"Size\": \"1884625\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4264*2136 Pixels\",\n                \"Date uploaded\": \"20210105062855000\",\n                \"Date modified\": \"20210105062855000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"cddhevrbj971bb8q21us9c7p01\",\n            \"size\": \"1884625\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"4264\",\n            \"height\": \"2136\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/c70b70k0ot4d73k2huk079g91e/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/c70b70k0ot4d73k2huk079g91e\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/c70b70k0ot4d73k2huk079g91e/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/c70b70k0ot4d73k2huk079g91e/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/c70b70k0ot4d73k2huk079g91e/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/c70b70k0ot4d73k2huk079g91e/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=c70b70k0ot4d73k2huk079g91e\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/c70b70k0ot4d73k2huk079g91e/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/c70b70k0ot4d73k2huk079g91e/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062854000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"clothing-backpack-4593.jpg\",\n            \"default\": {\n                \"Size\": \"1633814\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"6000*4000 Pixels\",\n                \"Date uploaded\": \"20210105062854000\",\n                \"Date modified\": \"20210105062854000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"c70b70k0ot4d73k2huk079g91e\",\n            \"size\": \"1633814\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/SB9RU\"\n                    },\n                    \"id\": \"SB9RU\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/SB9RU\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"4000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/bp6bveij9p24dcueprfa0fss21/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/bp6bveij9p24dcueprfa0fss21\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/bp6bveij9p24dcueprfa0fss21/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/bp6bveij9p24dcueprfa0fss21/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/bp6bveij9p24dcueprfa0fss21/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/bp6bveij9p24dcueprfa0fss21/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=bp6bveij9p24dcueprfa0fss21\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/bp6bveij9p24dcueprfa0fss21/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/bp6bveij9p24dcueprfa0fss21/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062852000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8562-gear.jpg\",\n            \"default\": {\n                \"Size\": \"2676479\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4000*5000 Pixels\",\n                \"Date uploaded\": \"20210105062852000\",\n                \"Date modified\": \"20210105062852000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"bp6bveij9p24dcueprfa0fss21\",\n            \"size\": \"2676479\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"4000\",\n            \"height\": \"5000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Company\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/b71qtk45ud11je1q8gsmpi8202/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/b71qtk45ud11je1q8gsmpi8202\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/b71qtk45ud11je1q8gsmpi8202/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/b71qtk45ud11je1q8gsmpi8202/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/b71qtk45ud11je1q8gsmpi8202/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/b71qtk45ud11je1q8gsmpi8202/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=b71qtk45ud11je1q8gsmpi8202\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/b71qtk45ud11je1q8gsmpi8202/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/b71qtk45ud11je1q8gsmpi8202/LowJPG\"\n            },\n            \"tag\": [\n                \"Campaign\",\n                \"Cushion\",\n                \"Gate\",\n                \"Great Outdoors\",\n                \"Logo\",\n                \"Pillow\",\n                \"Retail\",\n                \"logo\"\n            ],\n            \"time\": \"20210105062851000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"great-outdoors-logo-crop.png\",\n            \"default\": {\n                \"Size\": \"32195\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"383*140 Pixels\",\n                \"Date uploaded\": \"20210105062851000\",\n                \"Date modified\": \"20210105062851000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": null,\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"b71qtk45ud11je1q8gsmpi8202\",\n            \"size\": \"32195\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"description\": \"Great Outdoors Go logo\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OLPCR\"\n                    },\n                    \"id\": \"OLPCR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/OLPCR\"\n                }\n            ],\n            \"width\": \"383\",\n            \"height\": \"140\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/b2trlugn2d6rj4tr1a6k5q5u1c/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/b2trlugn2d6rj4tr1a6k5q5u1c\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/b2trlugn2d6rj4tr1a6k5q5u1c/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/b2trlugn2d6rj4tr1a6k5q5u1c/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/b2trlugn2d6rj4tr1a6k5q5u1c/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/b2trlugn2d6rj4tr1a6k5q5u1c/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=b2trlugn2d6rj4tr1a6k5q5u1c\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/b2trlugn2d6rj4tr1a6k5q5u1c/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/b2trlugn2d6rj4tr1a6k5q5u1c/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062850000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-grey-4511-train.jpg\",\n            \"default\": {\n                \"Size\": \"1439876\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4896*3264 Pixels\",\n                \"Date uploaded\": \"20210105062850000\",\n                \"Date modified\": \"20210105062850000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"b2trlugn2d6rj4tr1a6k5q5u1c\",\n            \"size\": \"1439876\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/KU8U8\"\n                    },\n                    \"id\": \"KU8U8\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/KU8U8\"\n                }\n            ],\n            \"width\": \"4896\",\n            \"height\": \"3264\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/8tcbcdjuv53n7crh23k7g1jv2o/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/8tcbcdjuv53n7crh23k7g1jv2o\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/8tcbcdjuv53n7crh23k7g1jv2o/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/8tcbcdjuv53n7crh23k7g1jv2o/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/8tcbcdjuv53n7crh23k7g1jv2o/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/8tcbcdjuv53n7crh23k7g1jv2o/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=8tcbcdjuv53n7crh23k7g1jv2o\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/8tcbcdjuv53n7crh23k7g1jv2o/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/8tcbcdjuv53n7crh23k7g1jv2o/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062848000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-orange-4506-mountain.jpg\",\n            \"default\": {\n                \"Size\": \"2779888\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5000*3335 Pixels\",\n                \"Date uploaded\": \"20210105062848000\",\n                \"Date modified\": \"20210105062848000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"8tcbcdjuv53n7crh23k7g1jv2o\",\n            \"size\": \"2779888\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"5000\",\n            \"height\": \"3335\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/87k6lfb6c11itf7347b3jso112/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/87k6lfb6c11itf7347b3jso112\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/87k6lfb6c11itf7347b3jso112/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/87k6lfb6c11itf7347b3jso112/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/87k6lfb6c11itf7347b3jso112/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/87k6lfb6c11itf7347b3jso112/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=87k6lfb6c11itf7347b3jso112\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/87k6lfb6c11itf7347b3jso112/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/87k6lfb6c11itf7347b3jso112/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062847000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-waterfall-003.jpg\",\n            \"default\": {\n                \"Size\": \"1733445\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"1982*2477 Pixels\",\n                \"Date uploaded\": \"20210105062847000\",\n                \"Date modified\": \"20210105062847000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"87k6lfb6c11itf7347b3jso112\",\n            \"size\": \"1733445\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"1982\",\n            \"height\": \"2477\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/81pl6k64350nf4p68ba1a2d948/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/81pl6k64350nf4p68ba1a2d948\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/81pl6k64350nf4p68ba1a2d948/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/81pl6k64350nf4p68ba1a2d948/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/81pl6k64350nf4p68ba1a2d948/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/81pl6k64350nf4p68ba1a2d948/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=81pl6k64350nf4p68ba1a2d948\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/81pl6k64350nf4p68ba1a2d948/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/81pl6k64350nf4p68ba1a2d948/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062845000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8555-brown-view.jpg\",\n            \"default\": {\n                \"Size\": \"3049604\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4652*3361 Pixels\",\n                \"Date uploaded\": \"20210105062845000\",\n                \"Date modified\": \"20210105062845000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"81pl6k64350nf4p68ba1a2d948\",\n            \"size\": \"3049604\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"4652\",\n            \"height\": \"3361\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Company\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/7up0o81mml7218hkkl1cp69p08/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/7up0o81mml7218hkkl1cp69p08\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/7up0o81mml7218hkkl1cp69p08/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7up0o81mml7218hkkl1cp69p08/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7up0o81mml7218hkkl1cp69p08/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/7up0o81mml7218hkkl1cp69p08/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=7up0o81mml7218hkkl1cp69p08\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/7up0o81mml7218hkkl1cp69p08/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7up0o81mml7218hkkl1cp69p08/LowJPG\"\n            },\n            \"tag\": [\n                \"Campaign\",\n                \"Great Outdoors\",\n                \"Logo\",\n                \"Retail\",\n                \"Steering Wheel\",\n                \"logo\"\n            ],\n            \"time\": \"20210105062844000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"great-outdoors-icon-crop.png\",\n            \"default\": {\n                \"Size\": \"11730\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"132*132 Pixels\",\n                \"Date uploaded\": \"20210105062844000\",\n                \"Date modified\": \"20210105062844000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": null,\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"7up0o81mml7218hkkl1cp69p08\",\n            \"size\": \"11730\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"description\": \"Great Outdoors Go logo\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OLPCR\"\n                    },\n                    \"id\": \"OLPCR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/OLPCR\"\n                }\n            ],\n            \"width\": \"132\",\n            \"height\": \"132\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/7uf33sdjm56g13dnamoet07s6v/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/7uf33sdjm56g13dnamoet07s6v\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/7uf33sdjm56g13dnamoet07s6v/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7uf33sdjm56g13dnamoet07s6v/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7uf33sdjm56g13dnamoet07s6v/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/7uf33sdjm56g13dnamoet07s6v/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=7uf33sdjm56g13dnamoet07s6v\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/7uf33sdjm56g13dnamoet07s6v/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7uf33sdjm56g13dnamoet07s6v/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062843000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-green-4510-winter.jpg\",\n            \"default\": {\n                \"Size\": \"3299706\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4000*6000 Pixels\",\n                \"Date uploaded\": \"20210105062843000\",\n                \"Date modified\": \"20210105062843000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"7uf33sdjm56g13dnamoet07s6v\",\n            \"size\": \"3299706\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"4000\",\n            \"height\": \"6000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/7qnkosfm9t59bfjves8ipnes63/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/7qnkosfm9t59bfjves8ipnes63\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/7qnkosfm9t59bfjves8ipnes63/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7qnkosfm9t59bfjves8ipnes63/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7qnkosfm9t59bfjves8ipnes63/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/7qnkosfm9t59bfjves8ipnes63/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=7qnkosfm9t59bfjves8ipnes63\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/7qnkosfm9t59bfjves8ipnes63/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7qnkosfm9t59bfjves8ipnes63/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062842000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-lake-view-man.jpg\",\n            \"default\": {\n                \"Size\": \"2973098\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4853*2730 Pixels\",\n                \"Date uploaded\": \"20210105062842000\",\n                \"Date modified\": \"20210105062842000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"7qnkosfm9t59bfjves8ipnes63\",\n            \"size\": \"2973098\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"4853\",\n            \"height\": \"2730\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/7h0uts0h1d607e8k6ok8jr3r3e/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/7h0uts0h1d607e8k6ok8jr3r3e\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/7h0uts0h1d607e8k6ok8jr3r3e/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7h0uts0h1d607e8k6ok8jr3r3e/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7h0uts0h1d607e8k6ok8jr3r3e/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/7h0uts0h1d607e8k6ok8jr3r3e/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=7h0uts0h1d607e8k6ok8jr3r3e\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/7h0uts0h1d607e8k6ok8jr3r3e/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7h0uts0h1d607e8k6ok8jr3r3e/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062840000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-7459-sky-blue.jpg\",\n            \"default\": {\n                \"Size\": \"4206783\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3012*5363 Pixels\",\n                \"Date uploaded\": \"20210105062840000\",\n                \"Date modified\": \"20210105062840000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"7h0uts0h1d607e8k6ok8jr3r3e\",\n            \"size\": \"4206783\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"3012\",\n            \"height\": \"5363\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/6mbsbcka853ivc6qh8jbni0o78/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/6mbsbcka853ivc6qh8jbni0o78\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/6mbsbcka853ivc6qh8jbni0o78/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6mbsbcka853ivc6qh8jbni0o78/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6mbsbcka853ivc6qh8jbni0o78/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/6mbsbcka853ivc6qh8jbni0o78/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=6mbsbcka853ivc6qh8jbni0o78\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/6mbsbcka853ivc6qh8jbni0o78/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6mbsbcka853ivc6qh8jbni0o78/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062839000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-4516-4517-couple.jpg\",\n            \"default\": {\n                \"Size\": \"1322316\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4256*2832 Pixels\",\n                \"Date uploaded\": \"20210105062839000\",\n                \"Date modified\": \"20210105062839000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"6mbsbcka853ivc6qh8jbni0o78\",\n            \"size\": \"1322316\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"4256\",\n            \"height\": \"2832\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Lifestyle\",\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/6f4glka9qd70raurcrd4h1bf5u/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/6f4glka9qd70raurcrd4h1bf5u\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/6f4glka9qd70raurcrd4h1bf5u/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6f4glka9qd70raurcrd4h1bf5u/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6f4glka9qd70raurcrd4h1bf5u/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/6f4glka9qd70raurcrd4h1bf5u/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=6f4glka9qd70raurcrd4h1bf5u\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/6f4glka9qd70raurcrd4h1bf5u/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6f4glka9qd70raurcrd4h1bf5u/LowJPG\"\n            },\n            \"tag\": [\n                \"Clothing\"\n            ],\n            \"time\": \"20210105062837000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"backpack-5694-yosemite.jpg\",\n            \"default\": {\n                \"Size\": \"3898917\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5184*3456 Pixels\",\n                \"Date uploaded\": \"20210105062837000\",\n                \"Date modified\": \"20210105062837000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"Hewlett-Packard\",\n                \"Date Created\": \"2019-12-18 23:33:08\",\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"6f4glka9qd70raurcrd4h1bf5u\",\n            \"size\": \"3898917\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/UT9AR\"\n                    },\n                    \"id\": \"UT9AR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/UT9AR\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"5184\",\n            \"height\": \"3456\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/6913667psh2up1c1ac834jrc2r/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/6913667psh2up1c1ac834jrc2r\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/6913667psh2up1c1ac834jrc2r/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6913667psh2up1c1ac834jrc2r/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6913667psh2up1c1ac834jrc2r/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/6913667psh2up1c1ac834jrc2r/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=6913667psh2up1c1ac834jrc2r\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/6913667psh2up1c1ac834jrc2r/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6913667psh2up1c1ac834jrc2r/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062836000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-mini-colors-4562-utah.jpg\",\n            \"default\": {\n                \"Size\": \"3090125\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3840*5760 Pixels\",\n                \"Date uploaded\": \"20210105062836000\",\n                \"Date modified\": \"20210105062836000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"6913667psh2up1c1ac834jrc2r\",\n            \"size\": \"3090125\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"3840\",\n            \"height\": \"5760\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/5pbsjb0fct083d59fp42tr4k37/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/5pbsjb0fct083d59fp42tr4k37\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/5pbsjb0fct083d59fp42tr4k37/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/5pbsjb0fct083d59fp42tr4k37/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/5pbsjb0fct083d59fp42tr4k37/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/5pbsjb0fct083d59fp42tr4k37/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=5pbsjb0fct083d59fp42tr4k37\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/5pbsjb0fct083d59fp42tr4k37/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/5pbsjb0fct083d59fp42tr4k37/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062834000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-maroon-4569-tropics.jpg\",\n            \"default\": {\n                \"Size\": \"5198291\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"7360*4912 Pixels\",\n                \"Date uploaded\": \"20210105062834000\",\n                \"Date modified\": \"20210105062834000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"5pbsjb0fct083d59fp42tr4k37\",\n            \"size\": \"5198291\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"7360\",\n            \"height\": \"4912\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/5mtirq4ut1239cn8nmfia3ng3n/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/5mtirq4ut1239cn8nmfia3ng3n\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/5mtirq4ut1239cn8nmfia3ng3n/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/5mtirq4ut1239cn8nmfia3ng3n/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/5mtirq4ut1239cn8nmfia3ng3n/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/5mtirq4ut1239cn8nmfia3ng3n/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=5mtirq4ut1239cn8nmfia3ng3n\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/5mtirq4ut1239cn8nmfia3ng3n/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/5mtirq4ut1239cn8nmfia3ng3n/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\",\n                \"Fall\"\n            ],\n            \"time\": \"20210105062833000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-walking-on-path.jpg\",\n            \"default\": {\n                \"Size\": \"5950954\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"6000*3376 Pixels\",\n                \"Date uploaded\": \"20210105062833000\",\n                \"Date modified\": \"20210105062833000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"5mtirq4ut1239cn8nmfia3ng3n\",\n            \"size\": \"5950954\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/SB9RU\"\n                    },\n                    \"id\": \"SB9RU\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/SB9RU\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"3376\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/54ft9n80nd0p76s3bfqpse7037/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/54ft9n80nd0p76s3bfqpse7037\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/54ft9n80nd0p76s3bfqpse7037/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/54ft9n80nd0p76s3bfqpse7037/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/54ft9n80nd0p76s3bfqpse7037/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/54ft9n80nd0p76s3bfqpse7037/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=54ft9n80nd0p76s3bfqpse7037\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/54ft9n80nd0p76s3bfqpse7037/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/54ft9n80nd0p76s3bfqpse7037/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062831000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8556-sunrise.jpg\",\n            \"default\": {\n                \"Size\": \"2633054\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3276*4096 Pixels\",\n                \"Date uploaded\": \"20210105062831000\",\n                \"Date modified\": \"20210105062831000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"54ft9n80nd0p76s3bfqpse7037\",\n            \"size\": \"2633054\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"3276\",\n            \"height\": \"4096\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/4t7mlrglrh4ur7h9dojppgq502/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=4t7mlrglrh4ur7h9dojppgq502\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/4t7mlrglrh4ur7h9dojppgq502/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062829000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-grey-4536-sunrise.jpg\",\n            \"default\": {\n                \"Size\": \"6864968\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"7606*5073 Pixels\",\n                \"Date uploaded\": \"20210105062829000\",\n                \"Date modified\": \"20210105062829000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"4t7mlrglrh4ur7h9dojppgq502\",\n            \"size\": \"6864968\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\n                    },\n                    \"id\": \"JARDF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"SHFO1/JARDF\"\n                }\n            ],\n            \"width\": \"7606\",\n            \"height\": \"5073\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/3r3elicpht2gl49e7epvttja58/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/3r3elicpht2gl49e7epvttja58\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/3r3elicpht2gl49e7epvttja58/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/3r3elicpht2gl49e7epvttja58/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/3r3elicpht2gl49e7epvttja58/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/3r3elicpht2gl49e7epvttja58/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=3r3elicpht2gl49e7epvttja58\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/3r3elicpht2gl49e7epvttja58/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/3r3elicpht2gl49e7epvttja58/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062827000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-snow-sunny.jpg\",\n            \"default\": {\n                \"Size\": \"1638720\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3000*2000 Pixels\",\n                \"Date uploaded\": \"20210105062827000\",\n                \"Date modified\": \"20210105062827000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"3r3elicpht2gl49e7epvttja58\",\n            \"size\": \"1638720\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/HSR4O\"\n                    },\n                    \"id\": \"HSR4O\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/HSR4O\"\n                }\n            ],\n            \"width\": \"3000\",\n            \"height\": \"2000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/3cj322onap4f31bikudj7s9l6g/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/3cj322onap4f31bikudj7s9l6g\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/3cj322onap4f31bikudj7s9l6g/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/3cj322onap4f31bikudj7s9l6g/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/3cj322onap4f31bikudj7s9l6g/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/3cj322onap4f31bikudj7s9l6g/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=3cj322onap4f31bikudj7s9l6g\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/3cj322onap4f31bikudj7s9l6g/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/3cj322onap4f31bikudj7s9l6g/LowJPG\"\n            },\n            \"tag\": [\n                \"Autumn\",\n                \"Photoshop\"\n            ],\n            \"time\": \"20210105062825000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-fall-path.psd\",\n            \"default\": {\n                \"Size\": \"58268564\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"6000*3376 Pixels\",\n                \"Date uploaded\": \"20210105062825000\",\n                \"Date modified\": \"20210105062825000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"Hewlett-Packard\",\n                \"Date Created\": \"2019-12-12 14:02:33\",\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"3cj322onap4f31bikudj7s9l6g\",\n            \"size\": \"58268564\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/Q3PLU\"\n                    },\n                    \"id\": \"Q3PLU\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/Q3PLU\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"3376\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/34ihp8sofp2915g42uoi3qgv40/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=34ihp8sofp2915g42uoi3qgv40\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/34ihp8sofp2915g42uoi3qgv40/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062822000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8560-hammock.jpg\",\n            \"default\": {\n                \"Size\": \"1334090\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3335*5000 Pixels\",\n                \"Date uploaded\": \"20210105062822000\",\n                \"Date modified\": \"20210105062822000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"34ihp8sofp2915g42uoi3qgv40\",\n            \"size\": \"1334090\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"3335\",\n            \"height\": \"5000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/33jm9on7s16l32lnounv9tbo62/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=33jm9on7s16l32lnounv9tbo62\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/33jm9on7s16l32lnounv9tbo62/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062820000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-hammock.jpg\",\n            \"default\": {\n                \"Size\": \"1438331\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"2288*1520 Pixels\",\n                \"Date uploaded\": \"20210105062820000\",\n                \"Date modified\": \"20210105062820000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"33jm9on7s16l32lnounv9tbo62\",\n            \"size\": \"1438331\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/Q7OS4\"\n                    },\n                    \"id\": \"Q7OS4\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/Q7OS4\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"2288\",\n            \"height\": \"1520\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/25og7ksvv112n65bmktpus6e41/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/25og7ksvv112n65bmktpus6e41\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/25og7ksvv112n65bmktpus6e41/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/25og7ksvv112n65bmktpus6e41/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/25og7ksvv112n65bmktpus6e41/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/25og7ksvv112n65bmktpus6e41/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=25og7ksvv112n65bmktpus6e41\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/25og7ksvv112n65bmktpus6e41/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/25og7ksvv112n65bmktpus6e41/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062819000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8550-leaves.jpg\",\n            \"default\": {\n                \"Size\": \"2369653\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"6000*4000 Pixels\",\n                \"Date uploaded\": \"20210105062819000\",\n                \"Date modified\": \"20210105062819000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"25og7ksvv112n65bmktpus6e41\",\n            \"size\": \"2369653\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"4000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/1q32u4ueld6s5394f9aidq2q49/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=1q32u4ueld6s5394f9aidq2q49\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/1q32u4ueld6s5394f9aidq2q49/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062817000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-grey-orange-4541-snow.jpg\",\n            \"default\": {\n                \"Size\": \"3691210\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4000*6000 Pixels\",\n                \"Date uploaded\": \"20210105062817000\",\n                \"Date modified\": \"20210105062817000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"1q32u4ueld6s5394f9aidq2q49\",\n            \"size\": \"3691210\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"4000\",\n            \"height\": \"6000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/1k54q0ppip5gnbmtqi1ep7fi76/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=1k54q0ppip5gnbmtqi1ep7fi76\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/1k54q0ppip5gnbmtqi1ep7fi76/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/LowJPG\"\n            },\n            \"tag\": [\n                \"Lato font\"\n            ],\n            \"time\": \"20210105062816000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"Lato Font Sample.png\",\n            \"default\": {\n                \"Size\": \"96911\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"1398*508 Pixels\",\n                \"Date uploaded\": \"20210105062816000\",\n                \"Date modified\": \"20210105062816000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"appl\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"144.0\"\n            },\n            \"id\": \"1k54q0ppip5gnbmtqi1ep7fi76\",\n            \"size\": \"96911\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/VPA4H\"\n                    },\n                    \"id\": \"VPA4H\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/VPA4H\"\n                }\n            ],\n            \"width\": \"1398\",\n            \"height\": \"508\",\n            \"dpi\": \"144.0\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Company\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/1dakfh4e9h3sfb57dpimr06j6t/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=1dakfh4e9h3sfb57dpimr06j6t\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/1dakfh4e9h3sfb57dpimr06j6t/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t/LowJPG\"\n            },\n            \"tag\": [\n                \"Accessories\",\n                \"Accessory\",\n                \"Brochure\",\n                \"Canto\",\n                \"Face\",\n                \"Female\",\n                \"Girl\",\n                \"Glasses\",\n                \"Hair\",\n                \"Human\",\n                \"MarTech Event\",\n                \"Person\",\n                \"Sitting\"\n            ],\n            \"time\": \"20210105062814000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"Canto-Martech-Coffee-Front.ai\",\n            \"default\": {\n                \"Size\": \"30631212\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"630*810 Pixels\",\n                \"Date uploaded\": \"20210105062814000\",\n                \"Date modified\": \"20210105062814000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"Adobe Illustrator(R) 16.0\",\n                \"Date Created\": \"2018-04-02 09:48:40\",\n                \"Creation Tool\": null,\n                \"Resolution\": null\n            },\n            \"id\": \"1dakfh4e9h3sfb57dpimr06j6t\",\n            \"size\": \"30631212\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"description\": \"Canto-Milk-Sugar-Front\\nAdobe Illustrator File\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LQ9NI\"\n                    },\n                    \"id\": \"LQ9NI\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"G4T0V/LQ9NI\"\n                }\n            ],\n            \"width\": \"630\",\n            \"height\": \"810\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/155pgtpg2h6l31ao2i7buhmv2a/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=155pgtpg2h6l31ao2i7buhmv2a\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/155pgtpg2h6l31ao2i7buhmv2a/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062811000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-arches.jpg\",\n            \"default\": {\n                \"Size\": \"11480774\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5304*7952 Pixels\",\n                \"Date uploaded\": \"20210105062811000\",\n                \"Date modified\": \"20210105062811000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"155pgtpg2h6l31ao2i7buhmv2a\",\n            \"size\": \"11480774\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"5304\",\n            \"height\": \"7952\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/14j5kd7n916sba6dsq3h9rtq4k/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=14j5kd7n916sba6dsq3h9rtq4k\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/14j5kd7n916sba6dsq3h9rtq4k/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062810000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-black-4570-coat.jpg\",\n            \"default\": {\n                \"Size\": \"3228775\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5616*3744 Pixels\",\n                \"Date uploaded\": \"20210105062810000\",\n                \"Date modified\": \"20210105062810000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"14j5kd7n916sba6dsq3h9rtq4k\",\n            \"size\": \"3228775\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"5616\",\n            \"height\": \"3744\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/0eemvurtv14p3edsv71b57sj2v/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=0eemvurtv14p3edsv71b57sj2v\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/0eemvurtv14p3edsv71b57sj2v/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062808000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-yellow-4522-meadow.jpg\",\n            \"default\": {\n                \"Size\": \"5455296\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4926*3274 Pixels\",\n                \"Date uploaded\": \"20210105062808000\",\n                \"Date modified\": \"20210105062808000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"0eemvurtv14p3edsv71b57sj2v\",\n            \"size\": \"5455296\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"4926\",\n            \"height\": \"3274\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/032vhl3gh160d2kvf6s4353063/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=032vhl3gh160d2kvf6s4353063\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/032vhl3gh160d2kvf6s4353063/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062807000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-orange-3200-woman.jpg\",\n            \"default\": {\n                \"Size\": \"1064389\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"2448*3264 Pixels\",\n                \"Date uploaded\": \"20210105062807000\",\n                \"Date modified\": \"20210105062807000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"032vhl3gh160d2kvf6s4353063\",\n            \"size\": \"1064389\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\n                    },\n                    \"id\": \"JARDF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"SHFO1/JARDF\"\n                }\n            ],\n            \"width\": \"2448\",\n            \"height\": \"3264\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        }\n    ]\n}"},{"id":"fd935862-80a1-4397-8396-111138163e32","name":"200 OK - Advanced search","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/search?keyword=photo&searchInField=filename&operator=and","host":["{{SITE_BASEURL}}"],"path":["api","v1","search"],"query":[{"key":"keyword","value":"photo","description":"The search term(s)\n\nuse this, to make a search simply by keyword. This is nearly the same search like you do in Canto UI on right top. "},{"key":"searchInField","value":"filename","description":"You can search inside the following fields: \"filename\", \"description\", \"comment\", \"keywords\", \"author\" and \"tags\".\n\nIf you input other values, the results will ignore it."},{"key":"operator","value":"and","description":"Operator: \"and\", \"or\".\n\nDefault: \"and\""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Jan 2021 11:31:51 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Thu, 07-Jan-2021 11:31:50 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"facets\": [\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"name\": \"resolution\",\n            \"min\": 9223372036854775807\n        },\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"name\": \"duration\",\n            \"min\": 9223372036854775807\n        },\n        {\n            \"name\": \"tags\",\n            \"value\": [\n                \"Untagged\"\n            ]\n        },\n        {\n            \"name\": \"keywords\",\n            \"value\": [\n                \"Unkeyworded\"\n            ]\n        },\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"name\": \"dimension\",\n            \"min\": 9223372036854775807\n        },\n        {\n            \"name\": \"owner\",\n            \"value\": [\n                \"canto-support@canto.com\"\n            ]\n        },\n        {\n            \"name\": \"orientation\"\n        },\n        {\n            \"name\": \"storageClass\",\n            \"value\": [\n                \"standard\"\n            ]\n        },\n        {\n            \"name\": \"approval\",\n            \"value\": [\n                \"Approved\"\n            ]\n        },\n        {\n            \"mix\": 1609856885,\n            \"max\": 1609856885,\n            \"name\": \"created\",\n            \"min\": 1609856885\n        },\n        {\n            \"mix\": 1609856947,\n            \"max\": 1609856985,\n            \"name\": \"lastModified\",\n            \"min\": 1609856947\n        },\n        {\n            \"name\": \"scheme\",\n            \"value\": [\n                \"album\"\n            ]\n        },\n        {\n            \"mix\": 5,\n            \"max\": 5,\n            \"name\": \"fileSize\",\n            \"min\": 5\n        },\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"name\": \"pageNumber\",\n            \"min\": 9223372036854775807\n        },\n        {\n            \"name\":\"meta_multichoice_1\",\n            \"value\":[\n                \"A\",\n                \"B\",\n                \"C\"\n            ]\n        },\n        {\n            \"name\":\"meta_choice_2\",\n            \"value\":[\n                \"image\"\n            ]\n        },\n        {\n            \"name\":\"meta_label_0\",\n            \"value\":[\n                \"#FFFFFF\"\n            ]\n        }\n    ],\n    \"limit\": 100,\n    \"found\": 1,\n    \"sortBy\": \"time\",\n    \"sortDirection\": \"descending\",\n    \"matchExpr\": \"es\",\n    \"results\": [\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/preview\",\n                \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\n            },\n            \"time\": \"20210105062805000\",         // \"Date Modified\", \"Date Uploaded\" or \"Date Created\" according to the \"Sort & Display Assets By Date Field\" in the settings \n            \"name\": \"Marketing Photos\",\n            \"id\": \"JARDF\",\n            \"size\": \"5\",\n            \"scheme\": \"album\",\n            \"owner\": \"canto-support@canto.com\",\n            \"tag\": [\n                \"Untagged\"\n            ],\n            \"width\": \"4495\",\n            \"height\": \"3000\",\n            \"dpi\": \"72\",\n            \"ownerName\": \"Canto Support\",\n            \"idPath\": \"SHFO1/JARDF\",\n            \"namePath\": \"Marketing/Marketing Photos\"\n        }\n    ]\n}"}],"_postman_id":"36910bbd-c42e-485e-8d3e-7d903230066a"},{"name":"List the content of specified scheme","event":[{"listen":"test","script":{"id":"a400459f-7190-426a-8cff-2f9f095f278d","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"contentId\", jsonData.results[0].id);","pm.environment.set(\"contentScheme\", jsonData.results[0].scheme);"],"type":"text/javascript"}}],"id":"78e89c88-f85c-4b35-b85b-3fde52724485","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/:scheme?keyword=photo&tags=Person&tagsLiteral=Blue&keywords=Canto&approval=approved&owner=canto-support@canto.com&fileSize=95073..26893954&created=1444662143..1452182400&createdTime=1571042449..1571301649&uploadedTime=1571042449..1571301649&lastModified=1571042449..1571301649&dimension=77..3840&width=400..1024&height=400..1024&resolution=5..350&orientation=landscape&duration=9..1205&pageNumber=6..482&storageClass=standard&{{customFieldId}}=exampleValue&searchInField=filename&exactMatch=false&operator=and&sortBy=time, name&sortDirection=ascending&start=0&limit=100&imageRangeOperation=or","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 4</em></a></p>\n<p>List the content of the specified scheme, page by page. Only brief content info supplied.</p>\n<p><strong>Note:</strong></p>\n<ul>\n<li>You can use the value \"<strong>null</strong>\" (enclosed by two underlines in front and at the end). If you want to search for assets which don't have a value in a field.</li>\n<li>You can use the value \"<strong>exists</strong>\" (enclosed by two underlines in front and at the end). If you want to search for assets which have set any value in a field.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1",":scheme"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>The search term(s)\nuse this, to make a search simply by keyword. This is nearly the same search like you do in Canto UI on right top. </p>\n","type":"text/plain"},"key":"keyword","value":"photo"},{"description":{"content":"<p>If you want to filter by tag\n**Examples:**<br />One value: sunset<br />Multi values with OR: sunset|dawn<br />Multi values with AND: sunset+beach</p>\n<p><em>Note:</em> The | character needs to be url encoded with %7C: Example: sunset%7Cdawn</p>\n","type":"text/plain"},"key":"tags","value":"Person"},{"description":{"content":"<p>Filter by tag(case-sensitive &amp; whole word only)\n\"blue\" or \"Blue one\" didn't matched.</p>\n","type":"text/plain"},"key":"tagsLiteral","value":"Blue"},{"description":{"content":"<p>Filter result by keywords.\n**Examples:**<br />One value: business<br />Multi values with OR: home|office<br />Multi values with AND: business+office\n<strong>Note:</strong> This filter searchs by keywords, you can attach on request: <a href=\"#f854b08c-270f-4f14-af87-689b028f7e7b\">Attach keyword to content</a></p>\n<p><em>Note:</em> The + character needs to be url encoded with %2B: Example: home%2Boffice\n<em>Note:</em> The | character needs to be url encoded with %7C: Example: home%7Coffice</p>\n","type":"text/plain"},"key":"keywords","value":"Canto"},{"description":{"content":"<p>Filter by Approval status. \n<strong>Note:</strong> This filter only works, if the approval process is enabled.\n**Examples:**<br />One value: approved<br />Multi values with OR: \"approved|pending\"\nIf you select Expired, you cannot select another status.<br />For Example: You cannot use \"expired|pending\". Only use Expired</p>\n<p><em>Note:</em> The | character needs to be url encoded with %7C: Example: approved%7Cpending</p>\n","type":"text/plain"},"key":"approval","value":"approved"},{"description":{"content":"<p>FIlter by id of an owner. \n**Examples:**<br />One value: <a href=\"mailto:canto-support@canto.com\">canto-support@canto.com</a><br />Multi values with OR: <a href=\"mailto:canto-support@canto.com\">canto-support@canto.com</a>|<a href=\"mailto:noreply@canto.com\">noreply@canto.com</a></p>\n<p><em>Note:</em> The | character needs to be url encoded with %7C: Example: <a href=\"mailto:support@canto.com\">support@canto.com</a>%<a href=\"mailto:7Cnoreply@canto.com\">7Cnoreply@canto.com</a></p>\n","type":"text/plain"},"key":"owner","value":"canto-support@canto.com"},{"description":{"content":"<p>Filter by file size\n<strong>Example:</strong> 95073..26893954</p>\n","type":"text/plain"},"key":"fileSize","value":"95073..26893954"},{"description":{"content":"<p>Filter by time the asset was created at canto.</p>\n","type":"text/plain"},"key":"created","value":"1444662143..1452182400"},{"description":{"content":"<p>Filter by file creation time. (Value is in Unix timestamp format). </p>\n","type":"text/plain"},"key":"createdTime","value":"1571042449..1571301649"},{"description":{"content":"<p>Filter by upload time. (Value is in Unix timestamp format)</p>\n","type":"text/plain"},"key":"uploadedTime","value":"1571042449..1571301649"},{"description":{"content":"<p>Filter by last modified time. (Value is in Unix timestamp format)</p>\n","type":"text/plain"},"key":"lastModified","value":"1571042449..1571301649"},{"description":{"content":"<p>Filte by image size.\n<strong>Note:</strong> This filter works only on images.</p>\n","type":"text/plain"},"key":"dimension","value":"77..3840"},{"description":{"content":"<p>Filter by image width in px.</p>\n<p>Example:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>example value</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>400</td>\n<td>only images having a width of exactly 400px</td>\n</tr>\n<tr>\n<td>400..1024</td>\n<td>only images having a width inside the range of 400px to 1024px</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: This filter works only on images.</p>\n","type":"text/plain"},"key":"width","value":"400..1024"},{"description":{"content":"<p>Filter by image height in px.</p>\n<p>Example:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>example value</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>400</td>\n<td>only images having a height of exactly 400px</td>\n</tr>\n<tr>\n<td>400..1024</td>\n<td>only images having a height inside the range of 400px to 1024px</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: This filter works only on images.</p>\n","type":"text/plain"},"key":"height","value":"400..1024"},{"description":{"content":"<p>Filter by resolution in DPI\n<strong>Note:</strong> This filter works only on images.</p>\n","type":"text/plain"},"key":"resolution","value":"5..350"},{"description":{"content":"<p>\"landscape\", \"portrait\" or \"square\"\n<strong>Note:</strong> This filter works only on images.\n**Examples:**<br />One value: landscape\nMulti values: landscape|portrait</p>\n<p><em>Note:</em> The | character needs to be url encoded with %7C: Example: landscape%7Cportrait</p>\n","type":"text/plain"},"key":"orientation","value":"landscape"},{"description":{"content":"<p>Filter by duration.\n<strong>Note:</strong> This filter works only on video or audio.</p>\n","type":"text/plain"},"key":"duration","value":"9..1205"},{"description":{"content":"<p>Filter by page number.\n<strong>Note:</strong> This filter works only on document or presentation.</p>\n","type":"text/plain"},"key":"pageNumber","value":"6..482"},{"description":{"content":"<p>\"standard\" or \"freeze\"</p>\n<p>**Examples:**<br />One value: standard<br />Multi values with OR: standard|freeze</p>\n","type":"text/plain"},"key":"storageClass","value":"standard"},{"description":{"content":"<p>Filter by a custom field. \nThe name of the parameter needs to be the id of the custom field. (see: <a href=\"#d6260a54-a154-4576-8c38-ac79b3752e12\">Get custom field list</a>)\nAs an example, custom field id would look similar to \"meta_text_0\".\nFilter by specified custom field with id.\nThe type means custom field type, including \"text\", \"num\", \"date\", \"choice\", \"multichoice\" &amp; \"url\"; the sequence is an immutable integer given by system. \nYou could find the whole part in web page URL when filter by the same custom field in our system.</p>\n","type":"text/plain"},"key":"{{customFieldId}}","value":"exampleValue"},{"description":{"content":"<p>You can search inside the following fields: \"filename\", \"description\", \"comment\", \"keywords\", \"author\" and \"tags\".\nIf you input other values, the results will ignore it.</p>\n","type":"text/plain"},"key":"searchInField","value":"filename"},{"description":{"content":"<p>exactMatch: \"true\" or \"false\"\nDefault: false</p>\n","type":"text/plain"},"key":"exactMatch","value":"false"},{"description":{"content":"<p>Operator: \"and\", \"or\".\nDefault: \"and\"</p>\n","type":"text/plain"},"key":"operator","value":"and"},{"description":{"content":"<p>\"name\", \"time\", \"scheme\", \"owner\" or \"size\"</p>\n<p>Default is \"time\"</p>\n","type":"text/plain"},"key":"sortBy","value":"time, name"},{"description":{"content":"<p>“ascending” or “descending”</p>\n","type":"text/plain"},"key":"sortDirection","value":"ascending"},{"description":{"content":"<p>The offset number of items to be returned. </p>\n<p>Default: 0.</p>\n","type":"text/plain"},"key":"start","value":"0"},{"description":{"content":"<p>Maximum number of items to be returned. </p>\n<p>Default: 100.\nMax: 1000</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"description":{"content":"<p>Defines how the parameters \"width\" and \"height\" should be combined.</p>\n<p><strong>Valid values:</strong> \"or\", \"and\" </p>\n<p>Use \"or\" if the result must have either the given width OR height. Use \"and\" if the result must have BOTH the given width AND height.</p>\n<p><strong>Default:</strong> \"or\"</p>\n","type":"text/plain"},"key":"imageRangeOperation","value":"or"}],"variable":[{"type":"any","value":"","key":"scheme"}]}},"response":[{"id":"3fb730d1-b7e7-4bf7-8831-77a09ad6cd17","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/:scheme?sortBy=time&sortDirection=ascending&limit=10&start=0","host":["{{SITE_BASEURL}}"],"path":["api","v1",":scheme"],"query":[{"key":"sortBy","value":"time","description":"\"name\", \"time\", \"scheme\", \"owner\" or \"size\"\n\nDefault is \"time\""},{"key":"sortDirection","value":"ascending","description":"“ascending” or “descending”"},{"key":"limit","value":"10","description":"Maximum number of items to be returned. \n\nDefault: 100."},{"key":"start","value":"0","description":"The offset number of items to be returned. \n\nDefault: 0."}],"variable":[{"description":"REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\", or \"other\"","key":"scheme","type":"string","value":"image"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 06 Jan 2021 14:25:17 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Tue, 05-Jan-2021 14:25:16 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"facets\": [\n        {\n            \"max\": 144,\n            \"mix\": 72,\n            \"name\": \"resolution\",\n            \"min\": 72\n        },\n        {\n            \"max\": -9223372036854775808,\n            \"mix\": 9223372036854775807,\n            \"name\": \"duration\",\n            \"min\": 9223372036854775807\n        },\n        {\n            \"name\": \"tags\",\n            \"value\": [\n                \"Backpack\",\n                \"Great Outdoors Go\",\n                \"lifestyle\",\n                \"hiking shoes\",\n                \"Clothing\",\n                \"Campaign\",\n                \"Great Outdoors\",\n                \"Logo\",\n                \"MarTech Event\",\n                \"Retail\",\n                \"logo\",\n                \"Brochure\",\n                \"Canto\",\n                \"Text\",\n                \"Accessories\",\n                \"Accessory\",\n                \"Advertisement\",\n                \"Autumn\",\n                \"Cushion\",\n                \"Face\",\n                \"Fall\",\n                \"Female\",\n                \"Flyer\",\n                \"Gate\",\n                \"Girl\",\n                \"Glasses\",\n                \"Hair\",\n                \"Human\",\n                \"Jacket\",\n                \"Lato font\",\n                \"Menu\",\n                \"Outdoors\",\n                \"Page\",\n                \"Paper\",\n                \"Person\",\n                \"Photoshop\",\n                \"Pillow\",\n                \"Poster\",\n                \"Sitting\",\n                \"Steering Wheel\"\n            ]\n        },\n        {\n            \"name\": \"keywords\",\n            \"value\": [\n                \"Product\",\n                \"Lifestyle\",\n                \"Campaign\",\n                \"Unkeyworded\",\n                \"Company\"\n            ]\n        },\n        {\n            \"max\": 5792,\n            \"mix\": 123,\n            \"name\": \"dimension\",\n            \"min\": 123\n        },\n        {\n            \"name\": \"owner\",\n            \"value\": [\n                \"trothenpieler@canto.com\"\n            ]\n        },\n        {\n            \"name\": \"orientation\"\n        },\n        {\n            \"name\": \"storageClass\",\n            \"value\": [\n                \"standard\"\n            ]\n        },\n        {\n            \"name\": \"approval\",\n            \"value\": [\n                \"Approved\",\n                \"Restricted\"\n            ]\n        },\n        {\n            \"max\": 1609856992,\n            \"mix\": 1609856887,\n            \"name\": \"created\",\n            \"min\": 1609856887\n        },\n        {\n            \"name\": \"scheme\",\n            \"value\": [\n                \"image\"\n            ]\n        },\n        {\n            \"max\": 58268564,\n            \"mix\": 11730,\n            \"name\": \"fileSize\",\n            \"min\": 11730\n        },\n        {\n            \"max\": -9223372036854775808,\n            \"mix\": 9223372036854775807,\n            \"name\": \"pageNumber\",\n            \"min\": 9223372036854775807\n        }\n    ],\n    \"limit\": 10,\n    \"found\": 70,\n    \"sortBy\": \"time\",\n    \"sortDirection\": \"ascending\",\n    \"matchExpr\": \"es\",\n    \"results\": [\n        {\n            \"url\": {\n                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/preview\",\n                \"download\": \"https://yourcantoname.canto.com/api_binary/v1/image/032vhl3gh160d2kvf6s4353063\",\n                \"metadata\": \"https://yourcantoname.canto.com/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/metadata\",\n                \"HighJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/HighJPG\",\n                \"PNG\": \"https://yourcantoname.canto.com/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/PNG\",\n                \"directUrlOriginal\": \"https://yourcantoname.canto.com/download/image/032vhl3gh160d2kvf6s4353063/original\",\n                \"detail\": \"https://yourcantoname.canto.com/smartalbum/image?column=image&id=032vhl3gh160d2kvf6s4353063\",\n                \"directUrlPreview\": \"https://yourcantoname.canto.com/preview/image/032vhl3gh160d2kvf6s4353063/800\",\n                \"LowJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/LowJPG\"\n            },\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"time\": \"20210105062807000\",\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"name\": \"backpack-orange-3200-woman.jpg\",\n            \"default\": {\n                \"Size\": \"1064389\",\n                \"Color\": null,\n                \"Uploaded by\": \"trothenpieler@canto.com\",\n                \"Dimensions\": \"2448*3264 Pixels\",\n                \"Date uploaded\": \"20210105062807000\",\n                \"Date modified\": \"20210105062807000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"032vhl3gh160d2kvf6s4353063\",\n            \"size\": \"1064389\",\n            \"scheme\": \"image\",\n            \"owner\": \"trothenpieler@canto.com\",\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/album/JARDF\"\n                    },\n                    \"id\": \"JARDF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"SHFO1/JARDF\"\n                }\n            ],\n            \"width\": \"2448\",\n            \"height\": \"3264\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Thorsten Rothenpieler\"\n        },\n        {\n            \"url\": {\n                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v/preview\",\n                \"download\": \"https://yourcantoname.canto.com/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v\",\n                \"metadata\": \"https://yourcantoname.canto.com/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v/metadata\",\n                \"HighJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v/HighJPG\",\n                \"PNG\": \"https://yourcantoname.canto.com/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v/PNG\",\n                \"directUrlOriginal\": \"https://yourcantoname.canto.com/download/image/0eemvurtv14p3edsv71b57sj2v/original\",\n                \"detail\": \"https://yourcantoname.canto.com/smartalbum/image?column=image&id=0eemvurtv14p3edsv71b57sj2v\",\n                \"directUrlPreview\": \"https://yourcantoname.canto.com/preview/image/0eemvurtv14p3edsv71b57sj2v/800\",\n                \"LowJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v/LowJPG\"\n            },\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"time\": \"20210105062808000\",\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"name\": \"backpack-yellow-4522-meadow.jpg\",\n            \"default\": {\n                \"Size\": \"5455296\",\n                \"Color\": null,\n                \"Uploaded by\": \"trothenpieler@canto.com\",\n                \"Dimensions\": \"4926*3274 Pixels\",\n                \"Date uploaded\": \"20210105062808000\",\n                \"Date modified\": \"20210105062808000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"0eemvurtv14p3edsv71b57sj2v\",\n            \"size\": \"5455296\",\n            \"scheme\": \"image\",\n            \"owner\": \"trothenpieler@canto.com\",\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"4926\",\n            \"height\": \"3274\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Thorsten Rothenpieler\"\n        },\n        {\n            \"url\": {\n                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k/preview\",\n                \"download\": \"https://yourcantoname.canto.com/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k\",\n                \"metadata\": \"https://yourcantoname.canto.com/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k/metadata\",\n                \"HighJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k/HighJPG\",\n                \"PNG\": \"https://yourcantoname.canto.com/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k/PNG\",\n                \"directUrlOriginal\": \"https://yourcantoname.canto.com/download/image/14j5kd7n916sba6dsq3h9rtq4k/original\",\n                \"detail\": \"https://yourcantoname.canto.com/smartalbum/image?column=image&id=14j5kd7n916sba6dsq3h9rtq4k\",\n                \"directUrlPreview\": \"https://yourcantoname.canto.com/preview/image/14j5kd7n916sba6dsq3h9rtq4k/800\",\n                \"LowJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k/LowJPG\"\n            },\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"time\": \"20210105062810000\",\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"name\": \"backpack-black-4570-coat.jpg\",\n            \"default\": {\n                \"Size\": \"3228775\",\n                \"Color\": null,\n                \"Uploaded by\": \"trothenpieler@canto.com\",\n                \"Dimensions\": \"5616*3744 Pixels\",\n                \"Date uploaded\": \"20210105062810000\",\n                \"Date modified\": \"20210105062810000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"14j5kd7n916sba6dsq3h9rtq4k\",\n            \"size\": \"3228775\",\n            \"scheme\": \"image\",\n            \"owner\": \"trothenpieler@canto.com\",\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"5616\",\n            \"height\": \"3744\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Thorsten Rothenpieler\"\n        },\n        {\n            \"url\": {\n                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a/preview\",\n                \"download\": \"https://yourcantoname.canto.com/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a\",\n                \"metadata\": \"https://yourcantoname.canto.com/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a/metadata\",\n                \"HighJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a/HighJPG\",\n                \"PNG\": \"https://yourcantoname.canto.com/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a/PNG\",\n                \"directUrlOriginal\": \"https://yourcantoname.canto.com/download/image/155pgtpg2h6l31ao2i7buhmv2a/original\",\n                \"detail\": \"https://yourcantoname.canto.com/smartalbum/image?column=image&id=155pgtpg2h6l31ao2i7buhmv2a\",\n                \"directUrlPreview\": \"https://yourcantoname.canto.com/preview/image/155pgtpg2h6l31ao2i7buhmv2a/800\",\n                \"LowJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a/LowJPG\"\n            },\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"time\": \"20210105062811000\",\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"name\": \"lifestyle-arches.jpg\",\n            \"default\": {\n                \"Size\": \"11480774\",\n                \"Color\": null,\n                \"Uploaded by\": \"trothenpieler@canto.com\",\n                \"Dimensions\": \"5304*7952 Pixels\",\n                \"Date uploaded\": \"20210105062811000\",\n                \"Date modified\": \"20210105062811000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"155pgtpg2h6l31ao2i7buhmv2a\",\n            \"size\": \"11480774\",\n            \"scheme\": \"image\",\n            \"owner\": \"trothenpieler@canto.com\",\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"5304\",\n            \"height\": \"7952\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Thorsten Rothenpieler\"\n        },\n        {\n            \"url\": {\n                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t/preview\",\n                \"download\": \"https://yourcantoname.canto.com/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t\",\n                \"metadata\": \"https://yourcantoname.canto.com/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t/metadata\",\n                \"HighJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t/HighJPG\",\n                \"PNG\": \"https://yourcantoname.canto.com/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t/PNG\",\n                \"directUrlOriginal\": \"https://yourcantoname.canto.com/download/image/1dakfh4e9h3sfb57dpimr06j6t/original\",\n                \"detail\": \"https://yourcantoname.canto.com/smartalbum/image?column=image&id=1dakfh4e9h3sfb57dpimr06j6t\",\n                \"directUrlPreview\": \"https://yourcantoname.canto.com/preview/image/1dakfh4e9h3sfb57dpimr06j6t/800\",\n                \"LowJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t/LowJPG\"\n            },\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"time\": \"20210105062814000\",\n            \"keyword\": [\n                \"Company\"\n            ],\n            \"name\": \"Canto-Martech-Coffee-Front.ai\",\n            \"default\": {\n                \"Size\": \"30631212\",\n                \"Color\": null,\n                \"Uploaded by\": \"trothenpieler@canto.com\",\n                \"Dimensions\": \"630*810 Pixels\",\n                \"Date uploaded\": \"20210105062814000\",\n                \"Date modified\": \"20210105062814000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"Adobe Illustrator(R) 16.0\",\n                \"Date Created\": \"2018-04-02 09:48:40\",\n                \"Creation Tool\": null,\n                \"Resolution\": null\n            },\n            \"id\": \"1dakfh4e9h3sfb57dpimr06j6t\",\n            \"size\": \"30631212\",\n            \"scheme\": \"image\",\n            \"owner\": \"trothenpieler@canto.com\",\n            \"tag\": [\n                \"Accessories\",\n                \"Accessory\",\n                \"Brochure\",\n                \"Canto\",\n                \"Face\",\n                \"Female\",\n                \"Girl\",\n                \"Glasses\",\n                \"Hair\",\n                \"Human\",\n                \"MarTech Event\",\n                \"Person\",\n                \"Sitting\"\n            ],\n            \"description\": \"Canto-Milk-Sugar-Front\\nAdobe Illustrator File\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/album/LQ9NI\"\n                    },\n                    \"id\": \"LQ9NI\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"G4T0V/LQ9NI\"\n                }\n            ],\n            \"width\": \"630\",\n            \"height\": \"810\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Thorsten Rothenpieler\"\n        },\n        {\n            \"url\": {\n                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/preview\",\n                \"download\": \"https://yourcantoname.canto.com/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76\",\n                \"metadata\": \"https://yourcantoname.canto.com/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/metadata\",\n                \"HighJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/HighJPG\",\n                \"PNG\": \"https://yourcantoname.canto.com/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/PNG\",\n                \"directUrlOriginal\": \"https://yourcantoname.canto.com/download/image/1k54q0ppip5gnbmtqi1ep7fi76/original\",\n                \"detail\": \"https://yourcantoname.canto.com/smartalbum/image?column=image&id=1k54q0ppip5gnbmtqi1ep7fi76\",\n                \"directUrlPreview\": \"https://yourcantoname.canto.com/preview/image/1k54q0ppip5gnbmtqi1ep7fi76/800\",\n                \"LowJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/LowJPG\"\n            },\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"time\": \"20210105062816000\",\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"name\": \"Lato Font Sample.png\",\n            \"default\": {\n                \"Size\": \"96911\",\n                \"Color\": null,\n                \"Uploaded by\": \"trothenpieler@canto.com\",\n                \"Dimensions\": \"1398*508 Pixels\",\n                \"Date uploaded\": \"20210105062816000\",\n                \"Date modified\": \"20210105062816000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"appl\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"144.0\"\n            },\n            \"id\": \"1k54q0ppip5gnbmtqi1ep7fi76\",\n            \"size\": \"96911\",\n            \"scheme\": \"image\",\n            \"owner\": \"trothenpieler@canto.com\",\n            \"tag\": [\n                \"Lato font\"\n            ],\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/album/VPA4H\"\n                    },\n                    \"id\": \"VPA4H\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/VPA4H\"\n                }\n            ],\n            \"width\": \"1398\",\n            \"height\": \"508\",\n            \"dpi\": \"144.0\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Thorsten Rothenpieler\"\n        },\n        {\n            \"url\": {\n                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49/preview\",\n                \"download\": \"https://yourcantoname.canto.com/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49\",\n                \"metadata\": \"https://yourcantoname.canto.com/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49/metadata\",\n                \"HighJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49/HighJPG\",\n                \"PNG\": \"https://yourcantoname.canto.com/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49/PNG\",\n                \"directUrlOriginal\": \"https://yourcantoname.canto.com/download/image/1q32u4ueld6s5394f9aidq2q49/original\",\n                \"detail\": \"https://yourcantoname.canto.com/smartalbum/image?column=image&id=1q32u4ueld6s5394f9aidq2q49\",\n                \"directUrlPreview\": \"https://yourcantoname.canto.com/preview/image/1q32u4ueld6s5394f9aidq2q49/800\",\n                \"LowJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49/LowJPG\"\n            },\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"time\": \"20210105062817000\",\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"name\": \"backpack-grey-orange-4541-snow.jpg\",\n            \"default\": {\n                \"Size\": \"3691210\",\n                \"Color\": null,\n                \"Uploaded by\": \"trothenpieler@canto.com\",\n                \"Dimensions\": \"4000*6000 Pixels\",\n                \"Date uploaded\": \"20210105062817000\",\n                \"Date modified\": \"20210105062817000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"1q32u4ueld6s5394f9aidq2q49\",\n            \"size\": \"3691210\",\n            \"scheme\": \"image\",\n            \"owner\": \"trothenpieler@canto.com\",\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"4000\",\n            \"height\": \"6000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Thorsten Rothenpieler\"\n        },\n        {\n            \"url\": {\n                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/25og7ksvv112n65bmktpus6e41/preview\",\n                \"download\": \"https://yourcantoname.canto.com/api_binary/v1/image/25og7ksvv112n65bmktpus6e41\",\n                \"metadata\": \"https://yourcantoname.canto.com/api_binary/v1/image/25og7ksvv112n65bmktpus6e41/metadata\",\n                \"HighJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/25og7ksvv112n65bmktpus6e41/HighJPG\",\n                \"PNG\": \"https://yourcantoname.canto.com/api_binary/v1/image/25og7ksvv112n65bmktpus6e41/PNG\",\n                \"directUrlOriginal\": \"https://yourcantoname.canto.com/download/image/25og7ksvv112n65bmktpus6e41/original\",\n                \"detail\": \"https://yourcantoname.canto.com/smartalbum/image?column=image&id=25og7ksvv112n65bmktpus6e41\",\n                \"directUrlPreview\": \"https://yourcantoname.canto.com/preview/image/25og7ksvv112n65bmktpus6e41/800\",\n                \"LowJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/25og7ksvv112n65bmktpus6e41/LowJPG\"\n            },\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"time\": \"20210105062819000\",\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"name\": \"hiking-shoes-8550-leaves.jpg\",\n            \"default\": {\n                \"Size\": \"2369653\",\n                \"Color\": null,\n                \"Uploaded by\": \"trothenpieler@canto.com\",\n                \"Dimensions\": \"6000*4000 Pixels\",\n                \"Date uploaded\": \"20210105062819000\",\n                \"Date modified\": \"20210105062819000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"25og7ksvv112n65bmktpus6e41\",\n            \"size\": \"2369653\",\n            \"scheme\": \"image\",\n            \"owner\": \"trothenpieler@canto.com\",\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"4000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Thorsten Rothenpieler\"\n        },\n        {\n            \"url\": {\n                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/preview\",\n                \"download\": \"https://yourcantoname.canto.com/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62\",\n                \"metadata\": \"https://yourcantoname.canto.com/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/metadata\",\n                \"HighJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/HighJPG\",\n                \"PNG\": \"https://yourcantoname.canto.com/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/PNG\",\n                \"directUrlOriginal\": \"https://yourcantoname.canto.com/download/image/33jm9on7s16l32lnounv9tbo62/original\",\n                \"detail\": \"https://yourcantoname.canto.com/smartalbum/image?column=image&id=33jm9on7s16l32lnounv9tbo62\",\n                \"directUrlPreview\": \"https://yourcantoname.canto.com/preview/image/33jm9on7s16l32lnounv9tbo62/800\",\n                \"LowJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/LowJPG\"\n            },\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"time\": \"20210105062820000\",\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"name\": \"lifestyle-hammock.jpg\",\n            \"default\": {\n                \"Size\": \"1438331\",\n                \"Color\": null,\n                \"Uploaded by\": \"trothenpieler@canto.com\",\n                \"Dimensions\": \"2288*1520 Pixels\",\n                \"Date uploaded\": \"20210105062820000\",\n                \"Date modified\": \"20210105062820000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"33jm9on7s16l32lnounv9tbo62\",\n            \"size\": \"1438331\",\n            \"scheme\": \"image\",\n            \"owner\": \"trothenpieler@canto.com\",\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/album/Q7OS4\"\n                    },\n                    \"id\": \"Q7OS4\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/Q7OS4\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"2288\",\n            \"height\": \"1520\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Thorsten Rothenpieler\"\n        },\n        {\n            \"url\": {\n                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40/preview\",\n                \"download\": \"https://yourcantoname.canto.com/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40\",\n                \"metadata\": \"https://yourcantoname.canto.com/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40/metadata\",\n                \"HighJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40/HighJPG\",\n                \"PNG\": \"https://yourcantoname.canto.com/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40/PNG\",\n                \"directUrlOriginal\": \"https://yourcantoname.canto.com/download/image/34ihp8sofp2915g42uoi3qgv40/original\",\n                \"detail\": \"https://yourcantoname.canto.com/smartalbum/image?column=image&id=34ihp8sofp2915g42uoi3qgv40\",\n                \"directUrlPreview\": \"https://yourcantoname.canto.com/preview/image/34ihp8sofp2915g42uoi3qgv40/800\",\n                \"LowJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40/LowJPG\"\n            },\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"time\": \"20210105062822000\",\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"name\": \"hiking-shoes-8560-hammock.jpg\",\n            \"default\": {\n                \"Size\": \"1334090\",\n                \"Color\": null,\n                \"Uploaded by\": \"trothenpieler@canto.com\",\n                \"Dimensions\": \"3335*5000 Pixels\",\n                \"Date uploaded\": \"20210105062822000\",\n                \"Date modified\": \"20210105062822000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"34ihp8sofp2915g42uoi3qgv40\",\n            \"size\": \"1334090\",\n            \"scheme\": \"image\",\n            \"owner\": \"trothenpieler@canto.com\",\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"3335\",\n            \"height\": \"5000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Thorsten Rothenpieler\"\n        }\n    ]\n}"},{"id":"4ddaa60c-8a73-43b2-a189-597ffe1e1eb6","name":"200 OK - List image having size 400x400 px","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/:scheme?height=400&width=400&imageRangeOperation=or","host":["{{SITE_BASEURL}}"],"path":["api","v1",":scheme"],"query":[{"key":"height","value":"400"},{"key":"width","value":"400"},{"key":"imageRangeOperation","value":"or"}],"variable":[{"key":"scheme","value":"image","type":"string","description":"REQUIRED - \"image\""}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"facets\": [\n        {\n            \"max\": 144,\n            \"mix\": 72,\n            \"name\": \"resolution\",\n            \"min\": 72\n        },\n        {\n            \"max\": -9223372036854775808,\n            \"mix\": 9223372036854775807,\n            \"name\": \"duration\",\n            \"min\": 9223372036854775807\n        },\n        {\n            \"name\": \"tags\",\n            \"value\": [\n                \"Backpack\",\n                \"Great Outdoors Go\",\n                \"lifestyle\",\n                \"hiking shoes\",\n                \"Clothing\",\n                \"Campaign\",\n                \"Great Outdoors\",\n                \"Logo\",\n                \"MarTech Event\",\n                \"Retail\",\n                \"logo\",\n                \"Brochure\",\n                \"Canto\",\n                \"Text\",\n                \"Accessories\",\n                \"Accessory\",\n                \"Advertisement\",\n                \"Autumn\",\n                \"Cushion\",\n                \"Face\",\n                \"Fall\",\n                \"Female\",\n                \"Flyer\",\n                \"Gate\",\n                \"Girl\",\n                \"Glasses\",\n                \"Hair\",\n                \"Human\",\n                \"Jacket\",\n                \"Lato font\",\n                \"Menu\",\n                \"Outdoors\",\n                \"Page\",\n                \"Paper\",\n                \"Person\",\n                \"Photoshop\",\n                \"Pillow\",\n                \"Poster\",\n                \"Sitting\",\n                \"Steering Wheel\"\n            ]\n        },\n        {\n            \"name\": \"keywords\",\n            \"value\": [\n                \"Product\",\n                \"Lifestyle\",\n                \"Campaign\",\n                \"Unkeyworded\",\n                \"Company\"\n            ]\n        },\n        {\n            \"max\": 5792,\n            \"mix\": 123,\n            \"name\": \"dimension\",\n            \"min\": 123\n        },\n        {\n            \"name\": \"owner\",\n            \"value\": [\n                \"trothenpieler@canto.com\"\n            ]\n        },\n        {\n            \"name\": \"orientation\"\n        },\n        {\n            \"name\": \"storageClass\",\n            \"value\": [\n                \"standard\"\n            ]\n        },\n        {\n            \"name\": \"approval\",\n            \"value\": [\n                \"Approved\",\n                \"Restricted\"\n            ]\n        },\n        {\n            \"max\": 1609856992,\n            \"mix\": 1609856887,\n            \"name\": \"created\",\n            \"min\": 1609856887\n        },\n        {\n            \"name\": \"scheme\",\n            \"value\": [\n                \"image\"\n            ]\n        },\n        {\n            \"max\": 58268564,\n            \"mix\": 11730,\n            \"name\": \"fileSize\",\n            \"min\": 11730\n        },\n        {\n            \"max\": -9223372036854775808,\n            \"mix\": 9223372036854775807,\n            \"name\": \"pageNumber\",\n            \"min\": 9223372036854775807\n        }\n    ],\n    \"limit\": 10,\n    \"found\": 70,\n    \"sortBy\": \"time\",\n    \"sortDirection\": \"ascending\",\n    \"matchExpr\": \"es\",\n    \"results\": [\n        {\n            \"url\": {\n                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/preview\",\n                \"download\": \"https://yourcantoname.canto.com/api_binary/v1/image/032vhl3gh160d2kvf6s4353063\",\n                \"metadata\": \"https://yourcantoname.canto.com/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/metadata\",\n                \"HighJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/HighJPG\",\n                \"PNG\": \"https://yourcantoname.canto.com/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/PNG\",\n                \"directUrlOriginal\": \"https://yourcantoname.canto.com/download/image/032vhl3gh160d2kvf6s4353063/original\",\n                \"detail\": \"https://yourcantoname.canto.com/smartalbum/image?column=image&id=032vhl3gh160d2kvf6s4353063\",\n                \"directUrlPreview\": \"https://yourcantoname.canto.com/preview/image/032vhl3gh160d2kvf6s4353063/800\",\n                \"LowJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/LowJPG\"\n            },\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"time\": \"20210105062807000\",\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"name\": \"backpack-orange-3200-woman.jpg\",\n            \"default\": {\n                \"Size\": \"1064389\",\n                \"Color\": null,\n                \"Uploaded by\": \"trothenpieler@canto.com\",\n                \"Dimensions\": \"2448*3264 Pixels\",\n                \"Date uploaded\": \"20210105062807000\",\n                \"Date modified\": \"20210105062807000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"032vhl3gh160d2kvf6s4353063\",\n            \"size\": \"1064389\",\n            \"scheme\": \"image\",\n            \"owner\": \"trothenpieler@canto.com\",\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/album/JARDF\"\n                    },\n                    \"id\": \"JARDF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"SHFO1/JARDF\"\n                }\n            ],\n            \"width\": \"2448\",\n            \"height\": \"3264\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Thorsten Rothenpieler\"\n        },\n        {\n            \"url\": {\n                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v/preview\",\n                \"download\": \"https://yourcantoname.canto.com/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v\",\n                \"metadata\": \"https://yourcantoname.canto.com/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v/metadata\",\n                \"HighJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v/HighJPG\",\n                \"PNG\": \"https://yourcantoname.canto.com/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v/PNG\",\n                \"directUrlOriginal\": \"https://yourcantoname.canto.com/download/image/0eemvurtv14p3edsv71b57sj2v/original\",\n                \"detail\": \"https://yourcantoname.canto.com/smartalbum/image?column=image&id=0eemvurtv14p3edsv71b57sj2v\",\n                \"directUrlPreview\": \"https://yourcantoname.canto.com/preview/image/0eemvurtv14p3edsv71b57sj2v/800\",\n                \"LowJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v/LowJPG\"\n            },\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"time\": \"20210105062808000\",\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"name\": \"backpack-yellow-4522-meadow.jpg\",\n            \"default\": {\n                \"Size\": \"5455296\",\n                \"Color\": null,\n                \"Uploaded by\": \"trothenpieler@canto.com\",\n                \"Dimensions\": \"4926*3274 Pixels\",\n                \"Date uploaded\": \"20210105062808000\",\n                \"Date modified\": \"20210105062808000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"0eemvurtv14p3edsv71b57sj2v\",\n            \"size\": \"5455296\",\n            \"scheme\": \"image\",\n            \"owner\": \"trothenpieler@canto.com\",\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"4926\",\n            \"height\": \"3274\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Thorsten Rothenpieler\"\n        },\n        {\n            \"url\": {\n                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k/preview\",\n                \"download\": \"https://yourcantoname.canto.com/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k\",\n                \"metadata\": \"https://yourcantoname.canto.com/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k/metadata\",\n                \"HighJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k/HighJPG\",\n                \"PNG\": \"https://yourcantoname.canto.com/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k/PNG\",\n                \"directUrlOriginal\": \"https://yourcantoname.canto.com/download/image/14j5kd7n916sba6dsq3h9rtq4k/original\",\n                \"detail\": \"https://yourcantoname.canto.com/smartalbum/image?column=image&id=14j5kd7n916sba6dsq3h9rtq4k\",\n                \"directUrlPreview\": \"https://yourcantoname.canto.com/preview/image/14j5kd7n916sba6dsq3h9rtq4k/800\",\n                \"LowJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k/LowJPG\"\n            },\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"time\": \"20210105062810000\",\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"name\": \"backpack-black-4570-coat.jpg\",\n            \"default\": {\n                \"Size\": \"3228775\",\n                \"Color\": null,\n                \"Uploaded by\": \"trothenpieler@canto.com\",\n                \"Dimensions\": \"5616*3744 Pixels\",\n                \"Date uploaded\": \"20210105062810000\",\n                \"Date modified\": \"20210105062810000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"14j5kd7n916sba6dsq3h9rtq4k\",\n            \"size\": \"3228775\",\n            \"scheme\": \"image\",\n            \"owner\": \"trothenpieler@canto.com\",\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"5616\",\n            \"height\": \"3744\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Thorsten Rothenpieler\"\n        },\n        {\n            \"url\": {\n                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a/preview\",\n                \"download\": \"https://yourcantoname.canto.com/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a\",\n                \"metadata\": \"https://yourcantoname.canto.com/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a/metadata\",\n                \"HighJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a/HighJPG\",\n                \"PNG\": \"https://yourcantoname.canto.com/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a/PNG\",\n                \"directUrlOriginal\": \"https://yourcantoname.canto.com/download/image/155pgtpg2h6l31ao2i7buhmv2a/original\",\n                \"detail\": \"https://yourcantoname.canto.com/smartalbum/image?column=image&id=155pgtpg2h6l31ao2i7buhmv2a\",\n                \"directUrlPreview\": \"https://yourcantoname.canto.com/preview/image/155pgtpg2h6l31ao2i7buhmv2a/800\",\n                \"LowJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a/LowJPG\"\n            },\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"time\": \"20210105062811000\",\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"name\": \"lifestyle-arches.jpg\",\n            \"default\": {\n                \"Size\": \"11480774\",\n                \"Color\": null,\n                \"Uploaded by\": \"trothenpieler@canto.com\",\n                \"Dimensions\": \"5304*7952 Pixels\",\n                \"Date uploaded\": \"20210105062811000\",\n                \"Date modified\": \"20210105062811000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"155pgtpg2h6l31ao2i7buhmv2a\",\n            \"size\": \"11480774\",\n            \"scheme\": \"image\",\n            \"owner\": \"trothenpieler@canto.com\",\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"5304\",\n            \"height\": \"7952\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Thorsten Rothenpieler\"\n        },\n        {\n            \"url\": {\n                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t/preview\",\n                \"download\": \"https://yourcantoname.canto.com/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t\",\n                \"metadata\": \"https://yourcantoname.canto.com/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t/metadata\",\n                \"HighJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t/HighJPG\",\n                \"PNG\": \"https://yourcantoname.canto.com/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t/PNG\",\n                \"directUrlOriginal\": \"https://yourcantoname.canto.com/download/image/1dakfh4e9h3sfb57dpimr06j6t/original\",\n                \"detail\": \"https://yourcantoname.canto.com/smartalbum/image?column=image&id=1dakfh4e9h3sfb57dpimr06j6t\",\n                \"directUrlPreview\": \"https://yourcantoname.canto.com/preview/image/1dakfh4e9h3sfb57dpimr06j6t/800\",\n                \"LowJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t/LowJPG\"\n            },\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"time\": \"20210105062814000\",\n            \"keyword\": [\n                \"Company\"\n            ],\n            \"name\": \"Canto-Martech-Coffee-Front.ai\",\n            \"default\": {\n                \"Size\": \"30631212\",\n                \"Color\": null,\n                \"Uploaded by\": \"trothenpieler@canto.com\",\n                \"Dimensions\": \"630*810 Pixels\",\n                \"Date uploaded\": \"20210105062814000\",\n                \"Date modified\": \"20210105062814000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"Adobe Illustrator(R) 16.0\",\n                \"Date Created\": \"2018-04-02 09:48:40\",\n                \"Creation Tool\": null,\n                \"Resolution\": null\n            },\n            \"id\": \"1dakfh4e9h3sfb57dpimr06j6t\",\n            \"size\": \"30631212\",\n            \"scheme\": \"image\",\n            \"owner\": \"trothenpieler@canto.com\",\n            \"tag\": [\n                \"Accessories\",\n                \"Accessory\",\n                \"Brochure\",\n                \"Canto\",\n                \"Face\",\n                \"Female\",\n                \"Girl\",\n                \"Glasses\",\n                \"Hair\",\n                \"Human\",\n                \"MarTech Event\",\n                \"Person\",\n                \"Sitting\"\n            ],\n            \"description\": \"Canto-Milk-Sugar-Front\\nAdobe Illustrator File\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/album/LQ9NI\"\n                    },\n                    \"id\": \"LQ9NI\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"G4T0V/LQ9NI\"\n                }\n            ],\n            \"width\": \"630\",\n            \"height\": \"810\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Thorsten Rothenpieler\"\n        },\n        {\n            \"url\": {\n                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/preview\",\n                \"download\": \"https://yourcantoname.canto.com/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76\",\n                \"metadata\": \"https://yourcantoname.canto.com/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/metadata\",\n                \"HighJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/HighJPG\",\n                \"PNG\": \"https://yourcantoname.canto.com/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/PNG\",\n                \"directUrlOriginal\": \"https://yourcantoname.canto.com/download/image/1k54q0ppip5gnbmtqi1ep7fi76/original\",\n                \"detail\": \"https://yourcantoname.canto.com/smartalbum/image?column=image&id=1k54q0ppip5gnbmtqi1ep7fi76\",\n                \"directUrlPreview\": \"https://yourcantoname.canto.com/preview/image/1k54q0ppip5gnbmtqi1ep7fi76/800\",\n                \"LowJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/LowJPG\"\n            },\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"time\": \"20210105062816000\",\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"name\": \"Lato Font Sample.png\",\n            \"default\": {\n                \"Size\": \"96911\",\n                \"Color\": null,\n                \"Uploaded by\": \"trothenpieler@canto.com\",\n                \"Dimensions\": \"1398*508 Pixels\",\n                \"Date uploaded\": \"20210105062816000\",\n                \"Date modified\": \"20210105062816000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"appl\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"144.0\"\n            },\n            \"id\": \"1k54q0ppip5gnbmtqi1ep7fi76\",\n            \"size\": \"96911\",\n            \"scheme\": \"image\",\n            \"owner\": \"trothenpieler@canto.com\",\n            \"tag\": [\n                \"Lato font\"\n            ],\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/album/VPA4H\"\n                    },\n                    \"id\": \"VPA4H\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/VPA4H\"\n                }\n            ],\n            \"width\": \"1398\",\n            \"height\": \"508\",\n            \"dpi\": \"144.0\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Thorsten Rothenpieler\"\n        },\n        {\n            \"url\": {\n                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49/preview\",\n                \"download\": \"https://yourcantoname.canto.com/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49\",\n                \"metadata\": \"https://yourcantoname.canto.com/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49/metadata\",\n                \"HighJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49/HighJPG\",\n                \"PNG\": \"https://yourcantoname.canto.com/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49/PNG\",\n                \"directUrlOriginal\": \"https://yourcantoname.canto.com/download/image/1q32u4ueld6s5394f9aidq2q49/original\",\n                \"detail\": \"https://yourcantoname.canto.com/smartalbum/image?column=image&id=1q32u4ueld6s5394f9aidq2q49\",\n                \"directUrlPreview\": \"https://yourcantoname.canto.com/preview/image/1q32u4ueld6s5394f9aidq2q49/800\",\n                \"LowJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49/LowJPG\"\n            },\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"time\": \"20210105062817000\",\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"name\": \"backpack-grey-orange-4541-snow.jpg\",\n            \"default\": {\n                \"Size\": \"3691210\",\n                \"Color\": null,\n                \"Uploaded by\": \"trothenpieler@canto.com\",\n                \"Dimensions\": \"4000*6000 Pixels\",\n                \"Date uploaded\": \"20210105062817000\",\n                \"Date modified\": \"20210105062817000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"1q32u4ueld6s5394f9aidq2q49\",\n            \"size\": \"3691210\",\n            \"scheme\": \"image\",\n            \"owner\": \"trothenpieler@canto.com\",\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"4000\",\n            \"height\": \"6000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Thorsten Rothenpieler\"\n        },\n        {\n            \"url\": {\n                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/25og7ksvv112n65bmktpus6e41/preview\",\n                \"download\": \"https://yourcantoname.canto.com/api_binary/v1/image/25og7ksvv112n65bmktpus6e41\",\n                \"metadata\": \"https://yourcantoname.canto.com/api_binary/v1/image/25og7ksvv112n65bmktpus6e41/metadata\",\n                \"HighJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/25og7ksvv112n65bmktpus6e41/HighJPG\",\n                \"PNG\": \"https://yourcantoname.canto.com/api_binary/v1/image/25og7ksvv112n65bmktpus6e41/PNG\",\n                \"directUrlOriginal\": \"https://yourcantoname.canto.com/download/image/25og7ksvv112n65bmktpus6e41/original\",\n                \"detail\": \"https://yourcantoname.canto.com/smartalbum/image?column=image&id=25og7ksvv112n65bmktpus6e41\",\n                \"directUrlPreview\": \"https://yourcantoname.canto.com/preview/image/25og7ksvv112n65bmktpus6e41/800\",\n                \"LowJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/25og7ksvv112n65bmktpus6e41/LowJPG\"\n            },\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"time\": \"20210105062819000\",\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"name\": \"hiking-shoes-8550-leaves.jpg\",\n            \"default\": {\n                \"Size\": \"2369653\",\n                \"Color\": null,\n                \"Uploaded by\": \"trothenpieler@canto.com\",\n                \"Dimensions\": \"6000*4000 Pixels\",\n                \"Date uploaded\": \"20210105062819000\",\n                \"Date modified\": \"20210105062819000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"25og7ksvv112n65bmktpus6e41\",\n            \"size\": \"2369653\",\n            \"scheme\": \"image\",\n            \"owner\": \"trothenpieler@canto.com\",\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"4000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Thorsten Rothenpieler\"\n        },\n        {\n            \"url\": {\n                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/preview\",\n                \"download\": \"https://yourcantoname.canto.com/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62\",\n                \"metadata\": \"https://yourcantoname.canto.com/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/metadata\",\n                \"HighJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/HighJPG\",\n                \"PNG\": \"https://yourcantoname.canto.com/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/PNG\",\n                \"directUrlOriginal\": \"https://yourcantoname.canto.com/download/image/33jm9on7s16l32lnounv9tbo62/original\",\n                \"detail\": \"https://yourcantoname.canto.com/smartalbum/image?column=image&id=33jm9on7s16l32lnounv9tbo62\",\n                \"directUrlPreview\": \"https://yourcantoname.canto.com/preview/image/33jm9on7s16l32lnounv9tbo62/800\",\n                \"LowJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/LowJPG\"\n            },\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"time\": \"20210105062820000\",\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"name\": \"lifestyle-hammock.jpg\",\n            \"default\": {\n                \"Size\": \"1438331\",\n                \"Color\": null,\n                \"Uploaded by\": \"trothenpieler@canto.com\",\n                \"Dimensions\": \"2288*1520 Pixels\",\n                \"Date uploaded\": \"20210105062820000\",\n                \"Date modified\": \"20210105062820000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"33jm9on7s16l32lnounv9tbo62\",\n            \"size\": \"1438331\",\n            \"scheme\": \"image\",\n            \"owner\": \"trothenpieler@canto.com\",\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/album/Q7OS4\"\n                    },\n                    \"id\": \"Q7OS4\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/Q7OS4\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"2288\",\n            \"height\": \"1520\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Thorsten Rothenpieler\"\n        },\n        {\n            \"url\": {\n                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40/preview\",\n                \"download\": \"https://yourcantoname.canto.com/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40\",\n                \"metadata\": \"https://yourcantoname.canto.com/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40/metadata\",\n                \"HighJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40/HighJPG\",\n                \"PNG\": \"https://yourcantoname.canto.com/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40/PNG\",\n                \"directUrlOriginal\": \"https://yourcantoname.canto.com/download/image/34ihp8sofp2915g42uoi3qgv40/original\",\n                \"detail\": \"https://yourcantoname.canto.com/smartalbum/image?column=image&id=34ihp8sofp2915g42uoi3qgv40\",\n                \"directUrlPreview\": \"https://yourcantoname.canto.com/preview/image/34ihp8sofp2915g42uoi3qgv40/800\",\n                \"LowJPG\": \"https://yourcantoname.canto.com/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40/LowJPG\"\n            },\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"time\": \"20210105062822000\",\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"name\": \"hiking-shoes-8560-hammock.jpg\",\n            \"default\": {\n                \"Size\": \"1334090\",\n                \"Color\": null,\n                \"Uploaded by\": \"trothenpieler@canto.com\",\n                \"Dimensions\": \"3335*5000 Pixels\",\n                \"Date uploaded\": \"20210105062822000\",\n                \"Date modified\": \"20210105062822000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"34ihp8sofp2915g42uoi3qgv40\",\n            \"size\": \"1334090\",\n            \"scheme\": \"image\",\n            \"owner\": \"trothenpieler@canto.com\",\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"3335\",\n            \"height\": \"5000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Thorsten Rothenpieler\"\n        }\n    ]\n}"}],"_postman_id":"78e89c88-f85c-4b35-b85b-3fde52724485"},{"name":"Get content details","event":[{"listen":"test","script":{"id":"794fc2d1-91f4-4a62-ba83-7eded6e8bb2f","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"versionId\", jsonData.versionHistory[0].versionId);","","var urls = jsonData.url","pm.environment.set(\"directUrlPreviewHash\", urls.directUrlPreview.split(\"/\")[6])","pm.environment.set(\"directUrlOriginalHash\", urls.directUrlOriginal.split(\"/\")[6])"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"f545d3a9-bea9-4269-be5f-a21f35082168","exec":["const utils = eval(pm.collectionVariables.get(\"loadUtils\"))","","utils.checkVariable(\"contentScheme\")","utils.checkVariable(\"contentId\")"],"type":"text/javascript"}}],"id":"dc7523ac-7acf-4c80-be39-48b39b10bfb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/:scheme/:contentId?extendedRelationInfo=true&noXMPMetadata=true","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>Get content details including general properties, urls, default &amp; additional fields (custom fields), version history and metadata. Use the <i>detail url from url array to get a preview.</i></p>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1",":scheme",":contentId"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>If true a neew json format containing more information about relations is returned. (see examples)</p>\n<p><em>Default:</em> false</p>\n","type":"text/plain"},"key":"extendedRelationInfo","value":"true"},{"description":{"content":"<p>It is optional and defaults to false. If true, disables the metadata section and reading the data out of the s3 bucket.</p>\n","type":"text/plain"},"key":"noXMPMetadata","value":"true"}],"variable":[{"description":{"content":"<p>REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\"</p>\n","type":"text/plain"},"type":"any","value":"{{contentScheme}}","key":"scheme"},{"description":{"content":"<p>REQUIRED - The id of the content</p>\n","type":"text/plain"},"type":"any","value":"{{contentId}}","key":"contentId"}]}},"response":[{"id":"24b8ef7d-cec9-424d-b084-120eacf5cec9","name":"200 OK - image","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/:scheme/:contentId","host":["{{SITE_BASEURL}}"],"path":["api","v1",":scheme",":contentId"],"variable":[{"description":"\"image\", \"video\", \"audio\", \"document\", \"presentation\", or \"other\". (required)","key":"scheme","type":"string","value":"{{contentScheme}}"},{"description":"The id of the content (required)","key":"contentId","type":"string","value":"{{contentId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 04 Jan 2021 15:45:51 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 03-Jan-2021 15:45:51 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"// This is an example respponse of an image. \n// Comments are only for documentation purposes.\n{\n    \"metadata\": {               // Metadata extracted from the original file.\n        \"Encoding Process\": \"Baseline DCT, Huffman coding\",\n        \"File Type Detail\": \"JPEG\",\n        \"Y Cb Cr Sub Sampling\": \"YCbCr4:2:0 (2 2)\",\n        \"File Type Extension\": \"jpg\",\n        \"Flight File Extension\": \"jpg\",\n        \"RDpi\": \"72\",\n        \"X Resolution\": \"72\",\n        \"WHRotated\": \"false\",\n        \"RSize\": \"480\",\n        \"Flight File Type\": \"jpeg\",\n        \"File Name\": \"myFile.jpg\",\n        \"Create Date\": \"2020-12-22 12:26:38\",\n        \"File Inode Change Date/Time\": \"2020-12-22 12:26:38\",\n        \"File Type\": \"image\",\n        \"Image Size\": \"480x480\",\n        \"File Access Date/Time\": \"2020-12-22 12:26:38\",\n        \"JFIF Version\": \"1.01\",\n        \"Image Height\": \"480\",\n        \"Orientation\": \"Square File\",\n        \"Image Width\": \"480\",\n        \"Resolution Unit\": \"inches\",\n        \"File Modification Date/Time\": \"2020-12-22 12:26:38\",\n        \"MIME Type\": \"image/jpeg\",\n        \"Finfotool version\": \"1.5\",\n        \"Asset Data Size (Long)\": \"20709\",\n        \"Megapixels\": \"0.230\",\n        \"Color Components\": \"3\",\n        \"Y Resolution\": \"72\",\n        \"Bits Per Sample\": \"8\"\n    },\n    \"additional\": {                 // Values of custom fields. Fields can be set in Canto settings.\n        \"Product ID\": null,\n        \"Rating\": null\n    },\n    \"time\": \"20201222132638577\",    // Note: Instead of the time param in search results, this value is always the last modified time. \n    \"url\": {\n        // An image view of the content.\n        // For example: First page view for document content, and a smaller size image for the image content. \n        // By default, the image is “240” pixels (dimension means the longest size of the width and height when zooming out). \n        // To specifiy the dimension, you could provide slash “/” and dimension number under the preview url.\n        // For example, if the preview url is {{SITE_BASEURL}}/api_binary/v1/image/abc/preview, you can get a 500 dimension preview image \n        // by using “{{SITE_BASEURL}}/api_binary/v1/image/abc/preview/500”. \n        // If the maximum preview size is 400, the url will only get the 400 dimension preview.\n        \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05/preview\",           \n\n        // The original content file\n        \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05\",                  \n\n        // The “metadata” url will give you the xml file which was extracted from the original file. \n        // It has more detail than the metadata returned by the detail API. \n        // It follows the original data format, not the one in general notes.\n        \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05/metadata\",\n\n        // Download the image as jpg in high quality\n        \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05/HighJPG\",\n\n        // Download the image as jpg in low quality. (smaller filesize)\n        \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05/LowJPG\"\n\n        // Download the image as PNG\n        \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05/PNG\",\n\n        \"directUrlOriginal\": \"{{SITE_BASEURL}}/direct/image/lv7duppfc53m72bufj9rhnre05/DxOVvpquWXKxdbj-ZkONiR956AI/original?content-type=image%2Fjpeg&name=sample.jpeg\",\n        \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=lv7duppfc53m72bufj9rhnre05\",\n        \"directUrlPreview\": \"{{SITE_BASEURL}}/direct/image/dc7ij1ha7d6e51movkjb5qtm0g/NsXzJn2xYQFtNQUvr7bacp9PvJ8/m800/800\",\n        \"hlsLocation\": \"https://{{SITE_BASEURL}}/sample.m3u8\",\n        \"dashLocation\": \"https://{{SITE_BASEURL}}/sample.mpd\"\n    },\n    \"created\": \"20201222132638577\",                 // The original uploaded time.\n    \"expirationDate\": \"20210105173100000\",          // If the status is approved, and an expiration date is set, it will return this value. The format is \"yyyyMMddHHmmssSSS\"\n    \"width\": \"480\",                                 // Image width\n    \"height\": \"480\",                                // Image height\n    \"dpi\": \"72\",                                    // Image dpi\n    \"termsAndConditions\": \"Only for internal use\",  // Value will return if you turn on DRM in Canto setting, and set values in detail page.\n    \"versionHistory\": [                             // The upload history of the file.   \n        {\n            \"no\": \"2\",\n            \"ownerName\": \"Canto Support\",\n            \"created\": \"19691231160000000\",\n            \"time\": \"20210913203213114\",\n            \"versionId\": \"ZjdkMGFjNWYyMTQ4NDE4NWEzMDNkNjBiOTg5ODZmZmU\",\n            \"comment\": null,\n            \"uri\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05/ZjdkMGFjNWYyMTQ4NDE4NWEzMDNkNjBiOTg5ODZmZmU/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05/ZjdkMGFjNWYyMTQ4NDE4NWEzMDNkNjBiOTg5ODZmZmU\"\n            },\n            \"currentVersion\": true\n        },\n        {\n            \"no\": \"1\",\n            \"ownerName\": \"Canto Support\",\n            \"created\": \"19700101010000000\",\n            \"time\": \"20201222132638577\",\n            \"versionId\": \"bGF0ZXN0X3ZlcnNpb25fdGFn\",\n            \"comment\": null,\n            \"uri\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05/bGF0ZXN0X3ZlcnNpb25fdGFn/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05/bGF0ZXN0X3ZlcnNpb25fdGFn\"\n            }\n        }\n    ],\n     \"relatedFile\": [                           // The asset’s related file information.\n        {\n            \"id\": \"jol0b9ch751arcb32hkcfp397g\",\n            \"scheme\": \"image\",\n            \"name\": \"myRelatedFile.jpg\"\n        }\n    ],\n    \"lastUploaded\": \"20201222132638577\",        // The uploaded time of latest version. From here we could check whether the binary changed or not.\n    \"copyright\": \"by Canto\",                    // Value will return if you turn on DRM in Canto setting, and set values in detail page.\n    \"approvalStatus\": \"Pending\",                // The content status. Values: \"pending\", \"restricted\", \"approved\"\n    \"ownerName\": \"Canto Support\",               // The name of the owner of this asset\n    \"name\": \"myFile.jpg\",                       // The name of the asset\n    \"default\": {                                // The Canto default field values\n        \"Size\": \"20709\",\n        \"Color\": null,\n        \"Uploaded by\": \"Canto Support (canto-support@canto.com)\",\n        \"Dimensions\": \"480*480 Pixels\",\n        \"Date uploaded\": \"20201222132638577\",\n        \"Date modified\": \"20201222132638577\",\n        \"Name\": \"myFile.jpg\",\n        \"Copyright\": null,\n        \"Modified by\": null,\n        \"Content Type\": \"image/jpeg\",\n        \"Author\": null,\n        \"Date Created\": \"2020-12-22 12:26:38\",\n        \"Creation Tool\": null,\n        \"Resolution\": \"72\"\n    },\n    \"id\": \"lv7duppfc53m72bufj9rhnre05\",                     // The id of the asset\n    \"size\": \"20709\",                                        // The file size in bytes here.\n    \"scheme\": \"image\",                                      // \"image\", \"video\", \"audio\", \"document\", \"presentation\", \"other\" - All content within Canto will belong to one of these schemes.\n    \"owner\": \"Canto Support (canto-support@canto.com)\"      // The owner of this asset\n}"},{"id":"c23fb22b-25b1-4c3a-80c0-9cbdd8ae79a8","name":"200 OK - Relations","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/:scheme/:contentId?extendedRelationInfo=false","host":["{{SITE_BASEURL}}"],"path":["api","v1",":scheme",":contentId"],"query":[{"key":"extendedRelationInfo","value":"false","description":"If true a neew json format containing more information about relations is returned. "}],"variable":[{"id":"67e9720d-ce7b-4d28-97c3-a7c5f4b6fd1e","key":"scheme","value":"{{contentScheme}}","type":"string","description":"REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\""},{"id":"5d3708bf-d45e-4328-be79-b69d2cb82af5","key":"contentId","value":"{{contentId}}","type":"string","description":"REQUIRED - The id of the content"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 21 Dec 2021 08:43:13 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net js-agent.newrelic.com bam.nr-data.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com bam.nr-data.net; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Expect-CT","value":"max-age=86400, enforce"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Mon, 20-Dec-2021 08:43:13 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"// This is an example respponse of an image. \n// Comments are only for documentation purposes.\n{\n    \"relatedFile\": [\n        {\n            \"id\": \"js29l560ud229cfe3f79d0eg44\",\n            \"scheme\": \"image\",\n            \"name\": \"Test1.jpg\",\n            \"code\": null\n        },\n        {\n            \"id\": \"o31bd1b80d35f6qkbv87uou82u\",\n            \"scheme\": \"image\",\n            \"name\": \"Test2.png\",\n            \"code\": null\n        }\n    ],\n    \"metadata\": {               // Metadata extracted from the original file.\n        \"Encoding Process\": \"Baseline DCT, Huffman coding\",\n        \"File Type Detail\": \"JPEG\",\n        \"Y Cb Cr Sub Sampling\": \"YCbCr4:2:0 (2 2)\",\n        \"File Type Extension\": \"jpg\",\n        \"Flight File Extension\": \"jpg\",\n        \"RDpi\": \"72\",\n        \"X Resolution\": \"72\",\n        \"WHRotated\": \"false\",\n        \"RSize\": \"480\",\n        \"Flight File Type\": \"jpeg\",\n        \"File Name\": \"myFile.jpg\",\n        \"Create Date\": \"2020-12-22 12:26:38\",\n        \"File Inode Change Date/Time\": \"2020-12-22 12:26:38\",\n        \"File Type\": \"image\",\n        \"Image Size\": \"480x480\",\n        \"File Access Date/Time\": \"2020-12-22 12:26:38\",\n        \"JFIF Version\": \"1.01\",\n        \"Image Height\": \"480\",\n        \"Orientation\": \"Square File\",\n        \"Image Width\": \"480\",\n        \"Resolution Unit\": \"inches\",\n        \"File Modification Date/Time\": \"2020-12-22 12:26:38\",\n        \"MIME Type\": \"image/jpeg\",\n        \"Finfotool version\": \"1.5\",\n        \"Asset Data Size (Long)\": \"20709\",\n        \"Megapixels\": \"0.230\",\n        \"Color Components\": \"3\",\n        \"Y Resolution\": \"72\",\n        \"Bits Per Sample\": \"8\"\n    },\n    \"additional\": {                 // Values of custom fields. Fields can be set in Canto settings.\n        \"Product ID\": null,\n        \"Rating\": null\n    },\n    \"time\": \"20201222132638577\",    // Note: Instead of the time param in search results, this value is always the last modified time. \n    \"url\": {\n        // An image view of the content.\n        // For example: First page view for document content, and a smaller size image for the image content. \n        // By default, the image is “240” pixels (dimension means the longest size of the width and height when zooming out). \n        // To specifiy the dimension, you could provide slash “/” and dimension number under the preview url.\n        // For example, if the preview url is {{SITE_BASEURL}}/api_binary/v1/image/abc/preview, you can get a 500 dimension preview image \n        // by using “{{SITE_BASEURL}}/api_binary/v1/image/abc/preview/500”. \n        // If the maximum preview size is 400, the url will only get the 400 dimension preview.\n        \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05/preview\",           \n\n        // The original content file\n        \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05\",                  \n\n        // The “metadata” url will give you the xml file which was extracted from the original file. \n        // It has more detail than the metadata returned by the detail API. \n        // It follows the original data format, not the one in general notes.\n        \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05/metadata\",\n\n        // Download the image as jpg in high quality\n        \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05/HighJPG\",\n\n        // Download the image as jpg in low quality. (smaller filesize)\n        \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05/LowJPG\"\n\n        // Download the image as PNG\n        \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05/PNG\",\n\n        \"directUrlOriginal\": \"{{SITE_BASEURL}}/direct/image/lv7duppfc53m72bufj9rhnre05/DxOVvpquWXKxdbj-ZkONiR956AI/original?content-type=image%2Fjpeg&name=sample.jpeg\",\n        \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=lv7duppfc53m72bufj9rhnre05\",\n        \"directUrlPreview\": \"{{SITE_BASEURL}}/direct/image/dc7ij1ha7d6e51movkjb5qtm0g/NsXzJn2xYQFtNQUvr7bacp9PvJ8/m800/800\",\n        \"hlsLocation\": \"https://{{SITE_BASEURL}}/sample.m3u8\",\n        \"dashLocation\": \"https://{{SITE_BASEURL}}/sample.mpd\"\n    },\n    \"created\": \"20201222132638577\",                 // The original uploaded time.\n    \"expirationDate\": \"20210105173100000\",          // If the status is approved, and an expiration date is set, it will return this value. The format is \"yyyyMMddHHmmssSSS\"\n    \"width\": \"480\",                                 // Image width\n    \"height\": \"480\",                                // Image height\n    \"dpi\": \"72\",                                    // Image dpi\n    \"termsAndConditions\": \"Only for internal use\",  // Value will return if you turn on DRM in Canto setting, and set values in detail page.\n    \"versionHistory\": [                             // The upload history of the file.   \n        {\n            \"no\": \"1\",\n            \"ownerName\": \"Canto Support\",\n            \"created\": \"19700101010000000\",\n            \"time\": \"20201222132638577\",\n            \"versionId\": \"bGF0ZXN0X3ZlcnNpb25fdGFn\",\n            \"comment\": null,\n            \"uri\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05/bGF0ZXN0X3ZlcnNpb25fdGFn/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05/bGF0ZXN0X3ZlcnNpb25fdGFn\"\n            }\n        }\n    ],\n    \"lastUploaded\": \"20201222132638577\",        // The uploaded time of latest version. From here we could check whether the binary changed or not.\n    \"copyright\": \"by Canto\",                    // Value will return if you turn on DRM in Canto setting, and set values in detail page.\n    \"approvalStatus\": \"Pending\",                // The content status. Values: \"pending\", \"restricted\", \"approved\"\n    \"ownerName\": \"Canto Support\",               // The name of the owner of this asset\n    \"name\": \"myFile.jpg\",                       // The name of the asset\n    \"default\": {                                // The Canto default field values\n        \"Size\": \"20709\",\n        \"Color\": null,\n        \"Uploaded by\": \"Canto Support (canto-support@canto.com)\",\n        \"Dimensions\": \"480*480 Pixels\",\n        \"Date uploaded\": \"20201222132638577\",\n        \"Date modified\": \"20201222132638577\",\n        \"Name\": \"myFile.jpg\",\n        \"Copyright\": null,\n        \"Modified by\": null,\n        \"Content Type\": \"image/jpeg\",\n        \"Author\": null,\n        \"Date Created\": \"2020-12-22 12:26:38\",\n        \"Creation Tool\": null,\n        \"Resolution\": \"72\"\n    },\n    \"id\": \"lv7duppfc53m72bufj9rhnre05\",                     // The id of the asset\n    \"size\": \"20709\",                                        // The file size in bytes here.\n    \"scheme\": \"image\",                                      // \"image\", \"video\", \"audio\", \"document\", \"presentation\", \"other\" - All content within Canto will belong to one of these schemes.\n    \"owner\": \"Canto Support (canto-support@canto.com)\"      // The owner of this asset\n}"},{"id":"a6362bba-b342-4c8b-907e-00088e1a4a69","name":"200 OK - Extended Relations","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/:scheme/:contentId?extendedRelationInfo=true","host":["{{SITE_BASEURL}}"],"path":["api","v1",":scheme",":contentId"],"query":[{"key":"extendedRelationInfo","value":"true","description":"If true a neew json format containing more information about relations is returned. "}],"variable":[{"id":"67e9720d-ce7b-4d28-97c3-a7c5f4b6fd1e","key":"scheme","value":"{{contentScheme}}","type":"string","description":"REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\""},{"id":"5d3708bf-d45e-4328-be79-b69d2cb82af5","key":"contentId","value":"{{contentId}}","type":"string","description":"REQUIRED - The id of the content"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 21 Dec 2021 08:43:13 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net js-agent.newrelic.com bam.nr-data.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com bam.nr-data.net; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Expect-CT","value":"max-age=86400, enforce"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Mon, 20-Dec-2021 08:43:13 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"// This is an example respponse of an image. \n// Comments are only for documentation purposes.\n{\n   \"relatedFiles\": [\n        {\n            \"relatedId\": \"9605fd272eae4ea588d7e4bc006398d8\",\n            \"relatedName\": \"Relation Group 1\",\n            \"fileCount\": 1,\n            \"relatedContents\": [\n                {\n                    \"id\": \"o31bd1b80d35f6qkbv87uou82u\",\n                    \"scheme\": \"image\",\n                    \"name\": \"Test.png\"\n                }\n            ]\n        },\n        {\n            \"relatedId\": \"ef9c77b7ea3c471cb9365e97a1b931e4\",\n            \"relatedName\": \"v\",\n            \"fileCount\": 1,\n            \"relatedContents\": [\n                {\n                    \"id\": \"js29l560ud229cfe3f79d0eg44\",\n                    \"scheme\": \"image\",\n                    \"name\": \"Test2.jpg\",\n                    \"isPrimary\": false\n                }\n            ]\n        }\n    ],\n    \"metadata\": {               // Metadata extracted from the original file.\n        \"Encoding Process\": \"Baseline DCT, Huffman coding\",\n        \"File Type Detail\": \"JPEG\",\n        \"Y Cb Cr Sub Sampling\": \"YCbCr4:2:0 (2 2)\",\n        \"File Type Extension\": \"jpg\",\n        \"Flight File Extension\": \"jpg\",\n        \"RDpi\": \"72\",\n        \"X Resolution\": \"72\",\n        \"WHRotated\": \"false\",\n        \"RSize\": \"480\",\n        \"Flight File Type\": \"jpeg\",\n        \"File Name\": \"myFile.jpg\",\n        \"Create Date\": \"2020-12-22 12:26:38\",\n        \"File Inode Change Date/Time\": \"2020-12-22 12:26:38\",\n        \"File Type\": \"image\",\n        \"Image Size\": \"480x480\",\n        \"File Access Date/Time\": \"2020-12-22 12:26:38\",\n        \"JFIF Version\": \"1.01\",\n        \"Image Height\": \"480\",\n        \"Orientation\": \"Square File\",\n        \"Image Width\": \"480\",\n        \"Resolution Unit\": \"inches\",\n        \"File Modification Date/Time\": \"2020-12-22 12:26:38\",\n        \"MIME Type\": \"image/jpeg\",\n        \"Finfotool version\": \"1.5\",\n        \"Asset Data Size (Long)\": \"20709\",\n        \"Megapixels\": \"0.230\",\n        \"Color Components\": \"3\",\n        \"Y Resolution\": \"72\",\n        \"Bits Per Sample\": \"8\"\n    },\n    \"additional\": {                 // Values of custom fields. Fields can be set in Canto settings.\n        \"Product ID\": null,\n        \"Rating\": null\n    },\n    \"time\": \"20201222132638577\",    // Note: Instead of the time param in search results, this value is always the last modified time. \n    \"url\": {\n        // An image view of the content.\n        // For example: First page view for document content, and a smaller size image for the image content. \n        // By default, the image is “240” pixels (dimension means the longest size of the width and height when zooming out). \n        // To specifiy the dimension, you could provide slash “/” and dimension number under the preview url.\n        // For example, if the preview url is {{SITE_BASEURL}}/api_binary/v1/image/abc/preview, you can get a 500 dimension preview image \n        // by using “{{SITE_BASEURL}}/api_binary/v1/image/abc/preview/500”. \n        // If the maximum preview size is 400, the url will only get the 400 dimension preview.\n        \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05/preview\",           \n\n        // The original content file\n        \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05\",                  \n\n        // The “metadata” url will give you the xml file which was extracted from the original file. \n        // It has more detail than the metadata returned by the detail API. \n        // It follows the original data format, not the one in general notes.\n        \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05/metadata\",\n\n        // Download the image as jpg in high quality\n        \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05/HighJPG\",\n\n        // Download the image as jpg in low quality. (smaller filesize)\n        \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05/LowJPG\"\n\n        // Download the image as PNG\n        \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05/PNG\",\n\n        \"directUrlOriginal\": \"{{SITE_BASEURL}}/direct/image/lv7duppfc53m72bufj9rhnre05/DxOVvpquWXKxdbj-ZkONiR956AI/original?content-type=image%2Fjpeg&name=sample.jpeg\",\n        \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=lv7duppfc53m72bufj9rhnre05\",\n        \"directUrlPreview\": \"{{SITE_BASEURL}}/direct/image/dc7ij1ha7d6e51movkjb5qtm0g/NsXzJn2xYQFtNQUvr7bacp9PvJ8/m800/800\",\n        \"hlsLocation\": \"https://{{SITE_BASEURL}}/sample.m3u8\",\n        \"dashLocation\": \"https://{{SITE_BASEURL}}/sample.mpd\"\n    },\n    \"created\": \"20201222132638577\",                 // The original uploaded time.\n    \"expirationDate\": \"20210105173100000\",          // If the status is approved, and an expiration date is set, it will return this value. The format is \"yyyyMMddHHmmssSSS\"\n    \"width\": \"480\",                                 // Image width\n    \"height\": \"480\",                                // Image height\n    \"dpi\": \"72\",                                    // Image dpi\n    \"termsAndConditions\": \"Only for internal use\",  // Value will return if you turn on DRM in Canto setting, and set values in detail page.\n    \"versionHistory\": [                             // The upload history of the file.   \n        {\n            \"no\": \"1\",\n            \"ownerName\": \"Canto Support\",\n            \"created\": \"19700101010000000\",\n            \"time\": \"20201222132638577\",\n            \"versionId\": \"bGF0ZXN0X3ZlcnNpb25fdGFn\",\n            \"comment\": null,\n            \"uri\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05/bGF0ZXN0X3ZlcnNpb25fdGFn/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/lv7duppfc53m72bufj9rhnre05/bGF0ZXN0X3ZlcnNpb25fdGFn\"\n            }\n        }\n    ],\n    \"lastUploaded\": \"20201222132638577\",        // The uploaded time of latest version. From here we could check whether the binary changed or not.\n    \"copyright\": \"by Canto\",                    // Value will return if you turn on DRM in Canto setting, and set values in detail page.\n    \"approvalStatus\": \"Pending\",                // The content status. Values: \"pending\", \"restricted\", \"approved\"\n    \"ownerName\": \"Canto Support\",               // The name of the owner of this asset\n    \"name\": \"myFile.jpg\",                       // The name of the asset\n    \"default\": {                                // The Canto default field values\n        \"Size\": \"20709\",\n        \"Color\": null,\n        \"Uploaded by\": \"Canto Support (canto-support@canto.com)\",\n        \"Dimensions\": \"480*480 Pixels\",\n        \"Date uploaded\": \"20201222132638577\",\n        \"Date modified\": \"20201222132638577\",\n        \"Name\": \"myFile.jpg\",\n        \"Copyright\": null,\n        \"Modified by\": null,\n        \"Content Type\": \"image/jpeg\",\n        \"Author\": null,\n        \"Date Created\": \"2020-12-22 12:26:38\",\n        \"Creation Tool\": null,\n        \"Resolution\": \"72\"\n    },\n    \"id\": \"lv7duppfc53m72bufj9rhnre05\",                     // The id of the asset\n    \"size\": \"20709\",                                        // The file size in bytes here.\n    \"scheme\": \"image\",                                      // \"image\", \"video\", \"audio\", \"document\", \"presentation\", \"other\" - All content within Canto will belong to one of these schemes.\n    \"owner\": \"Canto Support (canto-support@canto.com)\"      // The owner of this asset\n}"}],"_postman_id":"dc7523ac-7acf-4c80-be39-48b39b10bfb0"},{"name":"Batch Get Content Detail","event":[{"listen":"test","script":{"id":"807825e0-c606-47de-9558-fe000775207b","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"versionId\", jsonData.docResult[0].versionHistory[0].versionId);"],"type":"text/javascript"}}],"id":"c9483281-c667-4ec2-be64-c07632680f2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": \"{{contentId}}\",\n        \"scheme\": \"{{contentScheme}}\"\n    },\n    {\n        \"id\": \"{{contentId2}}\",\n        \"scheme\": \"{{contentScheme}}\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/content","description":"<p>Batch get content detail information includes- general properties, urls, default &amp; additional fields (custom fields), version history and metadata. Take “detail” url from the array will navigate directly to the asset in Canto.</p>\n<div class=\"heading\">BODYPARAMS</div>\n<hr />\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td>The parameter is a json array, each json represent a content, limit: Max 100 contents for one request.</td>\n</tr>\n<tr>\n<td>scheme</td>\n<td>REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)</td>\n</tr>\n<tr>\n<td>id</td>\n<td>REQUIRED - Id of the content.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","batch","content"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"3b430a47-3144-4f82-bd46-b8a440a49b68","name":"200 OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": \"{{contentId}}\",\n        \"scheme\": \"{{contentScheme}}\"\n    },\n    {\n        \"id\": \"{{contentId2}}\",\n        \"scheme\": \"{{contentScheme}}\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/content"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 14:47:01 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 14:47:00 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"docResult\": [\n        {\n            \"metadata\": {\n                \"Rendering Intent\": \"Perceptual\",\n                \"Media Black Point\": \"0 0 0\",\n                \"File Type Detail\": \"JPEG\",\n                \"Measurement Flare\": \"0.999%\",\n                \"Y Cb Cr Sub Sampling\": \"YCbCr4:2:0 (2 2)\",\n                \"Device Model Desc\": \"IEC 61966-2.1 Default RGB colour space - sRGB\",\n                \"Profile ID\": \"0\",\n                \"Profile Copyright\": \"Copyright (c) 1998 Hewlett-Packard Company\",\n                \"Measurement Observer\": \"CIE 1931\",\n                \"RDpi\": \"72\",\n                \"X Resolution\": \"72\",\n                \"Profile Date Time\": \"1998-02-09 06:49:00\",\n                \"Device Model\": \"sRGB\",\n                \"Technology\": \"Cathode Ray Tube Display\",\n                \"Profile File Signature\": \"acsp\",\n                \"Profile Creator\": \"HP\",\n                \"WHRotated\": \"false\",\n                \"Primary Platform\": \"Microsoft Corporation\",\n                \"CMM Flags\": \"Not Embedded, Independent\",\n                \"Viewing Cond Surround\": \"3.92889 4.07439 3.36179\",\n                \"File Inode Change Date/Time\": \"2019-12-12 20:04:35\",\n                \"Color Mode\": \"RGB\",\n                \"Color\": \"RGB\",\n                \"File Type\": \"image\",\n                \"Profile Version\": \"2.1.0\",\n                \"Image Size\": \"2448x3264\",\n                \"Color Model\": \"RGB\",\n                \"File Access Date/Time\": \"2019-12-12 20:04:35\",\n                \"JFIF Version\": \"1.01\",\n                \"Orientation\": \"Portrait File\",\n                \"Measurement Geometry\": \"Unknown (0)\",\n                \"File Modification Date/Time\": \"2019-12-12 20:04:35\",\n                \"Device Mfg Desc\": \"IEC http://www.iec.ch\",\n                \"Viewing Cond Illuminant Type\": \"D50\",\n                \"Author\": \"HP\",\n                \"Color Components\": \"3\",\n                \"Profile Connection Space\": \"XYZ\",\n                \"Blue Matrix Column\": \"0.14307 0.06061 0.7141\",\n                \"Y Resolution\": \"72\",\n                \"Viewing Cond Desc\": \"Reference Viewing Condition in IEC61966-2.1\",\n                \"Viewing Cond Illuminant\": \"19.6445 20.3718 16.8089\",\n                \"Encoding Process\": \"Baseline DCT, Huffman coding\",\n                \"Flight File Extension\": \"jpg\",\n                \"Profile Description\": \"sRGB IEC61966-2.1\",\n                \"Device Manufacturer\": \"IEC\",\n                \"Color Space\": \"RGB\",\n                \"RSize\": \"2448\",\n                \"Red Matrix Column\": \"0.43607 0.22249 0.01392\",\n                \"Flight File Type\": \"jpeg\",\n                \"File Name\": \"backpack-orange-3200-woman.jpg\",\n                \"Profile Class\": \"Display Device Profile\",\n                \"Media White Point\": \"0.95045 1 1.08905\",\n                \"Profile CMM Type\": \"Lino\",\n                \"Connection Space Illuminant\": \"0.9642 1 0.82491\",\n                \"Image Height\": \"3264\",\n                \"Image Width\": \"2448\",\n                \"Resolution Unit\": \"inches\",\n                \"MIME Type\": \"image/jpeg\",\n                \"Luminance\": \"76.03647 80 87.12462\",\n                \"Finfotool version\": \"1.5\",\n                \"Asset Data Size (Long)\": \"1064389\",\n                \"Green Matrix Column\": \"0.38515 0.71687 0.09708\",\n                \"Measurement Illuminant\": \"D65\",\n                \"Device Attributes\": \"Reflective, Glossy, Positive, Color\",\n                \"Measurement Backing\": \"0 0 0\",\n                \"Bits Per Sample\": \"8\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062807030\",\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"system\": null,\n                \"application\": null,\n                \"Rating\": null\n            },\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/032vhl3gh160d2kvf6s4353063/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=032vhl3gh160d2kvf6s4353063\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/032vhl3gh160d2kvf6s4353063/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/LowJPG\"\n            },\n            \"created\": \"20210105062807030\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\n                    },\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"namePath\": \"Marketing/Marketing Photos\",\n                    \"idPath\": \"SHFO1/JARDF\",\n                    \"name\": \"Marketing Photos\",\n                    \"id\": \"JARDF\",\n                    \"size\": \"0\",\n                    \"scheme\": \"album\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"namePath\": \"Great Outdoors Go/Great Outdoors Products/Backpacks\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\",\n                    \"name\": \"Backpacks\",\n                    \"id\": \"LIBJF\",\n                    \"size\": \"0\",\n                    \"scheme\": \"album\"\n                }\n            ],\n            \"width\": \"2448\",\n            \"height\": \"3264\",\n            \"dpi\": \"72\",\n            \"versionHistory\": [\n                {\n                    \"no\": \"1\",\n                    \"ownerName\": \"Canto Support\",\n                    \"created\": \"19691231160000000\",\n                    \"time\": \"20210105062807030\",\n                    \"versionId\": \"bGF0ZXN0X3ZlcnNpb25fdGFn\",\n                    \"comment\": null,\n                    \"uri\": {\n                        \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/bGF0ZXN0X3ZlcnNpb25fdGFn/preview\",\n                        \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/bGF0ZXN0X3ZlcnNpb25fdGFn\"\n                    }\n                }\n            ],\n            \"lastUploaded\": \"20210105062807030\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\",\n            \"name\": \"backpack-orange-3200-woman.jpg\",\n            \"default\": {\n                \"Size\": \"1064389\",\n                \"Color\": \"RGB\",\n                \"Uploaded by\": \"Canto Support(canto-support@canto.com)\",\n                \"Dimensions\": \"2448*3264 Pixels\",\n                \"Date uploaded\": \"20210105062807030\",\n                \"Date modified\": \"20210105062807030\",\n                \"Name\": \"backpack-orange-3200-woman.jpg\",\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": \"image/jpeg\",\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"032vhl3gh160d2kvf6s4353063\",\n            \"size\": \"1064389\",\n            \"scheme\": \"image\",\n            \"owner\": \"Canto Support(canto-support@canto.com)\"\n        }\n    ],\n    \"failed\": [\n        {\n            \"scheme\": \"image\",\n            \"id\": \"epnoj07hft395clgd3mqg7it1d\"\n        }\n    ]\n}"}],"_postman_id":"c9483281-c667-4ec2-be64-c07632680f2d"},{"name":"Batch Edit Content Get","event":[{"listen":"prerequest","script":{"id":"4d2db578-25a8-4a8d-a35a-4de80241dcd3","exec":["const utils = eval(globals.loadUtils)","","utils.checkVariable(\"contentScheme\")","utils.checkVariable(\"contentId\")"],"type":"text/javascript"}}],"id":"44a2467a-4dfd-4b63-89e0-1f6fa27ec73f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"[\n\t{\n\t\t\"scheme\": \"{{contentScheme}}\",  \n\t\t\"id\": \"{{contentId}}\"\n\t},\n    {\n\t\t\"scheme\": \"{{contentScheme}}\",\n\t\t\"id\": \"{{contentId2}}\"\n\t}\n]"},"url":"{{SITE_BASEURL}}/api/v1/batch/edit","description":"<p><a href=\"#api-rate-limit\"><i>Rate Level: 2</i></a></p>\n<p>Get information field values of multiple assets.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","batch","edit"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"13e64f8e-9ae3-449e-9ba9-9a1bbad733ab","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"[\n\t{\n\t\t\"scheme\": \"image\",\n\t\t\"id\": \"032vhl3gh160d2kvf6s4353063\"\n\t},\n    {\n\t\t\"scheme\": \"image\",\n\t\t\"id\": \"4t7mlrglrh4ur7h9dojppgq502\"\n\t}\n]"},"url":"{{SITE_BASEURL}}/api/v1/batch/edit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Jan 2021 16:00:14 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 16:00:14 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"approvalStatus\": [\n        \"Approved\"\n    ],\n    \"Clothing Line\": [\n        \"Packs\"\n    ],\n    \"Product ID\": null,\n    \"autoApproveDate\": null,\n    \"Asset Type\": [\n        \"Product\"\n    ],\n    \"Rating\": null,\n    \"availableKeywords\": [\n        \"Campaign\",\n        \"Company\",\n        \"Lifestyle\",\n        \"Product\"\n    ],\n    \"description\": null,\n    \"tag\": [\n        \"Backpack\"\n    ],\n    \"keyword\": [\n        \"Product\"\n    ],\n    \"expirationDate\": null\n}"},{"id":"2f6205c8-c1de-4d48-8f36-d8ecedc7ab21","name":"404 Not Found - Invalid scheme","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"[\n\t{\n\t\t\"scheme\": \"InvalidScheme\",\n\t\t\"id\": \"032vhl3gh160d2kvf6s4353063\"\n\t},\n    {\n\t\t\"scheme\": \"image\",\n\t\t\"id\": \"4t7mlrglrh4ur7h9dojppgq502\"\n\t}\n]"},"url":"{{SITE_BASEURL}}/api/v1/batch/edit"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Jan 2021 16:01:58 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 16:01:58 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2303,\n    \"message\": \"The content 766f8980f17f4692b2b068eda81e5d2d does not exist.\"\n}"}],"_postman_id":"44a2467a-4dfd-4b63-89e0-1f6fa27ec73f"},{"name":"Batch Edit Content Apply","event":[{"listen":"prerequest","script":{"id":"4f416351-2c9c-4565-af8b-de24f84e2812","exec":["    var requestBody = [];","    requestBody.push({\"id\": pm.environment.get(\"contentId\"), \"scheme\": pm.environment.get(\"contentScheme\")})","    pm.variables.set(\"content\", JSON.stringify(requestBody));",""],"type":"text/javascript"}}],"id":"527977d3-1c58-4d53-9c07-1cc87d3270d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n        \"contents\": [\n            {\n                \"id\": \"{{contentId}}\",\n                \"scheme\": \"{{contentScheme}}\"\n            },\n            {\n                \"id\": \"{{contentId2}}\",\n                \"scheme\": \"{{contentScheme2}}\"\n            }\n        ],\n        \"properties\": [\n            {\n                \"propertyId\": \"comment\",\n                \"propertyValue\": \"bandwidth\",\n                \"action\": \"add\",\n                \"customField\": false\n            },\n            {\n                \"propertyId\": \"smartTag\",\n                \"propertyValue\": \"smartTagValue\",\n                \"action\": \"remove\",\n                \"customField\": false\n            },\n            {\n                \"propertyId\": \"copyright\",\n                \"propertyValue\": \"copyrightValue\"\n            }\n        ]\n    }","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/edit","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 4</em></a></p>\n<p>Save the information fields of the batch edit content.</p>\n<h2 id=\"body-parameters\">Body parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>propertyId</td>\n<td><p>The field you want to change.</p><p>Use the name of the field, not the id</p></td>\n</tr>\n<tr>\n<td>propertyValue</td>\n<td><p>Properties value, permit an empty string.</p><p>If property name is expirationDate/autoApproveDate,value format by \"YYYY-MM-DD HH:mm\".</p><p>If property  name is \"keyword\" or \"tag\", the multi value separates by comma.</p><p>If property is a DATE Custom field, value format by \"YYYY-MM-DD\".</p><p>If property is a SINGLECHOICE or MULTICHOICE custom field, the value should refer to the response of Get Custom Field List API.</p><p>If the property is a LABEL custom field, the value is the hexadecimal representation of the color, like \"#FFFFFF\".</p><p>If property is a RATING custom field, values can range from 1 to 5.</p><p>MULTICHOICE and Label Custom fields may have multiple values, so their property values should be an array.</p></td>\n</tr>\n<tr>\n<td>action</td>\n<td><p>Permit an empty string.</p><p>Values for field description: \"append\" or \"cover\" (default).</p><p>Values for fields \"keyword\", \"tag\" or a custom field of type: MULTICHOICE, LABEL: \"add\" (default) or \"remove\".</p></td>\n</tr>\n<tr>\n<td>customField</td>\n<td><p>true if the field is a custom field. Otherwise false.</p>Default: \"false\"</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","batch","edit"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"82618eca-0075-40c0-af83-52ca4bc4d44d","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n        \"contents\": [\n            {\n                \"id\": \"{{contentId}}\",\n                \"scheme\": \"{{contentScheme}}\"\n            }\n        ],\n        \"properties\": [\n            {\n                \"propertyId\": \"comment\",\n                \"propertyValue\": \"matrix\",\n                \"action\": \"add\",\n                \"customField\": false\n            }\n        ]\n    }","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/edit"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 07 Jan 2021 16:15:32 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"7"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 16:15:32 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"success"},{"id":"980db22c-da87-4569-b99e-99d290126b05","name":"200 OK - description cover","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n        \"contents\": [\n            {\n                \"id\": \"{{contentId}}\",\n                \"scheme\": \"{{contentScheme}}\"\n            }\n        ],\n        \"properties\": [\n            {\n                \"propertyId\": \"description\",\n                \"propertyValue\": \"system\",\n                \"action\": \"cover\",\n                \"customField\": false\n            }\n        ]\n    }","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/edit"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 07 Jan 2021 16:15:32 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"7"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 16:15:32 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"success"},{"id":"2a3565f9-1dff-4b78-8196-3789618e2e47","name":"200 OK - description append","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n        \"contents\": [\n            {\n                \"id\": \"{{contentId}}\",\n                \"scheme\": \"{{contentScheme}}\"\n            }\n        ],\n        \"properties\": [\n            {\n                \"propertyId\": \"description\",\n                \"propertyValue\": \" - string to append\",\n                \"action\": \"append\",\n                \"customField\": false\n            }\n        ]\n    }","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/edit"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 07 Jan 2021 16:15:32 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"7"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 16:15:32 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"success"},{"id":"11de7372-2208-4714-8b6c-3f84ec385874","name":"200 OK - custom field add","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n        \"contents\": [\n            {\n                \"id\": \"{{contentId}}\",\n                \"scheme\": \"{{contentScheme}}\"\n            }\n        ],\n        \"properties\": [\n            {\n                \"propertyId\": \"My Multichice Field\",\n                \"propertyValue\": \"value to add\",\n                \"action\": \"add\",\n                \"customField\": true\n            }\n        ]\n    }","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/edit"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 07 Jan 2021 16:15:32 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"7"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 16:15:32 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"success"},{"id":"d2be374e-e2fc-43c0-b6d3-91346becb624","name":"200 OK - custom field remove","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n        \"contents\": [\n            {\n                \"id\": \"{{contentId}}\",\n                \"scheme\": \"{{contentScheme}}\"\n            }\n        ],\n        \"properties\": [\n            {\n                \"propertyId\": \"My Multichice Field\",\n                \"propertyValue\": \"value to remove\",\n                \"action\": \"remove\",\n                \"customField\": true\n            }\n        ]\n    }","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/edit"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 07 Jan 2021 16:15:32 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"7"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 16:15:32 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"success"},{"id":"bd47f104-08e7-41ab-972c-da3f44b41fbc","name":"200 OK - Text with linebreaks","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"contents\": [\n    {\n      \"id\": \"{{contentId}}\",\n      \"scheme\": \"{{contentScheme}}\"\n    }\n  ],\n  \"properties\": [\n    {\n      \"propertyId\": \"description\",\n      \"propertyValue\": \"- one\\n- two\\n- three\",\n      \"action\": \"add\",\n      \"customField\": false\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/edit"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 07 Jan 2021 16:15:32 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"7"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 16:15:32 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"success"},{"id":"6acb2361-c0d0-4a78-93d6-2937038e5ce0","name":"200 OK - Remove SmartTag","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n        \"contents\": [\n            {\n                \"id\": \"{{contentId}}\",\n                \"scheme\": \"{{contentScheme}}\"\n            }\n        ],\n        \"properties\": [\n            {\n                \"propertyId\": \"smartTag\",\n                \"propertyValue\": \"smartTagValue\",\n                \"action\": \"remove\",\n                \"customField\": false\n            }\n        ]\n    }","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/edit"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"18e1cc23-ea60-45c0-b0d7-7dff67cffc36","name":"200 OK - Set Copyright","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n        \"contents\": [\n            {\n                \"id\": \"{{contentId}}\",\n                \"scheme\": \"{{contentScheme}}\"\n            }\n        ],\n        \"properties\": [\n            {\n                \"propertyId\": \"copyright\",\n                \"propertyValue\": \"copyrightValue\"\n            }\n        ]\n    }","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/edit"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"0662403f-f16b-40ad-aa64-89dd5115f61e","name":"200 OK - termsAndConditions","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"contents\": [\r\n        {\r\n            \"id\": \"{{contentId}}\",\r\n            \"scheme\": \"{{contentScheme}}\"\r\n        }\r\n    ],\r\n    \"properties\": [\r\n        {\r\n            \"propertyId\": \"termsAndConditions\",\r\n            \"propertyValue\": \"{{termsAndConditionsId}}\",\r\n            \"action\": \"add\",\r\n            \"customField\": false\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/edit"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"success"}],"_postman_id":"527977d3-1c58-4d53-9c07-1cc87d3270d2"},{"name":"Rename content","event":[{"listen":"test","script":{"id":"54663797-714d-415e-ae50-e9a2b488df9a","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"8fd2b9c5-0886-4c99-9df6-12405fbc38a0","exec":["const utils = eval(globals.loadUtils)","","utils.checkVariable(\"contentId\")","utils.checkVariable(\"contentScheme\")"],"type":"text/javascript"}}],"id":"84674668-54d8-48f1-b385-3cfe8d7fe4a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"fuerte_home.pptm\"\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/:scheme/:contentId/rename","description":"<p><a href=\"#api-rate-limit\"><i>Rate Level: 2</i></a></p>\n<p>Renames an asset</p>\n<p>BODYPARAMS</p>\n<hr />\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>REQUIRED - The new name of the asset</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1",":scheme",":contentId","rename"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"description":{"content":"<p>REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)</p>\n","type":"text/plain"},"type":"any","value":"{{contentScheme}}","key":"scheme"},{"description":{"content":"<p>REQUIRED - Id of the content</p>\n","type":"text/plain"},"type":"any","value":"{{contentId}}","key":"contentId"}]}},"response":[{"id":"ede11556-a6f6-470e-a816-853f2a9a065c","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"shirt_well.sig\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{SITE_BASEURL}}/api/v1/:scheme/:contentId/rename","host":["{{SITE_BASEURL}}"],"path":["api","v1",":scheme",":contentId","rename"],"variable":[{"key":"scheme","value":"image","type":"string","description":"REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)"},{"key":"contentId","value":"epnoj07hft395clgd3mqg7it1d","type":"string","description":"REQUIRED - Id of the content"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 11 Jan 2021 13:51:42 GMT"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 13:51:42 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"84674668-54d8-48f1-b385-3cfe8d7fe4a1"},{"name":"Create Share Links","event":[{"listen":"prerequest","script":{"id":"cf18052c-d224-487e-8a67-7112e6a7e262","exec":["const utils = eval(globals.loadUtils)","","utils.checkVariable(\"contentId\")","utils.checkVariable(\"contentScheme\")"],"type":"text/javascript"}}],"id":"58fc84a6-a74e-4e21-9890-c41d05da6ef3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"shareDetail\": {\n        // test\n        \"expires\": \"2022-01-01\",\n        \"hideShareBy\": true,\n        \"allowDownloadOriginal\": true,\n        \"allowCropAndResize\": true,\n        \"allowPresets\": true,\n        \"displayMetadata\": true\n    },\n    \"contents\": [\n        {\n            \"id\": \"{{contentId}}\",           \n            \"scheme\": \"{{contentScheme}}\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/share/batch/","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>This supports batch sharing of contentsss</p>\n<div class=\"heading\">BODYPARAMS</div>\n<hr />\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>scheme</td>\n<td>\"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\"</td>\n</tr>\n<tr>\n<td>id</td>\n<td>The id of the content</td>\n</tr>\n<tr>\n<td>expires</td>\n<td>If null, never expired.</td>\n</tr>\n<tr>\n<td>hideShareBy</td>\n<td>If true, the shared by user will be hidden</td>\n</tr>\n<tr>\n<td>allowDownloadOriginal</td>\n<td>If true, downloading Original file is available. If false, image can be downloaded as converted content.</td>\n</tr>\n<tr>\n<td>allowCropAndResize</td>\n<td>If true, the download page will show crop and resize options.</td>\n</tr>\n<tr>\n<td>allowPresets</td>\n<td>If true, can be downloaded as a preset.</td>\n</tr>\n<tr>\n<td>displayMetadata</td>\n<td>If true, user can view metadata.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","share","batch",""],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"8bb41cc6-54ea-471d-821d-a26f166e7253","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"shareDetail\": {\n        \"expires\": \"2022-01-01\",\n        \"hideShareBy\": true,\n        \"allowDownloadOriginal\": true,\n        \"allowCropAndResize\": true,\n        \"allowPresets\": true\n    },\n    \"contents\": [\n        {\n            \"id\": \"{{contentId}}\",           \n            \"scheme\": \"{{contentScheme}}\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/share/batch/"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 07 Jan 2021 16:30:10 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 16:30:10 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"https://yourcantoname.canto.com/b/UE52I"}],"_postman_id":"58fc84a6-a74e-4e21-9890-c41d05da6ef3"},{"name":"Batch share an album","id":"7b2db4bf-ffb9-4c59-9e3f-94c84596e94f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"containers\": [\n        {\n            \"id\": \"{{albumId}}\",\n            \"scheme\": \"album\"\n        }\n    ],\n    \"shareDetail\": {\n        \"expires\": \"2021-07-23\",\n        \"hideShareBy\": true,\n        \"allowDownloadOriginal\": true,\n        \"allowCropAndResize\": true,\n        \"allowPresets\": true,\n        \"displayMetadata\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/share/batch/container","description":"<p>This API support batch share albums only</p>\n<div class=\"heading\">BODYPARAMS</div>\n<hr />\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>scheme</td>\n<td>REQUIRED - \"album\". (Folders are not supported, yet)</td>\n</tr>\n<tr>\n<td>id</td>\n<td>REQUIRED - Id of the album</td>\n</tr>\n<tr>\n<td>expires</td>\n<td>Format: \"yyyy-MM-dd\"<br /><br />If null, never expired.</td>\n</tr>\n<tr>\n<td>hideShareBy</td>\n<td>REQUIRED - \"true\" or \"false\"<br /><br />If true, it will hide the username in the share link.</td>\n</tr>\n<tr>\n<td>allowDownloadOriginal</td>\n<td>REQUIRED - \"true\" or \"false\"<br /><br />If true, end user can download the original file.<br />If false, end user can download image as converted content.</td>\n</tr>\n<tr>\n<td>allowCropAndResize</td>\n<td>REQUIRED - \"true\" or \"false\"<br /><br />If true, the download page will show the crop and resize options.</td>\n</tr>\n<tr>\n<td>allowPresets</td>\n<td>REQUIRED - \"true\" or \"false\"<br /><br />If true, end user will be allowed to download using a preset.</td>\n</tr>\n<tr>\n<td>displayMetadata</td>\n<td>REQUIRED - \"true\" or \"false\"<br /><br />If true, user can view metadata.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","share","batch","container"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"099f5086-dae0-462d-807a-a814a3c167e9","name":"48 Batch share an album","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"containers\": [\n        {\n            \"id\": \"{{albumId}}\",\n            \"scheme\": \"album\"\n        }\n    ],\n    \"shareDetail\": {\n        \"expires\": \"2021-07-23\",\n        \"hideShareBy\": true,\n        \"allowDownloadOriginal\": true,\n        \" allowCropAndResize\": true,\n        \"allowPresets\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/share/batch/container"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Tue, 27 Oct 2020 15:36:32 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"35"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Mon, 26-Oct-2020 15:36:32 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"https://rausch.canto.global/s/MP78B"},{"id":"7595d3a3-03dc-4456-b050-a822c151d216","name":"200 OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"containers\": [\n        {\n            \"id\": \"IMUIF\",\n            \"scheme\": \"album\"\n        }\n    ],\n    \"shareDetail\": {\n        \"expires\": \"2021-07-23\",\n        \"hideShareBy\": true,\n        \"allowDownloadOriginal\": true,\n        \" allowCropAndResize\": true,\n        \"allowPresets\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/share/batch/container"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 11 Jan 2021 14:39:34 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 14:39:34 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"https://yourcantoname.canto.com/s/O4DJJ"}],"_postman_id":"7b2db4bf-ffb9-4c59-9e3f-94c84596e94f"},{"name":"Attach tag to content","event":[{"listen":"prerequest","script":{"id":"ac79a5a6-7249-4759-841e-9ec468eceb6f","exec":["const utils = eval(globals.loadUtils)","","utils.checkVariable(\"contentScheme\")","utils.checkVariable(\"contentId\")"],"type":"text/javascript"}}],"id":"092f82f5-c839-44b4-8921-71ed211b8fb4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"{{SITE_BASEURL}}/api/v1/:scheme/:contentId/tag/:tag","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>Attach a tag to specific content. (A tag is just a plain text.)</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1",":scheme",":contentId","tag",":tag"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"description":{"content":"<p>REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\" (case sensitive)</p>\n<p>scheme refers to the smart albums within your Canto application.</p>\n","type":"text/plain"},"type":"string","value":"{{contentScheme}}","key":"scheme"},{"description":{"content":"<p>REQUIRED - Id of the content</p>\n","type":"text/plain"},"type":"string","value":"{{contentId}}","key":"contentId"},{"description":{"content":"<p>REQUIRED - The plain text of tag</p>\n<p><strong>Note:</strong> An already attached tag will result in HTTP status \"200 OK\".</p>\n","type":"text/plain"},"type":"string","value":"newTag","key":"tag"}]}},"response":[{"id":"96a0e66f-f0c2-4f0e-bab9-4ae44c669f4f","name":"200 OK","originalRequest":{"method":"PUT","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/:scheme/:contentId/tag/:tag","host":["{{SITE_BASEURL}}"],"path":["api","v1",":scheme",":contentId","tag",":tag"],"variable":[{"description":"REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\" (case sensitive)\n\nscheme refers to the smart albums within your Canto application.","key":"scheme","type":"string","value":"{{contentScheme}}"},{"description":"REQUIRED - Id of the content","key":"contentId","type":"string","value":"{{contentId}}"},{"description":"REQUIRED - The plain text of tag","key":"tag","type":"string","value":"newTag"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Wed, 06 Jan 2021 16:11:26 GMT"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Tue, 05-Jan-2021 16:11:26 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":null},{"id":"5f27cb10-cda5-4b32-8f2e-1c1e75c06bbb","name":"200 OK - Existing Tag","originalRequest":{"method":"PUT","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/:scheme/:contentId/tag/:tag","host":["{{SITE_BASEURL}}"],"path":["api","v1",":scheme",":contentId","tag",":tag"],"variable":[{"description":"REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\" (case sensitive)\n\nscheme refers to the smart albums within your Canto application.","key":"scheme","type":"string","value":"{{contentScheme}}"},{"description":"REQUIRED - Id of the content","key":"contentId","type":"string","value":"{{contentId}}"},{"description":"REQUIRED - The plain text of tag","key":"tag","type":"string","value":"existingTag"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Wed, 06 Jan 2021 16:11:26 GMT"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Tue, 05-Jan-2021 16:11:26 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"092f82f5-c839-44b4-8921-71ed211b8fb4"},{"name":"Remove tag from content","event":[{"listen":"prerequest","script":{"id":"a54e8373-4a65-41cf-bd57-21a980000f45","exec":["const utils = eval(globals.loadUtils)","","utils.checkVariable(\"contentScheme\")","utils.checkVariable(\"contentId\")"],"type":"text/javascript"}}],"id":"56498d6f-edfb-449e-bb47-c1a2775f8e01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{SITE_BASEURL}}/api/v1/:scheme/:contentId/tag/:tag","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>Remove a tag from specify content (a tag is just a plain text).</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1",":scheme",":contentId","tag",":tag"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"description":{"content":"<p>REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\" (case sensitive)</p>\n<p>scheme refers to the smart albums within your Canto application.</p>\n","type":"text/plain"},"type":"string","value":"{{contentScheme}}","key":"scheme"},{"description":{"content":"<p>REQUIRED - Id of the content</p>\n","type":"text/plain"},"type":"string","value":"{{contentId}}","key":"contentId"},{"description":{"content":"<p>REQUIRED - A plain text of tag</p>\n<p><strong>Note:</strong> If the tag is not attached to the asset, the result will be HTTP status \"200 OK\".</p>\n","type":"text/plain"},"type":"string","value":"notExistingTag","key":"tag"}]}},"response":[{"id":"000822e1-6b8d-4e09-b197-62ce744cc910","name":"200 OK - Remove tag from content","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/:scheme/:contentId/tag/:tag","host":["{{SITE_BASEURL}}"],"path":["api","v1",":scheme",":contentId","tag",":tag"],"variable":[{"description":"image, video, audio, document, presentation, or other.\nCase sensitive\nScheme refers to the smart albums within your Canto application","key":"scheme","value":"{{contentScheme}}"},{"description":"Id of the content","key":"contentId","value":"{{contentId}}"},{"description":"A tag to set on the asset","key":"tag","value":"My Test Tag"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Fri, 07 Feb 2020 15:31:02 GMT"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com; font-src * data:; child-src https: blob:"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Thu, 06-Feb-2020 15:31:02 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":null},{"id":"444b310e-e272-4d34-b91b-2db7b5f36083","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/:scheme/:contentId/tag/:tag","host":["{{SITE_BASEURL}}"],"path":["api","v1",":scheme",":contentId","tag",":tag"],"variable":[{"key":"scheme","value":"{{contentScheme}}","type":"string","description":"REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\" (case sensitive)\n\nscheme refers to the smart albums within your Canto application."},{"key":"contentId","value":"{{contentId}}","type":"string","description":"REQUIRED - Id of the content"},{"key":"tag","value":"tagToRemove","type":"string","description":"REQUIRED - A plain text of tag"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 07 Jan 2021 12:41:42 GMT"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 12:41:42 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":null},{"id":"e9365b42-3c7e-4c12-b9e9-c02ea6b228d7","name":"200 OK - Not existing tag","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/:scheme/:contentId/tag/:tag","host":["{{SITE_BASEURL}}"],"path":["api","v1",":scheme",":contentId","tag",":tag"],"variable":[{"key":"scheme","value":"{{contentScheme}}","type":"string","description":"REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\" (case sensitive)\n\nscheme refers to the smart albums within your Canto application."},{"key":"contentId","value":"{{contentId}}","type":"string","description":"REQUIRED - Id of the content"},{"key":"tag","value":"notExistingTag","type":"string","description":"REQUIRED - A plain text of tag"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 07 Jan 2021 12:42:15 GMT"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 12:42:15 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":null},{"id":"285d24d5-344a-41fc-9a2b-9bf7bd635012","name":"404 Not Found - Invalid content id","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/:scheme/:contentId/tag/:tag","host":["{{SITE_BASEURL}}"],"path":["api","v1",":scheme",":contentId","tag",":tag"],"variable":[{"key":"scheme","value":"{{contentScheme}}","type":"string","description":"REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\" (case sensitive)\n\nscheme refers to the smart albums within your Canto application."},{"key":"contentId","value":"INVALID_CONTENT_ID","type":"string","description":"REQUIRED - Id of the content"},{"key":"tag","value":"notExistingTag","type":"string","description":"REQUIRED - A plain text of tag"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Jan 2021 12:43:24 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 12:43:24 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2303,\n    \"message\": \"The content  \\ufffd@,\\ufffd\\ufffd\\b\\ufffdS\\u0010\\ufffd\\ufffd   does not exist.\"\n}"}],"_postman_id":"56498d6f-edfb-449e-bb47-c1a2775f8e01"},{"name":"Add Keywords","id":"70d2cb35-2d74-4400-ba6e-8b234c6a9806","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"monitor\",\n    \"description\": \"This is a new keyword created by a REST API Call\"\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/keyword","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>This supports adding a keyword.</p>\n<div class=\"heading\">BODYPARAMS</div>\n<hr />\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>REQUIRED - Name of the keyword</td>\n</tr>\n<tr>\n<td>description</td>\n<td>REQUIRED - Description of the keyword</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","keyword"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"daa4a6b4-51e6-42fd-8528-dd73f49b6040","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"company\",\n    \"description\": \"This is a new keyword created by a REST API Call\"\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/keyword"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 11 Jan 2021 11:21:38 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"7"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 11:21:38 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"success"}],"_postman_id":"70d2cb35-2d74-4400-ba6e-8b234c6a9806"},{"name":"Attach keyword to content","event":[{"listen":"prerequest","script":{"id":"a39674a5-0c12-48d3-8018-625e93d3cf30","exec":["const utils = eval(globals.loadUtils)","","utils.checkVariable(\"contentScheme\")","utils.checkVariable(\"contentId\")"],"type":"text/javascript"}}],"id":"b0d72b98-2e5f-4349-b601-91a4774d52db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"{{SITE_BASEURL}}/api/v1/:scheme/:contentId/keyword/:keyword","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>Attach a keyword to content.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1",":scheme",":contentId","keyword",":keyword"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"description":{"content":"<p>REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\" (case sensitive)</p>\n<p>scheme refers to the smart albums within your Canto application.</p>\n","type":"text/plain"},"type":"string","value":"{{contentScheme}}","key":"scheme"},{"description":{"content":"<p>REQUIRED - Id of the content</p>\n","type":"text/plain"},"type":"string","value":"{{contentId}}","key":"contentId"},{"description":{"content":"<p>REQUIRED - The plain text of keyword</p>\n<p><strong>Note:</strong> An already attached keyword will result in HTTP status \"200 OK\".</p>\n","type":"text/plain"},"type":"string","value":"Campaign","key":"keyword"}]}},"response":[{"id":"04439be8-4b7c-4680-81dd-e03c7dafc24b","name":"200 OK","originalRequest":{"method":"PUT","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/:scheme/:contentId/keyword/:keyword","host":["{{SITE_BASEURL}}"],"path":["api","v1",":scheme",":contentId","keyword",":keyword"],"variable":[{"description":"REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\" (case sensitive)\n\nscheme refers to the smart albums within your Canto application.","key":"scheme","type":"string","value":"{{contentScheme}}"},{"description":"REQUIRED - Id of the content","key":"contentId","type":"string","value":"{{contentId}}"},{"description":"REQUIRED - The plain text of keyword","key":"keyword","type":"string","value":"Company"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 07 Jan 2021 14:06:49 GMT"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 14:06:49 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":null},{"id":"cfae8e41-feb9-4715-be83-b9df03af3db2","name":"404 Not Found - Not existing keyword","originalRequest":{"method":"PUT","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/:scheme/:contentId/keyword/:keyword","host":["{{SITE_BASEURL}}"],"path":["api","v1",":scheme",":contentId","keyword",":keyword"],"variable":[{"description":"REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\" (case sensitive)\n\nscheme refers to the smart albums within your Canto application.","key":"scheme","type":"string","value":"{{contentScheme}}"},{"description":"REQUIRED - Id of the content","key":"contentId","type":"string","value":"{{contentId}}"},{"description":"REQUIRED - The plain text of keyword","key":"keyword","type":"string","value":"NotExistingKeyword"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Jan 2021 14:07:14 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 14:07:14 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2304,\n    \"message\": \"The keyword does not exist.\"\n}"},{"id":"5e8186f2-302e-4f51-b5b0-177ef37cb5ce","name":"404 Not Found - Invalid content id","originalRequest":{"method":"PUT","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/:scheme/:contentId/keyword/:keyword","host":["{{SITE_BASEURL}}"],"path":["api","v1",":scheme",":contentId","keyword",":keyword"],"variable":[{"description":"REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\" (case sensitive)\n\nscheme refers to the smart albums within your Canto application.","key":"scheme","type":"string","value":"{{contentScheme}}"},{"description":"REQUIRED - Id of the content","key":"contentId","type":"string","value":"InvalidContentId"},{"description":"REQUIRED - The plain text of keyword","key":"keyword","type":"string","value":"Campaign"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Jan 2021 14:07:56 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 14:07:56 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2303,\n    \"message\": \"The content \\\"{ږ'B\\ufffd{^\\ufffd\\ufffd\\u001d does not exist.\"\n}"}],"_postman_id":"b0d72b98-2e5f-4349-b601-91a4774d52db"},{"name":"Assign Content to Album","event":[{"listen":"prerequest","script":{"id":"941600ab-6e77-4a1e-b765-07180484b63f","exec":["const utils = eval(globals.loadUtils)","","utils.checkVariable(\"contentId\")","utils.checkVariable(\"contentScheme\")","utils.checkVariable(\"albumPath\")",""],"type":"text/javascript"}}],"id":"91188af2-52f8-4d76-b7fd-4a7478f3b81d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"albumPath\": \"{{albumPath}}\",\n    \"contents\": [\n        {\n            \"scheme\": \"{{contentScheme}}\",\n            \"id\": \"{{contentId}}\",\n            \"displayName\": \"0baa7fc1-6764-45f8-8521-d40d8d1f40dd.tmp\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/album","description":"<p><a href=\"#api-rate-limit\"><i>Rate Level: 4</i></a></p>\n<p>This API support batch assign contents to an album.</p>\n<p>BODYPARAMS</p>\n<hr />\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>albumPath</td>\n<td>REQUIRED - ID of the target album, NOT the readable folder/album path</td>\n</tr>\n<tr>\n<td>scheme</td>\n<td>REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\"</td>\n</tr>\n<tr>\n<td>id</td>\n<td>REQUIRED - ID of the content</td>\n</tr>\n<tr>\n<td>displayName</td>\n<td>REQUIRED - Display name of content</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","batch","album"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"7bb8c07d-1a73-4a97-a6ce-c708f8bdbaab","name":"200 OK - One assignment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"albumPath\": \"{{albumPath}}\",\n    \"contents\": [\n        {\n            \"scheme\": \"image\",\n            \"id\": \"p74am1pqa17fd8oe541ekihu46\",\n            \"displayName\": \"test.jpg\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/album"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 10:39:13 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"JSESSIONID=097ce2a6-b498-4f87-9ff5-d7852727fc6d; Path=/; HttpOnly"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 10:39:13 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"[]"},{"id":"2ff062b0-96d7-440d-aa13-c28de996773d","name":"200 OK - Multiple assignments","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"albumPath\": \"{{albumPath}}\",\n    \"contents\": [\n        {\n            \"scheme\": \"image\",\n            \"id\": \"p74am1pqa17fd8oe541ekihu46\",\n            \"displayName\": \"backpack-3230-alps.jpg\"\n        },\n        {\n            \"scheme\": \"image\",\n            \"id\": \"p4sei4oe7p2epe27lkrol1n974\",\n            \"displayName\": \"backpack-mini-black-4533-orange.jpg\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/album"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 10:39:13 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"JSESSIONID=097ce2a6-b498-4f87-9ff5-d7852727fc6d; Path=/; HttpOnly"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 10:39:13 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"91188af2-52f8-4d76-b7fd-4a7478f3b81d"},{"name":"Remove keyword from content","event":[{"listen":"prerequest","script":{"id":"c11dafd5-ae8e-42ea-a9af-cba9d07dc00c","exec":["const utils = eval(globals.loadUtils)","","utils.checkVariable(\"contentScheme\")","utils.checkVariable(\"contentId\")"],"type":"text/javascript"}}],"id":"87441455-3e08-400d-b971-b245036c9c37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{SITE_BASEURL}}/api/v1/:scheme/:contentId/keyword/:keyword","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 2</em></a> </p>\n<p>Remove a keyword from specified content.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1",":scheme",":contentId","keyword",":keyword"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"description":{"content":"<p>REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)</p>\n<p>scheme refers to the smart albums within your Canto application.</p>\n","type":"text/plain"},"type":"string","value":"{{contentScheme}}","key":"scheme"},{"description":{"content":"<p>REQUIRED - Id of the content</p>\n","type":"text/plain"},"type":"string","value":"{{contentId}}","key":"contentId"},{"description":{"content":"<p>REQUIRED - The plain text of keyword</p>\n<p><strong>Note:</strong> If the keyword is not attached to the asset, the result will be HTTP status \"200 OK\". The service will also return \"200 OK\" if the keyword is not defined on your canto account.</p>\n","type":"text/plain"},"type":"string","value":"UnknownKeyword","key":"keyword"}]}},"response":[{"id":"bf90d330-f91b-4508-83ad-6398f8a3b9fb","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/:scheme/:contentId/keyword/:keyword","host":["{{SITE_BASEURL}}"],"path":["api","v1",":scheme",":contentId","keyword",":keyword"],"variable":[{"description":"image, video, audio, document, presentation, or other.\n(Case sensitive)\nScheme refers to the smart albums within your Canto application.","key":"scheme","type":"string","value":"{{contentScheme}}"},{"description":"Id of the content","key":"contentId","type":"string","value":"{{contentId}}"},{"description":"The plain text of keyword","key":"keyword","type":"string","value":"Campaign"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 07 Jan 2021 14:09:12 GMT"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 14:09:12 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":null},{"id":"339b3ce4-06a6-48f3-b0e1-7852157a0997","name":"404 Not Found - Invalid content id","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/:scheme/:contentId/keyword/:keyword","host":["{{SITE_BASEURL}}"],"path":["api","v1",":scheme",":contentId","keyword",":keyword"],"variable":[{"description":"REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)\n\nscheme refers to the smart albums within your Canto application.","key":"scheme","type":"string","value":"{{contentScheme}}"},{"description":"REQUIRED - Id of the content","key":"contentId","type":"string","value":"InvalidContentId"},{"description":"REQUIRED - The plain text of keyword\n\n**Note:** If the keyword is not attached to the asset, the result will be HTTP status \"200 OK\". The service will also return \"200 OK\" if the keyword is not defined on your canto account.\n","key":"keyword","type":"string","value":"UnknownKeyword"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Jan 2021 14:16:02 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 14:16:02 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2303,\n    \"message\": \"The content \\\"{ږ'B\\ufffd{^\\ufffd\\ufffd\\u001d  does not exist.\"\n}"}],"_postman_id":"87441455-3e08-400d-b971-b245036c9c37"},{"name":"Batch delete content","id":"b4edc8f2-6ec3-42da-a7a6-61dbd8f6ea20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"[\n    {\n     \t\"scheme\": \"{{contentScheme}}\",\n     \t\"id\": \"{{contentId}}\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/content","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 4</em></a></p>\n<p>Batch deletes contents. The contents will move to trash bin.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","batch","content"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"335c7caa-7754-400e-a49a-98aa4dc7322a","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"[\n    {\n     \t\"scheme\": \"image\",\n     \t\"id\": \"epnoj07hft395clgd3mqg7it1d\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/content"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 14:17:04 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 14:17:03 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"b4edc8f2-6ec3-42da-a7a6-61dbd8f6ea20"},{"name":"Batch permanently delete content","id":"91a6b0bf-5f36-4e67-b392-7705b82b6c53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"[\n    {\n     \t\"scheme\": \"{{contentScheme}}\",\n     \t\"id\": \"{{contentId}}\",\n        \"portalId\": \"{{portalId}}\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1//batch/content/permanent","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 4</em></a></p>\n<p>Batch permanently deletes contents from trash bin.</p>\n<p>BODYPARAMS</p>\n<hr />\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>portalId</td>\n<td>(optional) If you want to permanently delete content on a portal, please use this value. The value is the portal id.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","","batch","content","permanent"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"1d4d5136-597d-4421-8fc9-62e8d50de5e2","name":"200 OK - Delete asset from trash bin","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"[\n    {\n     \t\"scheme\": \"image\",\n     \t\"id\": \"epnoj07hft395clgd3mqg7it1d\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1//batch/content/permanent"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 14:20:07 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 14:20:07 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"[]"},{"id":"5c4ab65b-5383-4a33-b089-82e92af16e4b","name":"200 OK - Delete asset from portal","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"[\n    {\n     \t\"scheme\": \"{{contentScheme}}\",\n     \t\"id\": \"{{contentId}}\",\n        \"portalId\": \"canto-support\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1//batch/content/permanent"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 14:20:07 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 14:20:07 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"91a6b0bf-5f36-4e67-b392-7705b82b6c53"},{"name":"Remove Contents from Album","event":[{"listen":"prerequest","script":{"id":"7131984d-9ece-4a0f-acc5-442c36d76b72","exec":["const utils = eval(globals.loadUtils)","","utils.checkVariable(\"contentId\")","utils.checkVariable(\"contentScheme\")","utils.checkVariable(\"albumPath\")",""],"type":"text/javascript"}}],"id":"c23fe23d-0de5-453f-85d4-b245f3098758","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"albumPath\": \"{{albumPath}}\",\n    \"contents\": [\n        {\n            \"scheme\": \"{{contentScheme}}\",\n            \"id\": \"{{contentId}}\",\n            \"displayName\": \"assign.jpg\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/album","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 4</em></a></p>\n<p>This API support batch remove contents of an album.</p>\n<div class=\"heading\">BODYPARAMS</div>\n<hr />\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>scheme</td>\n<td>REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\"</td>\n</tr>\n<tr>\n<td>id</td>\n<td>REQUIRED - Id of the content</td>\n</tr>\n<tr>\n<td>displayName</td>\n<td>REQUIRED - Display name of content</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","batch","album"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"2319a90b-560c-48ef-8be3-7397e63cf060","name":"200 OK","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"albumPath\": \"{{albumPath}}\",\n    \"contents\": [\n        {\n            \"scheme\": \"image\",\n            \"id\": \"p74am1pqa17fd8oe541ekihu46\",\n            \"displayName\": \"backpack-3230-alps.jpg\"\n        },\n        {\n            \"scheme\": \"image\",\n            \"id\": \"p4sei4oe7p2epe27lkrol1n974\",\n            \"displayName\": \"backpack-mini-black-4533-orange.jpg\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/album"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 10:56:14 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 10:56:14 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"c23fe23d-0de5-453f-85d4-b245f3098758"},{"name":"Remove smart tag from content","event":[{"listen":"prerequest","script":{"id":"c11dafd5-ae8e-42ea-a9af-cba9d07dc00c","exec":[""],"type":"text/javascript"}}],"id":"c07e2580-7bda-4bf3-83ac-642e4eba0a47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{SITE_BASEURL}}/api/v1/:scheme/:contentId/smarttags/:smarttag","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 2</em></a> </p>\n<p>Remove a smart tag from specified content.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1",":scheme",":contentId","smarttags",":smarttag"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"id":"c3be90a9-05bf-42c1-9f5a-0c022281bf02","description":{"content":"<p>REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)</p>\n<p>The scheme of your content. </p>\n","type":"text/plain"},"type":"string","value":"{{contentScheme}}","key":"scheme"},{"id":"7b71ae45-a72d-483d-8c6c-7d524d1d53ee","description":{"content":"<p>REQUIRED - Id of the content</p>\n","type":"text/plain"},"type":"string","value":"{{contentId}}","key":"contentId"},{"id":"431fffd5-32e9-4e32-8c0d-0d1fa13f63b3","description":{"content":"<p>REQUIRED - A plain text of smart tag</p>\n<p><strong>Note:</strong> If the smart tag is not attached to the asset, the result will be HTTP status \"200 OK\".</p>\n","type":"text/plain"},"type":"any","value":"SmartTagValue","key":"smarttag"}]}},"response":[{"id":"0eda117d-9de0-4b7e-b9fb-dc8a4f88bb3c","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/:scheme/:contentId/smarttags/:smarttag","host":["{{SITE_BASEURL}}"],"path":["api","v1",":scheme",":contentId","smarttags",":smarttag"],"variable":[{"key":"scheme","value":"{{contentScheme}}","type":"string","description":"REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)\n\nscheme refers to the smart albums within your Canto application."},{"key":"contentId","value":"{{contentId}}","type":"string","description":"REQUIRED - Id of the content"},{"key":"smarttag","value":"MySmartTag","description":"REQUIRED - A plain text of smart tag\n**Note:** If the smart tag is not attached to the asset, the result will be HTTP status \"200 OK\"."}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Tue, 22 Jun 2021 10:05:08 GMT"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net js-agent.newrelic.com bam.nr-data.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com bam.nr-data.net; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Expect-CT","value":"max-age=86400, enforce"},{"key":"Set-Cookie","value":"JSESSIONID=c9e6296a-59a6-4d28-8a67-629c30c38aea; Path=/; HttpOnly"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Mon, 21-Jun-2021 10:05:08 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c07e2580-7bda-4bf3-83ac-642e4eba0a47"},{"name":"Create Related Content","id":"2eefcecb-0906-432e-b2f7-cc275906ea80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"relatedName\": \"{{$randomRelatedName}}\",\r\n    \"relatedContents\": [\r\n        {\r\n            \"id\": \"{{contentId}}\",\r\n            \"scheme\": \"{{contentScheme}}\",\r\n            \"primary\": false\r\n        },\r\n        {\r\n            \"id\": \"{{contentId2}}\",\r\n            \"scheme\": \"{{contentScheme2}}\",\r\n            \"primary\": true\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/related","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 4</em></a></p>\n<p>This request creates relations on assets. You can relate multiple assets with each other. An asset can be a \"primary\" in a relation. You can mark multiple assets \"primary\" if you create relations. </p>\n<div class=\"heading\">BODYPARAMS</div>\n<hr />\n<table>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n<tr>\n<td>relatedName</td>\n<td>The Label of related content.</td>\n</tr>\n<tr>\n<td>relatedContents</td>\n<td>Limit: Max 1000 contents for one request.</td>\n</tr>\n<tr>\n<td>scheme</td>\n<td>REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)</td>\n</tr>\n<tr>\n<td>id</td>\n<td>REQUIRED - Id of the content.</td>\n</tr>\n<tr>\n<td>primary</td>\n<td><p>true or false.</p>\n<p>Identifies whether it is a primary asset in the related asset.</p>\n<p><i>Note:</i>You can define multiple primary assets</p>                                                             </td>\n</tr>\n</table>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","related"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"7fa01e05-2aac-4547-83c8-c88ac39e98d6","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"relatedName\": \"{{$randomRelatedName}}\",\r\n    \"relatedContents\": [\r\n        {\r\n            \"id\": \" 22906761031445a280f736a5ff4dc7af\",\r\n            \"scheme\": \"image\",\r\n            \"primary\": true\r\n        },\r\n        {\r\n            \"id\": \"6d79792501364b8eaba97dd151b71b87\",\r\n            \"scheme\": \"video\",\r\n            \"primary\": false\r\n        },\r\n        {\r\n            \"id\": \"845955bd943147989de5f56ac151350e\",\r\n            \"scheme\": \"image\",\r\n            \"primary\": true\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/related"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"relatedId"}],"_postman_id":"2eefcecb-0906-432e-b2f7-cc275906ea80"},{"name":"Remove Related Content","id":"d954045a-3a88-4b05-bfdf-f5c536b3226a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"unRelatedContents\":[\r\n        {\r\n            \"id\":\"{{contentId}}\",\r\n            \"scheme\":\"{{contentScheme}}\"\r\n        },\r\n        {\r\n            \"id\":\"{{contentId2}}\",\r\n            \"scheme\":\"{{contentScheme}}\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/:scheme/:contentId/unrelated","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 4</em></a></p>\n<p>This request removes related assets from the asset given by path parameters.</p>\n<div class=\"heading\">BODYPARAMS</div>\n<hr />\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>unRelatedContents</td>\n<td></td>\n</tr>\n<tr>\n<td>id</td>\n<td>REQUIRED - Id of the content.</td>\n</tr>\n<tr>\n<td>scheme</td>\n<td>REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1",":scheme",":contentId","unrelated"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"id":"e5bb7acb-285f-4c5e-8826-95268eada138","description":{"content":"<p>REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)</p>\n","type":"text/plain"},"type":"any","value":"{{contentScheme}}","key":"scheme"},{"id":"121eeccd-09d6-4d98-87fa-e4fcb892f00e","description":{"content":"<p>REQUIRED - Id of the content</p>\n","type":"text/plain"},"type":"any","value":"{{contentId}}","key":"contentId"}]}},"response":[{"id":"18586a09-e43c-4a5b-ae53-d2e9e449b665","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"unRelatedContents\":[\r\n         {\r\n            \"id\": \" 22906761031445a280f736a5ff4dc7af\",\r\n            \"scheme\": \"image\"\r\n        },\r\n        {\r\n            \"id\": \"6d79792501364b8eaba97dd151b71b87\",\r\n            \"scheme\": \"video\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{SITE_BASEURL}}/api/v1/:scheme/:contentId/unrelated","host":["{{SITE_BASEURL}}"],"path":["api","v1",":scheme",":contentId","unrelated"],"variable":[{"key":"scheme","value":"{{contentScheme}}","description":"REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)"},{"key":"contentId","value":"{{contentId}}","description":"REQUIRED - Id of the content"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"success"}],"_postman_id":"d954045a-3a88-4b05-bfdf-f5c536b3226a"},{"name":"Create Embed Video","id":"12d7ec32-9bcf-4441-9879-b948485aa3df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"format","value":"hls","description":"<p>REQUIRED - The format of Embed Video. </p>\n<p><em>valid values:</em> \"hls\" or \"dash\"</p>\n","type":"text"},{"key":"isFixed","value":"false","description":"<p>Defines whether the output video size is responsive or fixed resolution in the embed script.</p>\n<p>true - output video resolution is fixed.\nfalse - output video is responsive.</p>\n<p>default: false</p>\n","type":"text"},{"key":"width","value":"1024","description":"<p>if isFixed == true</p>\n<p>if specified, then the output video width will be it.\nif not specified, then the output video width will be the original video width.</p>\n<p>if isFixed == false. the this parmeter is ignored</p>\n","type":"text"},{"key":"height","value":"height number","description":"<p>if isFixed == true\nif specified, then the output video width will be it.\nif not specified, then the output video height will be the original video height.\nif isFixed == false. the this parmeter is ignoredif isFixed == true\nif specified, then the output video width will be it.\nif not specified, then the output video width will be the original video width.\nif isFixed == false. the this parmeter is ignored</p>\n","type":"text"},{"key":"captionId","value":"caption id","description":"<p>if this value is specified and the original video has a caption, the output embed video use that caption.\nif not, the output embed video has no caption.</p>\n","type":"text"}]},"url":"{{SITE_BASEURL}}/api/v1/segment/video/:contentId","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 4</em></a></p>\n<p>This API will create a Embed Video script. This API will return immediately. After Embed Video created, you need to run Get content details API to query the embed video url.</p>\n<p>Request Headers Content-Type:</p>\n<p>application/x-www-form-urlencoded</p>\n<p>Response:</p>\n<p>if created successfully, then a JSON key \"success\" value is \"true\".\nif created failed, then a JSON key \"success\" value is \"false\", and a \"message\" key will tell you reason. includes:\n\"invalid argument\", \"content no found\", \"exceed\"， \"no-permission\".</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","segment","video",":contentId"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"id":"4849119a-7c79-4325-abcc-7d6769f3b8bb","description":{"content":"<p>REQUIRED - The id of the content</p>\n","type":"text/plain"},"type":"any","value":"{{contentId}}","key":"contentId"}]}},"response":[{"id":"4576344b-b78e-42c6-a3dd-44ee6d196016","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"format","value":"hls","type":"text"}],"options":{"raw":{"language":"json"}}},"url":{"raw":"{{SITE_BASEURL}}/api/v1/segment/video/:contentId","host":["{{SITE_BASEURL}}"],"path":["api","v1","segment","video",":contentId"],"variable":[{"key":"contentId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 11:21:38 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"7"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 11:21:38 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": \"true\",\n    \"message\": \"\"\n}"}],"_postman_id":"12d7ec32-9bcf-4441-9879-b948485aa3df"},{"name":"Remove Related Contents From Related Files","id":"f7eacefb-85d8-4366-895a-a1ba79c7d15c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{    \r\n    \"relatedContents\":[\r\n        {\r\n            \"id\":\"{{contentId}}\",\r\n            \"scheme\":\"{{contentScheme}}\"\r\n        },\r\n        {\r\n            \"id\":\"{{contentId2}}\",\r\n            \"scheme\":\"{{contentScheme}}\"\r\n        }\r\n   ],\r\n   \"relatedFiles\":[\"{{relatedId}}\",\"{{relatedId2}}\"]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/unrelated","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 4</em></a></p>\n<p>This request removes related assets from the related files.</p>\n<p>BODYPARAMS</p>\n<hr />\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>relatedContents</td>\n<td>[{  <br />\"id\":\"{{contentId}}\",  <br />\"scheme\":\"{{contentScheme}}\"  <br />}]</td>\n<td>REQUIRED  <br />Limit: Min 1 content for one request. Max 1000 contents for one request.</td>\n</tr>\n<tr>\n<td>relatedFiles</td>\n<td>[\"{{relatedId}}\"]</td>\n<td>REQUIRED  <br />Limit: Min 1 group for one request. Max 100 groups for one request.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","unrelated"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"97e1cb92-58da-4810-a765-6b7e9c1ef215","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{    \r\n    \"relatedContents\":[\r\n        {\r\n            \"id\":\"{{contentId}}\",\r\n            \"scheme\":\"{{contentScheme}}\"\r\n        },\r\n        {\r\n            \"id\":\"{{contentId2}}\",\r\n            \"scheme\":\"{{contentScheme}}\"\r\n        }\r\n   ],\r\n   \"relatedFiles\":[\"{{relatedId}}\",\"{{relatedId2}}\"]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/unrelated"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"success"}],"_postman_id":"f7eacefb-85d8-4366-895a-a1ba79c7d15c"}],"id":"a20645cd-0f8b-45b8-9080-3ef383085bdc","_postman_id":"a20645cd-0f8b-45b8-9080-3ef383085bdc","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}}},{"name":"LibraryTree","item":[{"name":"Search under a folder","event":[{"listen":"test","script":{"id":"fc030fbe-db42-4b98-9f1a-7dd530555636","exec":["const utils = eval(globals.loadUtils)","","var jsonData = JSON.parse(responseBody);","var resultList = jsonData.results","","var content = null","var album = null","var folder = null","for (i=0; i<resultList.length; ++i) {","    var currentElement = resultList[i]","    if(content == null && utils.isContentScheme(currentElement.scheme)) {","        content = currentElement","    } else if (utils.isTreeScheme(currentElement.scheme)) {","        if(album == null && currentElement.scheme == \"album\") {","            album = currentElement","        } ","        if(folder == null && currentElement.scheme == \"folder\") {","            folder = currentElement","        }","    }","","    if(album != null && folder != null && content != null) {","        break","    }","}","","if(folder != null) {","    pm.environment.set(\"folderId\", folder.id)","    pm.environment.set(\"folderIdPath\", folder.idPath)","}","if(album != null) {","    pm.environment.set(\"albumId\", album.id)","    pm.environment.set(\"albumPath\", album.idPath)","}","if(content != null) {","    pm.environment.set(\"contentId\", content.id)","    pm.environment.set(\"contentScheme\", content.scheme)","}",""],"type":"text/javascript"}}],"id":"7f9bf2bb-ee8f-4065-8add-4c5f5810d30f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/folder/:folderId?keyword=photo&scheme=image&tags=Person&tagsLiteral=Blue&keywords=Canto&approval=approved&owner=canto-support@canto.com&fileSize=95073..26893954&created=1444662143..1452182400&createdTime=1571042449..1571301649&uploadedTime=1571042449..1571301649&lastModified=1571042449..1571301649&width=400..1024&height=400..1024&imageRangeOperation=or&dimension=77..3840&resolution=5..350&storageClass=standard|freeze&{{customFieldId}}=exampleValue&orientation=landscape&duration=9..1205&pageNumber=6..482&searchInField=filename&exactMatch=false&operator=and&sortBy=time&sortDirection=descending&start=0&limit=100","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 4</em></a></p>\n<p>List everything under a specified folder, page by page. This will return all matched sub-folder/album and all its contents.</p>\n<p><strong>Note:</strong></p>\n<ul>\n<li>You can use the value \"<strong>null</strong>\" (enclosed by two underlines in front and at the end). If you want to search for assets which don't have a value in a field.</li>\n<li>You can use the value \"<strong>exists</strong>\" (enclosed by two underlines in front and at the end). If you want to search for assets which have set any value in a field.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","folder",":folderId"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>The search term(s)</p>\n<p>use this, to make a search simply by keyword. This is nearly the same search like you do in Canto UI on right top. </p>\n","type":"text/plain"},"key":"keyword","value":"photo"},{"description":{"content":"<p>\"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)</p>\n<p>scheme refers to the smart albums within your Canto application.</p>\n<p>**Examples:**<br />One value: image \nMulti values with OR: image|video|audio</p>\n<p><em>Note:</em> The | character needs to be url encoded with %7C: Example: image%7Cvideo%7Caudio</p>\n","type":"text/plain"},"key":"scheme","value":"image"},{"description":{"content":"<p>If you want to filter by tag</p>\n<p>**Examples:**<br />One value: sunset<br />Multi values with OR: sunset|dawn<br />Multi values with AND: sunset+beach</p>\n<p><em>Note:</em> The + character needs to be url encoded with %2B: Example: sunset%2Bbeach\n<em>Note:</em> The | character needs to be url encoded with %7C: Example: sunset%7Cbeach</p>\n","type":"text/plain"},"key":"tags","value":"Person"},{"description":{"content":"<p>Filter by tag(case-sensitive &amp; whole word only)\n\"blue\" or \"Blue one\" didn't matched.</p>\n","type":"text/plain"},"key":"tagsLiteral","value":"Blue"},{"description":{"content":"<p>Filter result by keywords.</p>\n<p>**Examples:**<br />One value: business<br />Multi values with OR: home|office<br />Multi values with AND: business+office</p>\n<p><strong>Note:</strong> This filter searchs by keywords, you can attach on request: <a href=\"#f854b08c-270f-4f14-af87-689b028f7e7b\">Attach keyword to content</a></p>\n<p><em>Note:</em> The + character needs to be url encoded with %7C: Example: home%2Boffice\n<em>Note:</em> The | character needs to be url encoded with %7C: Example: home%7Coffice</p>\n","type":"text/plain"},"key":"keywords","value":"Canto"},{"description":{"content":"<p>Filter by Approval status. </p>\n<p><strong>Note:</strong> This filter only works, if the approval process is enabled.</p>\n<p>**Examples:**<br />One value: approved<br />Multi values with OR: \"approved|pending\"</p>\n<p>If you select Expired, you cannot select another status.<br />For Example: You cannot use \"expired|pending\". Only use Expired</p>\n<p><em>Note:</em> The | character needs to be url encoded with %7C: Example: approved%7Cpending</p>\n","type":"text/plain"},"key":"approval","value":"approved"},{"description":{"content":"<p>FIlter by id of an owner. </p>\n<p>**Examples:**<br />One value: <a href=\"mailto:canto-support@canto.com\">canto-support@canto.com</a><br />Multi values with OR: <a href=\"mailto:canto-support@canto.com\">canto-support@canto.com</a>|<a href=\"mailto:noreply@canto.com\">noreply@canto.com</a></p>\n<p><em>Note:</em> The | character needs to be url encoded with %7C: Example: supportlcanto.com%<a href=\"mailto:7Cnoreply@canto.com\">7Cnoreply@canto.com</a></p>\n","type":"text/plain"},"key":"owner","value":"canto-support@canto.com"},{"description":{"content":"<p>Filter by file size</p>\n<p><strong>Example:</strong> 95073..26893954</p>\n","type":"text/plain"},"key":"fileSize","value":"95073..26893954"},{"description":{"content":"<p>Filter by time the asset was created at canto.</p>\n","type":"text/plain"},"key":"created","value":"1444662143..1452182400"},{"description":{"content":"<p>Filter by file creation time. (Value is in Unix timestamp format). </p>\n","type":"text/plain"},"key":"createdTime","value":"1571042449..1571301649"},{"description":{"content":"<p>Filter by upload time. (Value is in Unix timestamp format)</p>\n","type":"text/plain"},"key":"uploadedTime","value":"1571042449..1571301649"},{"description":{"content":"<p>Filter by last modified time. (Value is in Unix timestamp format)</p>\n","type":"text/plain"},"key":"lastModified","value":"1571042449..1571301649"},{"description":{"content":"<p>Filter by image width in px.</p>\n<p>Example:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>example value</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>400</td>\n<td>only images having a width of exactly 400px</td>\n</tr>\n<tr>\n<td>400..1024</td>\n<td>only images having a width inside the range of 400px to 1024px</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: This filter works only on images.</p>\n","type":"text/plain"},"key":"width","value":"400..1024"},{"description":{"content":"<p>Filter by image height in px.</p>\n<p>Example:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>example value</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>400</td>\n<td>only images having a height of exactly 400px</td>\n</tr>\n<tr>\n<td>400..1024</td>\n<td>only images having a height inside the range of 400px to 1024px</td>\n</tr>\n</tbody>\n</table>\n</div><p>Note: This filter works only on images.</p>\n","type":"text/plain"},"key":"height","value":"400..1024"},{"description":{"content":"<p>Defines how the parameters \"width\" and \"height\" should be combined.</p>\n<p><em>Valid values:</em> \"or\", \"and\"</p>\n<p>\"or\" means the result must have the given width OR height \n\"and\" means the result must habe the given width AND height</p>\n<p><em>Default:</em> \"or\"</p>\n","type":"text/plain"},"key":"imageRangeOperation","value":"or"},{"description":{"content":"<p>Filter by image size.</p>\n<p><strong>Note:</strong> This filter works only on images.</p>\n","type":"text/plain"},"key":"dimension","value":"77..3840"},{"description":{"content":"<p>Filter by resolution in DPI</p>\n<p><strong>Note:</strong> This filter works only on images.</p>\n","type":"text/plain"},"key":"resolution","value":"5..350"},{"description":{"content":"<p>\"standard\" or \"freeze\"</p>\n<p>**Examples:**<br />One value: standard<br />Multi values with OR: standard|freeze</p>\n","type":"text/plain"},"key":"storageClass","value":"standard|freeze"},{"description":{"content":"<p>Filter by a custom field. \nThe name of the parameter needs to be the id of the custom field. (see: <a href=\"#d6260a54-a154-4576-8c38-ac79b3752e12\">Get custom field list</a>)\nAs an example, custom field id would look similar to \"meta_text_0\".\nFilter by specified custom field with id.\nThe type means custom field type, including \"text\", \"num\", \"date\", \"choice\", \"multichoice\" &amp; \"url\"; the sequence is an immutable integer given by system. \nYou could find the whole part in web page URL when filter by the same custom field in our system.</p>\n","type":"text/plain"},"key":"{{customFieldId}}","value":"exampleValue"},{"description":{"content":"<p>\"landscape\", \"portrait\" or \"square\"</p>\n<p><strong>Note:</strong> This filter works only on images.</p>\n<p>**Examples:**<br />One value: landscape\nMulti values: landscape|portrait</p>\n<p><em>Note:</em> The | character needs to be url encoded with %7C: Example: landscape%7Cportrait</p>\n","type":"text/plain"},"key":"orientation","value":"landscape"},{"description":{"content":"<p>Filter by duration.</p>\n<p><strong>Note:</strong> This filter works only on video or audio.</p>\n","type":"text/plain"},"key":"duration","value":"9..1205"},{"description":{"content":"<p>Filter by page number.</p>\n<p><strong>Note:</strong> This filter works only on document or presentation.</p>\n","type":"text/plain"},"key":"pageNumber","value":"6..482"},{"description":{"content":"<p>You can search inside the following fields: \"filename\", \"description\", \"comment\", \"keywords\", \"author\" and \"tags\".\nIf you input other values, the results will ignore it.</p>\n","type":"text/plain"},"key":"searchInField","value":"filename"},{"description":{"content":"<p>exactMatch: \"true\" or \"false\"</p>\n<p>Default: false</p>\n","type":"text/plain"},"key":"exactMatch","value":"false"},{"description":{"content":"<p>Operator: \"and\", \"or\".\nDefault: \"and\"</p>\n","type":"text/plain"},"key":"operator","value":"and"},{"description":{"content":"<p>\"name\", \"time\", \"scheme\", \"owner\" or \"size\". </p>\n<p>Default: \"time\"</p>\n","type":"text/plain"},"key":"sortBy","value":"time"},{"description":{"content":"<p>“ascending” or “descending”</p>\n<p>Default: \"descending\"</p>\n","type":"text/plain"},"key":"sortDirection","value":"descending"},{"description":{"content":"<p>Offset number of items to be returned. </p>\n<p>Default: 0</p>\n","type":"text/plain"},"key":"start","value":"0"},{"description":{"content":"<p>Maximum number of items to be returned. </p>\n<p>Default: 100\nMax: 1000</p>\n","type":"text/plain"},"key":"limit","value":"100"}],"variable":[{"description":{"content":"<p>The if of the folder</p>\n","type":"text/plain"},"type":"any","value":"{{folderId}}","key":"folderId"}]}},"response":[{"id":"804d953d-cbf4-4938-aded-12eb3c222cab","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/folder/:folderId?sortBy=time&sortDirection=descending&limit=100&start=0","host":["{{SITE_BASEURL}}"],"path":["api","v1","folder",":folderId"],"query":[{"key":"sortBy","value":"time","description":"\"name\", \"time\", \"scheme\", \"owner\" or \"size\". \n\nDefault: \"time\""},{"key":"sortDirection","value":"descending","description":"“ascending” or “descending”\n\nDefault: \"descending\""},{"key":"limit","value":"100","description":"Maximum number of items to be returned. \n\nDefault: 100"},{"key":"start","value":"0","description":"Offset number of items to be returned. \n\nDefault: 0"}],"variable":[{"description":"The if of the folder","key":"folderId","value":"{{folderId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 14:13:28 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 14:13:27 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"facets\": [\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"min\": 9223372036854775807,\n            \"name\": \"resolution\"\n        },\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"min\": 9223372036854775807,\n            \"name\": \"duration\"\n        },\n        {\n            \"name\": \"tags\",\n            \"value\": [\n                \"Untagged\"\n            ]\n        },\n        {\n            \"name\": \"keywords\",\n            \"value\": [\n                \"Unkeyworded\"\n            ]\n        },\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"min\": 9223372036854775807,\n            \"name\": \"dimension\"\n        },\n        {\n            \"name\": \"owner\"\n        },\n        {\n            \"name\": \"orientation\"\n        },\n        {\n            \"name\": \"storageClass\",\n            \"value\": [\n                \"standard\"\n            ]\n        },\n        {\n            \"name\": \"approval\",\n            \"value\": [\n                \"Approved\"\n            ]\n        },\n        {\n            \"mix\": 1610030081,\n            \"max\": 1610030081,\n            \"min\": 1610030081,\n            \"name\": \"created\"\n        },\n        {\n            \"name\": \"scheme\",\n            \"value\": [\n                \"album\"\n            ]\n        },\n        {\n            \"name\": \"fileSize\"\n        },\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"min\": 9223372036854775807,\n            \"name\": \"pageNumber\"\n        }\n    ],\n    \"limit\": 100,\n    \"found\": 1,\n    \"sortBy\": \"time\",\n    \"sortDirection\": \"descending\",\n    \"matchExpr\": \"es\",\n    \"results\": [\n        {\n            \"tag\": [\n                \"Untagged\"\n            ],\n            \"time\": \"20210107063441000\",\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"detail\": \"{{SITE_BASEURL}}/album/IMUIF\"\n            },\n            \"description\": \"This is an example description\",\n            \"width\": \"0\",\n            \"height\": \"0\",\n            \"dpi\": \"72\",\n            \"namePath\": \"circuit/program\",\n            \"idPath\": \"VF721/IMUIF\",\n            \"name\": \"program\",\n            \"id\": \"IMUIF\",\n            \"size\": \"0\",\n            \"scheme\": \"album\"\n        }\n    ]\n}"},{"id":"b6294a9c-7b0b-4c05-98aa-2be541dcd13a","name":"200 OK - Global Search","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/search?keyword=photograph&sortBy=time&sortDirection=descending&limit=100&start=0","host":["{{SITE_BASEURL}}"],"path":["api","v1","search"],"query":[{"key":"keyword","value":"photograph","description":"The search term(s)\n\nuse this, to make a search simply by keyword. This is nearly the same search like you do in Canto UI on right top. "},{"key":"sortBy","value":"time","description":"\"name\", \"time\", \"scheme\", \"owner\" or \"size\". \n\nDefault: \"time\""},{"key":"sortDirection","value":"descending","description":"“ascending” or “descending”\n\nDefault: \"descending\""},{"key":"limit","value":"100","description":"Maximum number of items to be returned. \n\nDefault: 100"},{"key":"start","value":"0","description":"Offset number of items to be returned. \n\nDefault: 0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Jan 2021 15:37:03 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 15:37:02 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"facets\": [\n        {\n            \"mix\": 72,\n            \"max\": 72,\n            \"name\": \"resolution\",\n            \"min\": 72\n        },\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"name\": \"duration\",\n            \"min\": 9223372036854775807\n        },\n        {\n            \"name\": \"tags\",\n            \"value\": [\n                \"Backpack\"\n            ]\n        },\n        {\n            \"name\": \"keywords\",\n            \"value\": [\n                \"Product\"\n            ]\n        },\n        {\n            \"mix\": 2920,\n            \"max\": 3168,\n            \"name\": \"dimension\",\n            \"min\": 2920\n        },\n        {\n            \"name\": \"owner\",\n            \"value\": [\n                \"canto-support@canto.com\"\n            ]\n        },\n        {\n            \"name\": \"orientation\"\n        },\n        {\n            \"name\": \"storageClass\",\n            \"value\": [\n                \"standard\"\n            ]\n        },\n        {\n            \"name\": \"approval\",\n            \"value\": [\n                \"Approved\"\n            ]\n        },\n        {\n            \"mix\": 1609856947,\n            \"max\": 1609856985,\n            \"name\": \"created\",\n            \"min\": 1609856947\n        },\n        {\n            \"name\": \"scheme\",\n            \"value\": [\n                \"image\"\n            ]\n        },\n        {\n            \"mix\": 1443993,\n            \"max\": 3405164,\n            \"name\": \"fileSize\",\n            \"min\": 1443993\n        },\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"name\": \"pageNumber\",\n            \"min\": 9223372036854775807\n        }\n    ],\n    \"limit\": 100,\n    \"found\": 2,\n    \"sortBy\": \"time\",\n    \"sortDirection\": \"descending\",\n    \"matchExpr\": \"es\",\n    \"results\": [\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/pvaopkuh6p67t06lk11n64et24/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=pvaopkuh6p67t06lk11n64et24\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/pvaopkuh6p67t06lk11n64et24/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062945000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-grey-4515-photographer.jpg\",\n            \"default\": {\n                \"Size\": \"3405164\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3168*4752 Pixels\",\n                \"Date uploaded\": \"20210105062945000\",\n                \"Date modified\": \"20210105062945000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"pvaopkuh6p67t06lk11n64et24\",\n            \"size\": \"3405164\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\n                    },\n                    \"id\": \"JARDF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"SHFO1/JARDF\"\n                }\n            ],\n            \"width\": \"3168\",\n            \"height\": \"4752\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/epnoj07hft395clgd3mqg7it1d/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=epnoj07hft395clgd3mqg7it1d\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/epnoj07hft395clgd3mqg7it1d/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062907000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-forest-green-4582-photographer.jpg\",\n            \"default\": {\n                \"Size\": \"1443993\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5184*2920 Pixels\",\n                \"Date uploaded\": \"20210105062907000\",\n                \"Date modified\": \"20210105062907000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"epnoj07hft395clgd3mqg7it1d\",\n            \"size\": \"1443993\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"5184\",\n            \"height\": \"2920\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        }\n    ]\n}"},{"id":"3bd830b9-88c3-40f4-96ba-82f4e3041c1a","name":"200 OK - Search by scheme","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/search?scheme=image","host":["{{SITE_BASEURL}}"],"path":["api","v1","search"],"query":[{"key":"scheme","value":"image","description":"\"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)\n\nscheme refers to the smart albums within your Canto application.\n\n**Examples:**\\\nOne value: image \nMulti values with OR: image|video|audio"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Jan 2021 15:39:47 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 15:39:46 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"facets\": [\n        {\n            \"mix\": 72,\n            \"max\": 144,\n            \"name\": \"resolution\",\n            \"min\": 72\n        },\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"name\": \"duration\",\n            \"min\": 9223372036854775807\n        },\n        {\n            \"name\": \"tags\",\n            \"value\": [\n                \"Backpack\",\n                \"Great Outdoors Go\",\n                \"lifestyle\",\n                \"hiking shoes\",\n                \"Clothing\",\n                \"Campaign\",\n                \"Great Outdoors\",\n                \"Logo\",\n                \"MarTech Event\",\n                \"Retail\",\n                \"logo\",\n                \"Brochure\",\n                \"Canto\",\n                \"Text\",\n                \"Accessories\",\n                \"Accessory\",\n                \"Advertisement\",\n                \"Autumn\",\n                \"Cushion\",\n                \"Face\",\n                \"Fall\",\n                \"Female\",\n                \"Flyer\",\n                \"Gate\",\n                \"Girl\",\n                \"Glasses\",\n                \"Hair\",\n                \"Human\",\n                \"Jacket\",\n                \"Lato font\",\n                \"Menu\",\n                \"Outdoors\",\n                \"Page\",\n                \"Paper\",\n                \"Person\",\n                \"Photoshop\",\n                \"Pillow\",\n                \"Poster\",\n                \"Sitting\",\n                \"Steering Wheel\"\n            ]\n        },\n        {\n            \"name\": \"keywords\",\n            \"value\": [\n                \"Product\",\n                \"Lifestyle\",\n                \"Campaign\",\n                \"Unkeyworded\",\n                \"Company\"\n            ]\n        },\n        {\n            \"mix\": 123,\n            \"max\": 5792,\n            \"name\": \"dimension\",\n            \"min\": 123\n        },\n        {\n            \"name\": \"owner\",\n            \"value\": [\n                \"canto-support@canto.com\"\n            ]\n        },\n        {\n            \"name\": \"orientation\"\n        },\n        {\n            \"name\": \"storageClass\",\n            \"value\": [\n                \"standard\"\n            ]\n        },\n        {\n            \"name\": \"approval\",\n            \"value\": [\n                \"Approved\",\n                \"Restricted\"\n            ]\n        },\n        {\n            \"mix\": 1609856887,\n            \"max\": 1609856992,\n            \"name\": \"created\",\n            \"min\": 1609856887\n        },\n        {\n            \"name\": \"scheme\",\n            \"value\": [\n                \"image\"\n            ]\n        },\n        {\n            \"mix\": 11730,\n            \"max\": 58268564,\n            \"name\": \"fileSize\",\n            \"min\": 11730\n        },\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"name\": \"pageNumber\",\n            \"min\": 9223372036854775807\n        }\n    ],\n    \"limit\": 100,\n    \"found\": 70,\n    \"sortBy\": \"time\",\n    \"sortDirection\": \"descending\",\n    \"matchExpr\": \"es\",\n    \"results\": [\n        {\n            \"keyword\": [\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/vr32c46pnl5c7b4m8r9lt0nu3d/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/vr32c46pnl5c7b4m8r9lt0nu3d\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/vr32c46pnl5c7b4m8r9lt0nu3d/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/vr32c46pnl5c7b4m8r9lt0nu3d/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/vr32c46pnl5c7b4m8r9lt0nu3d/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/vr32c46pnl5c7b4m8r9lt0nu3d/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=vr32c46pnl5c7b4m8r9lt0nu3d\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/vr32c46pnl5c7b4m8r9lt0nu3d/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/vr32c46pnl5c7b4m8r9lt0nu3d/LowJPG\"\n            },\n            \"tag\": [\n                \"Clothing\"\n            ],\n            \"time\": \"20210105062952000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-hiking-shoes-wedding.jpg\",\n            \"default\": {\n                \"Size\": \"2536375\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5681*3787 Pixels\",\n                \"Date uploaded\": \"20210105062952000\",\n                \"Date modified\": \"20210105062952000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"vr32c46pnl5c7b4m8r9lt0nu3d\",\n            \"size\": \"2536375\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/UT9AR\"\n                    },\n                    \"id\": \"UT9AR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/UT9AR\"\n                }\n            ],\n            \"width\": \"5681\",\n            \"height\": \"3787\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Restricted\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/vm3dd9i9e91traf4pf3aq8uq5d/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/vm3dd9i9e91traf4pf3aq8uq5d\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/vm3dd9i9e91traf4pf3aq8uq5d/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/vm3dd9i9e91traf4pf3aq8uq5d/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/vm3dd9i9e91traf4pf3aq8uq5d/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/vm3dd9i9e91traf4pf3aq8uq5d/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=vm3dd9i9e91traf4pf3aq8uq5d\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/vm3dd9i9e91traf4pf3aq8uq5d/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/vm3dd9i9e91traf4pf3aq8uq5d/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062951000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-canvas-4531-man.jpg\",\n            \"default\": {\n                \"Size\": \"774767\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"2832*4240 Pixels\",\n                \"Date uploaded\": \"20210105062951000\",\n                \"Date modified\": \"20210105062951000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"vm3dd9i9e91traf4pf3aq8uq5d\",\n            \"size\": \"774767\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"2832\",\n            \"height\": \"4240\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/tokjpfolep2pf1hcadhqu47947/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=tokjpfolep2pf1hcadhqu47947\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/tokjpfolep2pf1hcadhqu47947/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062949000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-leather-4527-coat.jpg\",\n            \"default\": {\n                \"Size\": \"2507173\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"6000*4000 Pixels\",\n                \"Date uploaded\": \"20210105062949000\",\n                \"Date modified\": \"20210105062949000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"tokjpfolep2pf1hcadhqu47947\",\n            \"size\": \"2507173\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\n                    },\n                    \"id\": \"JARDF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"SHFO1/JARDF\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"4000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/se3vu7hd611bf40s3l3o0va06o/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/se3vu7hd611bf40s3l3o0va06o\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/se3vu7hd611bf40s3l3o0va06o/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/se3vu7hd611bf40s3l3o0va06o/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/se3vu7hd611bf40s3l3o0va06o/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/se3vu7hd611bf40s3l3o0va06o/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=se3vu7hd611bf40s3l3o0va06o\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/se3vu7hd611bf40s3l3o0va06o/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/se3vu7hd611bf40s3l3o0va06o/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062948000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-green-4548-winter-man.jpg\",\n            \"default\": {\n                \"Size\": \"913016\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3264*4896 Pixels\",\n                \"Date uploaded\": \"20210105062948000\",\n                \"Date modified\": \"20210105062948000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"se3vu7hd611bf40s3l3o0va06o\",\n            \"size\": \"913016\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"3264\",\n            \"height\": \"4896\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/roa5taedld663bsna3hndad30o/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/roa5taedld663bsna3hndad30o\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/roa5taedld663bsna3hndad30o/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/roa5taedld663bsna3hndad30o/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/roa5taedld663bsna3hndad30o/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/roa5taedld663bsna3hndad30o/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=roa5taedld663bsna3hndad30o\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/roa5taedld663bsna3hndad30o/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/roa5taedld663bsna3hndad30o/LowJPG\"\n            },\n            \"tag\": [\n                \"Clothing\"\n            ],\n            \"time\": \"20210105062946000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": \"5\"\n            },\n            \"name\": \"lifestyle-backpacks-family-hiking.jpg\",\n            \"default\": {\n                \"Size\": \"3113705\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5760*3240 Pixels\",\n                \"Date uploaded\": \"20210105062946000\",\n                \"Date modified\": \"20210105062946000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"roa5taedld663bsna3hndad30o\",\n            \"size\": \"3113705\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/UT9AR\"\n                    },\n                    \"id\": \"UT9AR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/UT9AR\"\n                }\n            ],\n            \"width\": \"5760\",\n            \"height\": \"3240\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/pvaopkuh6p67t06lk11n64et24/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=pvaopkuh6p67t06lk11n64et24\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/pvaopkuh6p67t06lk11n64et24/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062945000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-grey-4515-photographer.jpg\",\n            \"default\": {\n                \"Size\": \"3405164\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3168*4752 Pixels\",\n                \"Date uploaded\": \"20210105062945000\",\n                \"Date modified\": \"20210105062945000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"pvaopkuh6p67t06lk11n64et24\",\n            \"size\": \"3405164\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\n                    },\n                    \"id\": \"JARDF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"SHFO1/JARDF\"\n                }\n            ],\n            \"width\": \"3168\",\n            \"height\": \"4752\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Lifestyle\",\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/p8ag9gkd094v307g69ugnor30a/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/p8ag9gkd094v307g69ugnor30a\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/p8ag9gkd094v307g69ugnor30a/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p8ag9gkd094v307g69ugnor30a/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p8ag9gkd094v307g69ugnor30a/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/p8ag9gkd094v307g69ugnor30a/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=p8ag9gkd094v307g69ugnor30a\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/p8ag9gkd094v307g69ugnor30a/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p8ag9gkd094v307g69ugnor30a/LowJPG\"\n            },\n            \"tag\": [\n                \"Clothing\"\n            ],\n            \"time\": \"20210105062944000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"clothing-shirt-jackie.jpg\",\n            \"default\": {\n                \"Size\": \"1612095\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4333*2889 Pixels\",\n                \"Date uploaded\": \"20210105062944000\",\n                \"Date modified\": \"20210105062944000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"Hewlett-Packard\",\n                \"Date Created\": \"2019-12-18 23:33:05\",\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"p8ag9gkd094v307g69ugnor30a\",\n            \"size\": \"1612095\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/UT9AR\"\n                    },\n                    \"id\": \"UT9AR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/UT9AR\"\n                }\n            ],\n            \"width\": \"4333\",\n            \"height\": \"2889\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/p74am1pqa17fd8oe541ekihu46/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/p74am1pqa17fd8oe541ekihu46\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/p74am1pqa17fd8oe541ekihu46/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p74am1pqa17fd8oe541ekihu46/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p74am1pqa17fd8oe541ekihu46/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/p74am1pqa17fd8oe541ekihu46/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=p74am1pqa17fd8oe541ekihu46\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/p74am1pqa17fd8oe541ekihu46/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p74am1pqa17fd8oe541ekihu46/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062942000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"backpack-3230-alps.jpg\",\n            \"default\": {\n                \"Size\": \"2700160\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4928*3043 Pixels\",\n                \"Date uploaded\": \"20210105062942000\",\n                \"Date modified\": \"20210105062942000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"p74am1pqa17fd8oe541ekihu46\",\n            \"size\": \"2700160\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/T7ALK\"\n                    },\n                    \"id\": \"T7ALK\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/T7ALK\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/KU8U8\"\n                    },\n                    \"id\": \"KU8U8\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/KU8U8\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/K2842\"\n                    },\n                    \"id\": \"K2842\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/K2842\"\n                }\n            ],\n            \"width\": \"4928\",\n            \"height\": \"3043\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/p4sei4oe7p2epe27lkrol1n974/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/p4sei4oe7p2epe27lkrol1n974\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/p4sei4oe7p2epe27lkrol1n974/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p4sei4oe7p2epe27lkrol1n974/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p4sei4oe7p2epe27lkrol1n974/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/p4sei4oe7p2epe27lkrol1n974/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=p4sei4oe7p2epe27lkrol1n974\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/p4sei4oe7p2epe27lkrol1n974/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p4sei4oe7p2epe27lkrol1n974/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062941000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-mini-black-4533-orange.jpg\",\n            \"default\": {\n                \"Size\": \"752231\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"2400*3000 Pixels\",\n                \"Date uploaded\": \"20210105062941000\",\n                \"Date modified\": \"20210105062941000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"p4sei4oe7p2epe27lkrol1n974\",\n            \"size\": \"752231\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"2400\",\n            \"height\": \"3000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/op4donlpah2et1530ave1k8c37/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/op4donlpah2et1530ave1k8c37\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/op4donlpah2et1530ave1k8c37/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/op4donlpah2et1530ave1k8c37/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/op4donlpah2et1530ave1k8c37/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/op4donlpah2et1530ave1k8c37/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=op4donlpah2et1530ave1k8c37\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/op4donlpah2et1530ave1k8c37/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/op4donlpah2et1530ave1k8c37/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062939000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8561-cliff.jpg\",\n            \"default\": {\n                \"Size\": \"3989073\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3264*4912 Pixels\",\n                \"Date uploaded\": \"20210105062939000\",\n                \"Date modified\": \"20210105062939000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"op4donlpah2et1530ave1k8c37\",\n            \"size\": \"3989073\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"3264\",\n            \"height\": \"4912\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/olqogk3l8d1nl4el3dq5t8pb3d/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/olqogk3l8d1nl4el3dq5t8pb3d\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/olqogk3l8d1nl4el3dq5t8pb3d/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/olqogk3l8d1nl4el3dq5t8pb3d/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/olqogk3l8d1nl4el3dq5t8pb3d/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/olqogk3l8d1nl4el3dq5t8pb3d/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=olqogk3l8d1nl4el3dq5t8pb3d\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/olqogk3l8d1nl4el3dq5t8pb3d/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/olqogk3l8d1nl4el3dq5t8pb3d/LowJPG\"\n            },\n            \"tag\": [\n                \"Clothing\"\n            ],\n            \"time\": \"20210105062938000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-friends-clothing.jpg\",\n            \"default\": {\n                \"Size\": \"4522747\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"6000*4000 Pixels\",\n                \"Date uploaded\": \"20210105062938000\",\n                \"Date modified\": \"20210105062938000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"olqogk3l8d1nl4el3dq5t8pb3d\",\n            \"size\": \"4522747\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/UT9AR\"\n                    },\n                    \"id\": \"UT9AR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/UT9AR\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"4000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/o9l1spr8tt04d0klfg2auch563/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/o9l1spr8tt04d0klfg2auch563\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/o9l1spr8tt04d0klfg2auch563/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/o9l1spr8tt04d0klfg2auch563/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/o9l1spr8tt04d0klfg2auch563/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/o9l1spr8tt04d0klfg2auch563/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=o9l1spr8tt04d0klfg2auch563\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/o9l1spr8tt04d0klfg2auch563/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/o9l1spr8tt04d0klfg2auch563/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062936000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-hiking-forest.jpg\",\n            \"default\": {\n                \"Size\": \"4014064\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3458*4322 Pixels\",\n                \"Date uploaded\": \"20210105062936000\",\n                \"Date modified\": \"20210105062936000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"o9l1spr8tt04d0klfg2auch563\",\n            \"size\": \"4014064\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"3458\",\n            \"height\": \"4322\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/nanq62jn2p6hje8b86h6f84m3a/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/nanq62jn2p6hje8b86h6f84m3a\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/nanq62jn2p6hje8b86h6f84m3a/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/nanq62jn2p6hje8b86h6f84m3a/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/nanq62jn2p6hje8b86h6f84m3a/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/nanq62jn2p6hje8b86h6f84m3a/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=nanq62jn2p6hje8b86h6f84m3a\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/nanq62jn2p6hje8b86h6f84m3a/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/nanq62jn2p6hje8b86h6f84m3a/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062934000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"clothing-jacket-4500-snow.jpg\",\n            \"default\": {\n                \"Size\": \"4382035\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5184*3456 Pixels\",\n                \"Date uploaded\": \"20210105062934000\",\n                \"Date modified\": \"20210105062934000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"nanq62jn2p6hje8b86h6f84m3a\",\n            \"size\": \"4382035\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/HSR4O\"\n                    },\n                    \"id\": \"HSR4O\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/HSR4O\"\n                }\n            ],\n            \"width\": \"5184\",\n            \"height\": \"3456\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/mmrcpupokt2cna2trr2ri6i351/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/mmrcpupokt2cna2trr2ri6i351\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/mmrcpupokt2cna2trr2ri6i351/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/mmrcpupokt2cna2trr2ri6i351/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/mmrcpupokt2cna2trr2ri6i351/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/mmrcpupokt2cna2trr2ri6i351/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=mmrcpupokt2cna2trr2ri6i351\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/mmrcpupokt2cna2trr2ri6i351/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/mmrcpupokt2cna2trr2ri6i351/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062933000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8554-log.jpg\",\n            \"default\": {\n                \"Size\": \"2468315\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5616*3744 Pixels\",\n                \"Date uploaded\": \"20210105062933000\",\n                \"Date modified\": \"20210105062933000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"mmrcpupokt2cna2trr2ri6i351\",\n            \"size\": \"2468315\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"5616\",\n            \"height\": \"3744\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/lr3evvp3kh2vb07jpeti7qor2k/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/lr3evvp3kh2vb07jpeti7qor2k\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/lr3evvp3kh2vb07jpeti7qor2k/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lr3evvp3kh2vb07jpeti7qor2k/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lr3evvp3kh2vb07jpeti7qor2k/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/lr3evvp3kh2vb07jpeti7qor2k/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=lr3evvp3kh2vb07jpeti7qor2k\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/lr3evvp3kh2vb07jpeti7qor2k/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lr3evvp3kh2vb07jpeti7qor2k/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062931000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-grey-4513-hike.jpg\",\n            \"default\": {\n                \"Size\": \"5961378\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5760*3840 Pixels\",\n                \"Date uploaded\": \"20210105062931000\",\n                \"Date modified\": \"20210105062931000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"lr3evvp3kh2vb07jpeti7qor2k\",\n            \"size\": \"5961378\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/KU8U8\"\n                    },\n                    \"id\": \"KU8U8\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/KU8U8\"\n                }\n            ],\n            \"width\": \"5760\",\n            \"height\": \"3840\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Lifestyle\",\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/lo7h438mu553dddvdhfqp1qo03/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/lo7h438mu553dddvdhfqp1qo03\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/lo7h438mu553dddvdhfqp1qo03/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lo7h438mu553dddvdhfqp1qo03/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lo7h438mu553dddvdhfqp1qo03/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/lo7h438mu553dddvdhfqp1qo03/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=lo7h438mu553dddvdhfqp1qo03\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/lo7h438mu553dddvdhfqp1qo03/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lo7h438mu553dddvdhfqp1qo03/LowJPG\"\n            },\n            \"tag\": [\n                \"Clothing\"\n            ],\n            \"time\": \"20210105062930000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"orange-hair-woman-coat.jpg\",\n            \"default\": {\n                \"Size\": \"3441518\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5616*3744 Pixels\",\n                \"Date uploaded\": \"20210105062930000\",\n                \"Date modified\": \"20210105062930000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"Hewlett-Packard\",\n                \"Date Created\": \"2019-12-18 23:33:08\",\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"lo7h438mu553dddvdhfqp1qo03\",\n            \"size\": \"3441518\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/UT9AR\"\n                    },\n                    \"id\": \"UT9AR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/UT9AR\"\n                }\n            ],\n            \"width\": \"5616\",\n            \"height\": \"3744\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/ll4ar2pe8l0l5478l138iukh79/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/ll4ar2pe8l0l5478l138iukh79\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/ll4ar2pe8l0l5478l138iukh79/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/ll4ar2pe8l0l5478l138iukh79/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/ll4ar2pe8l0l5478l138iukh79/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/ll4ar2pe8l0l5478l138iukh79/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=ll4ar2pe8l0l5478l138iukh79\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/ll4ar2pe8l0l5478l138iukh79/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/ll4ar2pe8l0l5478l138iukh79/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062928000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-blue-4517-utah.jpg\",\n            \"default\": {\n                \"Size\": \"1620201\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4896*3264 Pixels\",\n                \"Date uploaded\": \"20210105062928000\",\n                \"Date modified\": \"20210105062928000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"ll4ar2pe8l0l5478l138iukh79\",\n            \"size\": \"1620201\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"4896\",\n            \"height\": \"3264\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/l3mhkea1jt0ilbsuan22o7327l/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/l3mhkea1jt0ilbsuan22o7327l\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/l3mhkea1jt0ilbsuan22o7327l/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/l3mhkea1jt0ilbsuan22o7327l/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/l3mhkea1jt0ilbsuan22o7327l/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/l3mhkea1jt0ilbsuan22o7327l/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=l3mhkea1jt0ilbsuan22o7327l\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/l3mhkea1jt0ilbsuan22o7327l/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/l3mhkea1jt0ilbsuan22o7327l/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062927000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-green-4520-gear.jpg\",\n            \"default\": {\n                \"Size\": \"2790666\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3648*4560 Pixels\",\n                \"Date uploaded\": \"20210105062927000\",\n                \"Date modified\": \"20210105062927000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"l3mhkea1jt0ilbsuan22o7327l\",\n            \"size\": \"2790666\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"3648\",\n            \"height\": \"4560\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/kup4u0t4956a14o7c2hp2vei61/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/kup4u0t4956a14o7c2hp2vei61\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/kup4u0t4956a14o7c2hp2vei61/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kup4u0t4956a14o7c2hp2vei61/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kup4u0t4956a14o7c2hp2vei61/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/kup4u0t4956a14o7c2hp2vei61/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=kup4u0t4956a14o7c2hp2vei61\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/kup4u0t4956a14o7c2hp2vei61/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kup4u0t4956a14o7c2hp2vei61/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062925000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8557-summer-soles.jpg\",\n            \"default\": {\n                \"Size\": \"1872452\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4896*3264 Pixels\",\n                \"Date uploaded\": \"20210105062925000\",\n                \"Date modified\": \"20210105062925000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"kup4u0t4956a14o7c2hp2vei61\",\n            \"size\": \"1872452\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"4896\",\n            \"height\": \"3264\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Company\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/kt06v0c9gl1dl01cu60vdkro43/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/kt06v0c9gl1dl01cu60vdkro43\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/kt06v0c9gl1dl01cu60vdkro43/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kt06v0c9gl1dl01cu60vdkro43/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kt06v0c9gl1dl01cu60vdkro43/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/kt06v0c9gl1dl01cu60vdkro43/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=kt06v0c9gl1dl01cu60vdkro43\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/kt06v0c9gl1dl01cu60vdkro43/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kt06v0c9gl1dl01cu60vdkro43/LowJPG\"\n            },\n            \"tag\": [\n                \"Campaign\",\n                \"Great Outdoors\",\n                \"Logo\",\n                \"MarTech Event\",\n                \"Outdoors\",\n                \"Retail\",\n                \"Text\",\n                \"logo\"\n            ],\n            \"time\": \"20210105062924000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"gog-logo-lg-crop.png\",\n            \"default\": {\n                \"Size\": \"25153\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"386*123 Pixels\",\n                \"Date uploaded\": \"20210105062924000\",\n                \"Date modified\": \"20210105062924000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": null,\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"kt06v0c9gl1dl01cu60vdkro43\",\n            \"size\": \"25153\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"description\": \"Great Outdoors Go logo\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OLPCR\"\n                    },\n                    \"id\": \"OLPCR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/OLPCR\"\n                }\n            ],\n            \"width\": \"386\",\n            \"height\": \"123\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Company\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/knqeg2pq2p7rra5ogddbbl9e0d/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/knqeg2pq2p7rra5ogddbbl9e0d\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/knqeg2pq2p7rra5ogddbbl9e0d/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/knqeg2pq2p7rra5ogddbbl9e0d/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/knqeg2pq2p7rra5ogddbbl9e0d/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/knqeg2pq2p7rra5ogddbbl9e0d/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=knqeg2pq2p7rra5ogddbbl9e0d\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/knqeg2pq2p7rra5ogddbbl9e0d/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/knqeg2pq2p7rra5ogddbbl9e0d/LowJPG\"\n            },\n            \"tag\": [\n                \"Advertisement\",\n                \"Brochure\",\n                \"Canto\",\n                \"Flyer\",\n                \"MarTech Event\",\n                \"Menu\",\n                \"Page\",\n                \"Paper\",\n                \"Poster\",\n                \"Text\"\n            ],\n            \"time\": \"20210105062923000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"Canto-Martech-Coffee-Back.ai\",\n            \"default\": {\n                \"Size\": \"7118023\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"630*751 Pixels\",\n                \"Date uploaded\": \"20210105062923000\",\n                \"Date modified\": \"20210105062923000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"Adobe Illustrator(R) 16.0\",\n                \"Date Created\": \"2018-04-02 10:48:29\",\n                \"Creation Tool\": null,\n                \"Resolution\": null\n            },\n            \"id\": \"knqeg2pq2p7rra5ogddbbl9e0d\",\n            \"size\": \"7118023\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"description\": \"Print\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LQ9NI\"\n                    },\n                    \"id\": \"LQ9NI\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"G4T0V/LQ9NI\"\n                }\n            ],\n            \"width\": \"630\",\n            \"height\": \"751\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/kg0nm799gl1hfcd1b9gi8i9235/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/kg0nm799gl1hfcd1b9gi8i9235\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/kg0nm799gl1hfcd1b9gi8i9235/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kg0nm799gl1hfcd1b9gi8i9235/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kg0nm799gl1hfcd1b9gi8i9235/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/kg0nm799gl1hfcd1b9gi8i9235/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=kg0nm799gl1hfcd1b9gi8i9235\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/kg0nm799gl1hfcd1b9gi8i9235/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kg0nm799gl1hfcd1b9gi8i9235/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062921000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-backpack-5903.jpg\",\n            \"default\": {\n                \"Size\": \"3820649\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"6000*4000 Pixels\",\n                \"Date uploaded\": \"20210105062921000\",\n                \"Date modified\": \"20210105062921000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"kg0nm799gl1hfcd1b9gi8i9235\",\n            \"size\": \"3820649\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"4000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/j84b47ck012cd29sive5u7u535/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/j84b47ck012cd29sive5u7u535\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/j84b47ck012cd29sive5u7u535/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/j84b47ck012cd29sive5u7u535/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/j84b47ck012cd29sive5u7u535/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/j84b47ck012cd29sive5u7u535/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=j84b47ck012cd29sive5u7u535\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/j84b47ck012cd29sive5u7u535/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/j84b47ck012cd29sive5u7u535/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062920000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-4543-view.jpg\",\n            \"default\": {\n                \"Size\": \"3911813\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3808*3024 Pixels\",\n                \"Date uploaded\": \"20210105062920000\",\n                \"Date modified\": \"20210105062920000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"j84b47ck012cd29sive5u7u535\",\n            \"size\": \"3911813\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"3808\",\n            \"height\": \"3024\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/j5abfvktop22bbt0aqle3o4g57/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/j5abfvktop22bbt0aqle3o4g57\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/j5abfvktop22bbt0aqle3o4g57/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/j5abfvktop22bbt0aqle3o4g57/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/j5abfvktop22bbt0aqle3o4g57/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/j5abfvktop22bbt0aqle3o4g57/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=j5abfvktop22bbt0aqle3o4g57\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/j5abfvktop22bbt0aqle3o4g57/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/j5abfvktop22bbt0aqle3o4g57/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062918000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"kristina-wagner-PKLoOomB5Cs-unsplash.jpg\",\n            \"default\": {\n                \"Size\": \"2431757\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3600*2403 Pixels\",\n                \"Date uploaded\": \"20210105062918000\",\n                \"Date modified\": \"20210105062918000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"j5abfvktop22bbt0aqle3o4g57\",\n            \"size\": \"2431757\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/Q7OS4\"\n                    },\n                    \"id\": \"Q7OS4\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/Q7OS4\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"3600\",\n            \"height\": \"2403\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/hr2p2o6ahp2ijfkt4dsa52c31p/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/hr2p2o6ahp2ijfkt4dsa52c31p\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/hr2p2o6ahp2ijfkt4dsa52c31p/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/hr2p2o6ahp2ijfkt4dsa52c31p/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/hr2p2o6ahp2ijfkt4dsa52c31p/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/hr2p2o6ahp2ijfkt4dsa52c31p/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=hr2p2o6ahp2ijfkt4dsa52c31p\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/hr2p2o6ahp2ijfkt4dsa52c31p/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/hr2p2o6ahp2ijfkt4dsa52c31p/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062917000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-blue-4525-winter-hike.jpg\",\n            \"default\": {\n                \"Size\": \"2258457\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5428*3619 Pixels\",\n                \"Date uploaded\": \"20210105062917000\",\n                \"Date modified\": \"20210105062917000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"hr2p2o6ahp2ijfkt4dsa52c31p\",\n            \"size\": \"2258457\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"5428\",\n            \"height\": \"3619\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/h2cqt19f3p7vn8fhjdb0c8iq38/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/h2cqt19f3p7vn8fhjdb0c8iq38\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/h2cqt19f3p7vn8fhjdb0c8iq38/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/h2cqt19f3p7vn8fhjdb0c8iq38/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/h2cqt19f3p7vn8fhjdb0c8iq38/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/h2cqt19f3p7vn8fhjdb0c8iq38/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=h2cqt19f3p7vn8fhjdb0c8iq38\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/h2cqt19f3p7vn8fhjdb0c8iq38/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/h2cqt19f3p7vn8fhjdb0c8iq38/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062915000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"outdoor-gear-001.jpg\",\n            \"default\": {\n                \"Size\": \"1713767\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4356*3442 Pixels\",\n                \"Date uploaded\": \"20210105062915000\",\n                \"Date modified\": \"20210105062915000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"h2cqt19f3p7vn8fhjdb0c8iq38\",\n            \"size\": \"1713767\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"4356\",\n            \"height\": \"3442\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/gqg0hf5ecp10l9d7f47l8nlq54/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/gqg0hf5ecp10l9d7f47l8nlq54\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/gqg0hf5ecp10l9d7f47l8nlq54/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/gqg0hf5ecp10l9d7f47l8nlq54/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/gqg0hf5ecp10l9d7f47l8nlq54/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/gqg0hf5ecp10l9d7f47l8nlq54/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=gqg0hf5ecp10l9d7f47l8nlq54\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/gqg0hf5ecp10l9d7f47l8nlq54/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/gqg0hf5ecp10l9d7f47l8nlq54/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062914000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-mountain-hike-004.jpg\",\n            \"default\": {\n                \"Size\": \"2075282\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4871*3237 Pixels\",\n                \"Date uploaded\": \"20210105062914000\",\n                \"Date modified\": \"20210105062914000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"gqg0hf5ecp10l9d7f47l8nlq54\",\n            \"size\": \"2075282\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/K2842\"\n                    },\n                    \"id\": \"K2842\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/K2842\"\n                }\n            ],\n            \"width\": \"4871\",\n            \"height\": \"3237\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/gb4te6rl7h73n8236e2nsgi465/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/gb4te6rl7h73n8236e2nsgi465\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/gb4te6rl7h73n8236e2nsgi465/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/gb4te6rl7h73n8236e2nsgi465/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/gb4te6rl7h73n8236e2nsgi465/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/gb4te6rl7h73n8236e2nsgi465/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=gb4te6rl7h73n8236e2nsgi465\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/gb4te6rl7h73n8236e2nsgi465/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/gb4te6rl7h73n8236e2nsgi465/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062913000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8552-brown-rocks.jpg\",\n            \"default\": {\n                \"Size\": \"1106941\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5760*3840 Pixels\",\n                \"Date uploaded\": \"20210105062913000\",\n                \"Date modified\": \"20210105062913000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"gb4te6rl7h73n8236e2nsgi465\",\n            \"size\": \"1106941\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"5760\",\n            \"height\": \"3840\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/g1dgqq3jkl2hp1smqenv8eoq5e/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=g1dgqq3jkl2hp1smqenv8eoq5e\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/g1dgqq3jkl2hp1smqenv8eoq5e/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062911000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-grey-4512-utah.jpg\",\n            \"default\": {\n                \"Size\": \"3204622\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4495*3000 Pixels\",\n                \"Date uploaded\": \"20210105062911000\",\n                \"Date modified\": \"20210105062911000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"g1dgqq3jkl2hp1smqenv8eoq5e\",\n            \"size\": \"3204622\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/KU8U8\"\n                    },\n                    \"id\": \"KU8U8\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/KU8U8\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\n                    },\n                    \"id\": \"JARDF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"SHFO1/JARDF\"\n                }\n            ],\n            \"width\": \"4495\",\n            \"height\": \"3000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/fpdte3rh8513f6ojf0sp9l005q/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/fpdte3rh8513f6ojf0sp9l005q\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/fpdte3rh8513f6ojf0sp9l005q/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/fpdte3rh8513f6ojf0sp9l005q/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/fpdte3rh8513f6ojf0sp9l005q/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/fpdte3rh8513f6ojf0sp9l005q/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=fpdte3rh8513f6ojf0sp9l005q\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/fpdte3rh8513f6ojf0sp9l005q/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/fpdte3rh8513f6ojf0sp9l005q/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062910000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-blue-4509.jpg\",\n            \"default\": {\n                \"Size\": \"2248752\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3456*4608 Pixels\",\n                \"Date uploaded\": \"20210105062910000\",\n                \"Date modified\": \"20210105062910000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"fpdte3rh8513f6ojf0sp9l005q\",\n            \"size\": \"2248752\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/T7ALK\"\n                    },\n                    \"id\": \"T7ALK\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/T7ALK\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/KU8U8\"\n                    },\n                    \"id\": \"KU8U8\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/KU8U8\"\n                }\n            ],\n            \"width\": \"3456\",\n            \"height\": \"4608\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/f6h20aforl1v70i5n228sb4t2a/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/f6h20aforl1v70i5n228sb4t2a\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/f6h20aforl1v70i5n228sb4t2a/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/f6h20aforl1v70i5n228sb4t2a/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/f6h20aforl1v70i5n228sb4t2a/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/f6h20aforl1v70i5n228sb4t2a/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=f6h20aforl1v70i5n228sb4t2a\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/f6h20aforl1v70i5n228sb4t2a/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/f6h20aforl1v70i5n228sb4t2a/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062908000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8551-urban-fall.jpg\",\n            \"default\": {\n                \"Size\": \"4108075\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5472*3648 Pixels\",\n                \"Date uploaded\": \"20210105062908000\",\n                \"Date modified\": \"20210105062908000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"f6h20aforl1v70i5n228sb4t2a\",\n            \"size\": \"4108075\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/SB9RU\"\n                    },\n                    \"id\": \"SB9RU\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/SB9RU\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"5472\",\n            \"height\": \"3648\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/epnoj07hft395clgd3mqg7it1d/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=epnoj07hft395clgd3mqg7it1d\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/epnoj07hft395clgd3mqg7it1d/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062907000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-forest-green-4582-photographer.jpg\",\n            \"default\": {\n                \"Size\": \"1443993\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5184*2920 Pixels\",\n                \"Date uploaded\": \"20210105062907000\",\n                \"Date modified\": \"20210105062907000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"epnoj07hft395clgd3mqg7it1d\",\n            \"size\": \"1443993\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"5184\",\n            \"height\": \"2920\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/ek1fasbid5295d8nu6p6rgi406/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/ek1fasbid5295d8nu6p6rgi406\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/ek1fasbid5295d8nu6p6rgi406/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/ek1fasbid5295d8nu6p6rgi406/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/ek1fasbid5295d8nu6p6rgi406/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/ek1fasbid5295d8nu6p6rgi406/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=ek1fasbid5295d8nu6p6rgi406\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/ek1fasbid5295d8nu6p6rgi406/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/ek1fasbid5295d8nu6p6rgi406/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062905000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-black-4581-peru.jpg\",\n            \"default\": {\n                \"Size\": \"1720960\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3650*3621 Pixels\",\n                \"Date uploaded\": \"20210105062905000\",\n                \"Date modified\": \"20210105062905000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"ek1fasbid5295d8nu6p6rgi406\",\n            \"size\": \"1720960\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"3650\",\n            \"height\": \"3621\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/e0jpen6nsp1f719tb5rci4990p/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/e0jpen6nsp1f719tb5rci4990p\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/e0jpen6nsp1f719tb5rci4990p/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/e0jpen6nsp1f719tb5rci4990p/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/e0jpen6nsp1f719tb5rci4990p/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/e0jpen6nsp1f719tb5rci4990p/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=e0jpen6nsp1f719tb5rci4990p\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/e0jpen6nsp1f719tb5rci4990p/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/e0jpen6nsp1f719tb5rci4990p/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062904000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpacks-4566-with-tents.jpg\",\n            \"default\": {\n                \"Size\": \"747221\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"2031*1524 Pixels\",\n                \"Date uploaded\": \"20210105062904000\",\n                \"Date modified\": \"20210105062904000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"e0jpen6nsp1f719tb5rci4990p\",\n            \"size\": \"747221\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"2031\",\n            \"height\": \"1524\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/e089f9o5t16293rkmuqod6oe35/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/e089f9o5t16293rkmuqod6oe35\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/e089f9o5t16293rkmuqod6oe35/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/e089f9o5t16293rkmuqod6oe35/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/e089f9o5t16293rkmuqod6oe35/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/e089f9o5t16293rkmuqod6oe35/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=e089f9o5t16293rkmuqod6oe35\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/e089f9o5t16293rkmuqod6oe35/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/e089f9o5t16293rkmuqod6oe35/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062903000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-black-brown-4538-relax.jpg\",\n            \"default\": {\n                \"Size\": \"2435431\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4000*2667 Pixels\",\n                \"Date uploaded\": \"20210105062903000\",\n                \"Date modified\": \"20210105062903000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"e089f9o5t16293rkmuqod6oe35\",\n            \"size\": \"2435431\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/T7ALK\"\n                    },\n                    \"id\": \"T7ALK\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/T7ALK\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/KU8U8\"\n                    },\n                    \"id\": \"KU8U8\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/KU8U8\"\n                }\n            ],\n            \"width\": \"4000\",\n            \"height\": \"2667\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Lifestyle\",\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/dst53a6gi968f7ldaquiik0c32/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/dst53a6gi968f7ldaquiik0c32\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/dst53a6gi968f7ldaquiik0c32/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/dst53a6gi968f7ldaquiik0c32/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/dst53a6gi968f7ldaquiik0c32/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/dst53a6gi968f7ldaquiik0c32/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=dst53a6gi968f7ldaquiik0c32\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/dst53a6gi968f7ldaquiik0c32/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/dst53a6gi968f7ldaquiik0c32/LowJPG\"\n            },\n            \"tag\": [\n                \"Jacket\"\n            ],\n            \"time\": \"20210105062901000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Outerwear\"\n                ],\n                \"Product ID\": \"6565\",\n                \"Asset Type\": [\n                    \"Lifestyle\",\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"clothing-jacket-6565-rock-climbing.jpg\",\n            \"default\": {\n                \"Size\": \"5063387\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"8688*5792 Pixels\",\n                \"Date uploaded\": \"20210105062901000\",\n                \"Date modified\": \"20210105062901000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"dst53a6gi968f7ldaquiik0c32\",\n            \"size\": \"5063387\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/UT9AR\"\n                    },\n                    \"id\": \"UT9AR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/UT9AR\"\n                }\n            ],\n            \"width\": \"8688\",\n            \"height\": \"5792\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/cvdh032ch95v169to2b7bf8v0f/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/cvdh032ch95v169to2b7bf8v0f\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/cvdh032ch95v169to2b7bf8v0f/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cvdh032ch95v169to2b7bf8v0f/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cvdh032ch95v169to2b7bf8v0f/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/cvdh032ch95v169to2b7bf8v0f/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=cvdh032ch95v169to2b7bf8v0f\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/cvdh032ch95v169to2b7bf8v0f/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cvdh032ch95v169to2b7bf8v0f/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062900000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-backpack-3902.jpg\",\n            \"default\": {\n                \"Size\": \"4549016\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4000*6000 Pixels\",\n                \"Date uploaded\": \"20210105062900000\",\n                \"Date modified\": \"20210105062900000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"cvdh032ch95v169to2b7bf8v0f\",\n            \"size\": \"4549016\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"4000\",\n            \"height\": \"6000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/cto0gbga5h7et411jelup3hi4n/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/cto0gbga5h7et411jelup3hi4n\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/cto0gbga5h7et411jelup3hi4n/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cto0gbga5h7et411jelup3hi4n/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cto0gbga5h7et411jelup3hi4n/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/cto0gbga5h7et411jelup3hi4n/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=cto0gbga5h7et411jelup3hi4n\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/cto0gbga5h7et411jelup3hi4n/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cto0gbga5h7et411jelup3hi4n/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062858000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-blue-4545-with-tent.jpg\",\n            \"default\": {\n                \"Size\": \"5148727\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3264*4896 Pixels\",\n                \"Date uploaded\": \"20210105062858000\",\n                \"Date modified\": \"20210105062858000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"cto0gbga5h7et411jelup3hi4n\",\n            \"size\": \"5148727\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/KU8U8\"\n                    },\n                    \"id\": \"KU8U8\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/KU8U8\"\n                }\n            ],\n            \"width\": \"3264\",\n            \"height\": \"4896\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/cfcvf6tk7d75pbu6qmsqdtc33q/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/cfcvf6tk7d75pbu6qmsqdtc33q\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/cfcvf6tk7d75pbu6qmsqdtc33q/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cfcvf6tk7d75pbu6qmsqdtc33q/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cfcvf6tk7d75pbu6qmsqdtc33q/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/cfcvf6tk7d75pbu6qmsqdtc33q/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=cfcvf6tk7d75pbu6qmsqdtc33q\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/cfcvf6tk7d75pbu6qmsqdtc33q/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cfcvf6tk7d75pbu6qmsqdtc33q/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062857000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-7839-mountains.jpg\",\n            \"default\": {\n                \"Size\": \"3244192\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"6000*4000 Pixels\",\n                \"Date uploaded\": \"20210105062857000\",\n                \"Date modified\": \"20210105062857000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"cfcvf6tk7d75pbu6qmsqdtc33q\",\n            \"size\": \"3244192\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/SB9RU\"\n                    },\n                    \"id\": \"SB9RU\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/SB9RU\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"4000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/cddhevrbj971bb8q21us9c7p01/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/cddhevrbj971bb8q21us9c7p01\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/cddhevrbj971bb8q21us9c7p01/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cddhevrbj971bb8q21us9c7p01/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cddhevrbj971bb8q21us9c7p01/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/cddhevrbj971bb8q21us9c7p01/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=cddhevrbj971bb8q21us9c7p01\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/cddhevrbj971bb8q21us9c7p01/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cddhevrbj971bb8q21us9c7p01/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062855000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-mountain-hike.jpg\",\n            \"default\": {\n                \"Size\": \"1884625\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4264*2136 Pixels\",\n                \"Date uploaded\": \"20210105062855000\",\n                \"Date modified\": \"20210105062855000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"cddhevrbj971bb8q21us9c7p01\",\n            \"size\": \"1884625\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"4264\",\n            \"height\": \"2136\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/c70b70k0ot4d73k2huk079g91e/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/c70b70k0ot4d73k2huk079g91e\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/c70b70k0ot4d73k2huk079g91e/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/c70b70k0ot4d73k2huk079g91e/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/c70b70k0ot4d73k2huk079g91e/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/c70b70k0ot4d73k2huk079g91e/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=c70b70k0ot4d73k2huk079g91e\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/c70b70k0ot4d73k2huk079g91e/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/c70b70k0ot4d73k2huk079g91e/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062854000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"clothing-backpack-4593.jpg\",\n            \"default\": {\n                \"Size\": \"1633814\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"6000*4000 Pixels\",\n                \"Date uploaded\": \"20210105062854000\",\n                \"Date modified\": \"20210105062854000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"c70b70k0ot4d73k2huk079g91e\",\n            \"size\": \"1633814\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/SB9RU\"\n                    },\n                    \"id\": \"SB9RU\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/SB9RU\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"4000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/bp6bveij9p24dcueprfa0fss21/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/bp6bveij9p24dcueprfa0fss21\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/bp6bveij9p24dcueprfa0fss21/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/bp6bveij9p24dcueprfa0fss21/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/bp6bveij9p24dcueprfa0fss21/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/bp6bveij9p24dcueprfa0fss21/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=bp6bveij9p24dcueprfa0fss21\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/bp6bveij9p24dcueprfa0fss21/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/bp6bveij9p24dcueprfa0fss21/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062852000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8562-gear.jpg\",\n            \"default\": {\n                \"Size\": \"2676479\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4000*5000 Pixels\",\n                \"Date uploaded\": \"20210105062852000\",\n                \"Date modified\": \"20210105062852000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"bp6bveij9p24dcueprfa0fss21\",\n            \"size\": \"2676479\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"4000\",\n            \"height\": \"5000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Company\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/b71qtk45ud11je1q8gsmpi8202/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/b71qtk45ud11je1q8gsmpi8202\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/b71qtk45ud11je1q8gsmpi8202/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/b71qtk45ud11je1q8gsmpi8202/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/b71qtk45ud11je1q8gsmpi8202/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/b71qtk45ud11je1q8gsmpi8202/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=b71qtk45ud11je1q8gsmpi8202\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/b71qtk45ud11je1q8gsmpi8202/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/b71qtk45ud11je1q8gsmpi8202/LowJPG\"\n            },\n            \"tag\": [\n                \"Campaign\",\n                \"Cushion\",\n                \"Gate\",\n                \"Great Outdoors\",\n                \"Logo\",\n                \"Pillow\",\n                \"Retail\",\n                \"logo\"\n            ],\n            \"time\": \"20210105062851000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"great-outdoors-logo-crop.png\",\n            \"default\": {\n                \"Size\": \"32195\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"383*140 Pixels\",\n                \"Date uploaded\": \"20210105062851000\",\n                \"Date modified\": \"20210105062851000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": null,\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"b71qtk45ud11je1q8gsmpi8202\",\n            \"size\": \"32195\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"description\": \"Great Outdoors Go logo\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OLPCR\"\n                    },\n                    \"id\": \"OLPCR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/OLPCR\"\n                }\n            ],\n            \"width\": \"383\",\n            \"height\": \"140\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/b2trlugn2d6rj4tr1a6k5q5u1c/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/b2trlugn2d6rj4tr1a6k5q5u1c\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/b2trlugn2d6rj4tr1a6k5q5u1c/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/b2trlugn2d6rj4tr1a6k5q5u1c/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/b2trlugn2d6rj4tr1a6k5q5u1c/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/b2trlugn2d6rj4tr1a6k5q5u1c/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=b2trlugn2d6rj4tr1a6k5q5u1c\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/b2trlugn2d6rj4tr1a6k5q5u1c/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/b2trlugn2d6rj4tr1a6k5q5u1c/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062850000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-grey-4511-train.jpg\",\n            \"default\": {\n                \"Size\": \"1439876\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4896*3264 Pixels\",\n                \"Date uploaded\": \"20210105062850000\",\n                \"Date modified\": \"20210105062850000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"b2trlugn2d6rj4tr1a6k5q5u1c\",\n            \"size\": \"1439876\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/KU8U8\"\n                    },\n                    \"id\": \"KU8U8\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/KU8U8\"\n                }\n            ],\n            \"width\": \"4896\",\n            \"height\": \"3264\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/8tcbcdjuv53n7crh23k7g1jv2o/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/8tcbcdjuv53n7crh23k7g1jv2o\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/8tcbcdjuv53n7crh23k7g1jv2o/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/8tcbcdjuv53n7crh23k7g1jv2o/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/8tcbcdjuv53n7crh23k7g1jv2o/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/8tcbcdjuv53n7crh23k7g1jv2o/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=8tcbcdjuv53n7crh23k7g1jv2o\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/8tcbcdjuv53n7crh23k7g1jv2o/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/8tcbcdjuv53n7crh23k7g1jv2o/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062848000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-orange-4506-mountain.jpg\",\n            \"default\": {\n                \"Size\": \"2779888\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5000*3335 Pixels\",\n                \"Date uploaded\": \"20210105062848000\",\n                \"Date modified\": \"20210105062848000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"8tcbcdjuv53n7crh23k7g1jv2o\",\n            \"size\": \"2779888\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"5000\",\n            \"height\": \"3335\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/87k6lfb6c11itf7347b3jso112/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/87k6lfb6c11itf7347b3jso112\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/87k6lfb6c11itf7347b3jso112/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/87k6lfb6c11itf7347b3jso112/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/87k6lfb6c11itf7347b3jso112/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/87k6lfb6c11itf7347b3jso112/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=87k6lfb6c11itf7347b3jso112\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/87k6lfb6c11itf7347b3jso112/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/87k6lfb6c11itf7347b3jso112/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062847000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-waterfall-003.jpg\",\n            \"default\": {\n                \"Size\": \"1733445\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"1982*2477 Pixels\",\n                \"Date uploaded\": \"20210105062847000\",\n                \"Date modified\": \"20210105062847000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"87k6lfb6c11itf7347b3jso112\",\n            \"size\": \"1733445\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"1982\",\n            \"height\": \"2477\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/81pl6k64350nf4p68ba1a2d948/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/81pl6k64350nf4p68ba1a2d948\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/81pl6k64350nf4p68ba1a2d948/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/81pl6k64350nf4p68ba1a2d948/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/81pl6k64350nf4p68ba1a2d948/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/81pl6k64350nf4p68ba1a2d948/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=81pl6k64350nf4p68ba1a2d948\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/81pl6k64350nf4p68ba1a2d948/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/81pl6k64350nf4p68ba1a2d948/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062845000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8555-brown-view.jpg\",\n            \"default\": {\n                \"Size\": \"3049604\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4652*3361 Pixels\",\n                \"Date uploaded\": \"20210105062845000\",\n                \"Date modified\": \"20210105062845000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"81pl6k64350nf4p68ba1a2d948\",\n            \"size\": \"3049604\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"4652\",\n            \"height\": \"3361\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Company\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/7up0o81mml7218hkkl1cp69p08/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/7up0o81mml7218hkkl1cp69p08\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/7up0o81mml7218hkkl1cp69p08/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7up0o81mml7218hkkl1cp69p08/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7up0o81mml7218hkkl1cp69p08/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/7up0o81mml7218hkkl1cp69p08/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=7up0o81mml7218hkkl1cp69p08\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/7up0o81mml7218hkkl1cp69p08/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7up0o81mml7218hkkl1cp69p08/LowJPG\"\n            },\n            \"tag\": [\n                \"Campaign\",\n                \"Great Outdoors\",\n                \"Logo\",\n                \"Retail\",\n                \"Steering Wheel\",\n                \"logo\"\n            ],\n            \"time\": \"20210105062844000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"great-outdoors-icon-crop.png\",\n            \"default\": {\n                \"Size\": \"11730\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"132*132 Pixels\",\n                \"Date uploaded\": \"20210105062844000\",\n                \"Date modified\": \"20210105062844000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": null,\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"7up0o81mml7218hkkl1cp69p08\",\n            \"size\": \"11730\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"description\": \"Great Outdoors Go logo\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OLPCR\"\n                    },\n                    \"id\": \"OLPCR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/OLPCR\"\n                }\n            ],\n            \"width\": \"132\",\n            \"height\": \"132\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/7uf33sdjm56g13dnamoet07s6v/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/7uf33sdjm56g13dnamoet07s6v\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/7uf33sdjm56g13dnamoet07s6v/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7uf33sdjm56g13dnamoet07s6v/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7uf33sdjm56g13dnamoet07s6v/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/7uf33sdjm56g13dnamoet07s6v/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=7uf33sdjm56g13dnamoet07s6v\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/7uf33sdjm56g13dnamoet07s6v/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7uf33sdjm56g13dnamoet07s6v/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062843000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-green-4510-winter.jpg\",\n            \"default\": {\n                \"Size\": \"3299706\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4000*6000 Pixels\",\n                \"Date uploaded\": \"20210105062843000\",\n                \"Date modified\": \"20210105062843000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"7uf33sdjm56g13dnamoet07s6v\",\n            \"size\": \"3299706\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"4000\",\n            \"height\": \"6000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/7qnkosfm9t59bfjves8ipnes63/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/7qnkosfm9t59bfjves8ipnes63\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/7qnkosfm9t59bfjves8ipnes63/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7qnkosfm9t59bfjves8ipnes63/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7qnkosfm9t59bfjves8ipnes63/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/7qnkosfm9t59bfjves8ipnes63/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=7qnkosfm9t59bfjves8ipnes63\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/7qnkosfm9t59bfjves8ipnes63/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7qnkosfm9t59bfjves8ipnes63/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062842000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-lake-view-man.jpg\",\n            \"default\": {\n                \"Size\": \"2973098\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4853*2730 Pixels\",\n                \"Date uploaded\": \"20210105062842000\",\n                \"Date modified\": \"20210105062842000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"7qnkosfm9t59bfjves8ipnes63\",\n            \"size\": \"2973098\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"4853\",\n            \"height\": \"2730\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/7h0uts0h1d607e8k6ok8jr3r3e/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/7h0uts0h1d607e8k6ok8jr3r3e\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/7h0uts0h1d607e8k6ok8jr3r3e/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7h0uts0h1d607e8k6ok8jr3r3e/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7h0uts0h1d607e8k6ok8jr3r3e/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/7h0uts0h1d607e8k6ok8jr3r3e/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=7h0uts0h1d607e8k6ok8jr3r3e\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/7h0uts0h1d607e8k6ok8jr3r3e/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7h0uts0h1d607e8k6ok8jr3r3e/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062840000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-7459-sky-blue.jpg\",\n            \"default\": {\n                \"Size\": \"4206783\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3012*5363 Pixels\",\n                \"Date uploaded\": \"20210105062840000\",\n                \"Date modified\": \"20210105062840000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"7h0uts0h1d607e8k6ok8jr3r3e\",\n            \"size\": \"4206783\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"3012\",\n            \"height\": \"5363\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/6mbsbcka853ivc6qh8jbni0o78/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/6mbsbcka853ivc6qh8jbni0o78\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/6mbsbcka853ivc6qh8jbni0o78/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6mbsbcka853ivc6qh8jbni0o78/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6mbsbcka853ivc6qh8jbni0o78/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/6mbsbcka853ivc6qh8jbni0o78/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=6mbsbcka853ivc6qh8jbni0o78\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/6mbsbcka853ivc6qh8jbni0o78/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6mbsbcka853ivc6qh8jbni0o78/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062839000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-4516-4517-couple.jpg\",\n            \"default\": {\n                \"Size\": \"1322316\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4256*2832 Pixels\",\n                \"Date uploaded\": \"20210105062839000\",\n                \"Date modified\": \"20210105062839000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"6mbsbcka853ivc6qh8jbni0o78\",\n            \"size\": \"1322316\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"4256\",\n            \"height\": \"2832\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Lifestyle\",\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/6f4glka9qd70raurcrd4h1bf5u/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/6f4glka9qd70raurcrd4h1bf5u\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/6f4glka9qd70raurcrd4h1bf5u/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6f4glka9qd70raurcrd4h1bf5u/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6f4glka9qd70raurcrd4h1bf5u/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/6f4glka9qd70raurcrd4h1bf5u/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=6f4glka9qd70raurcrd4h1bf5u\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/6f4glka9qd70raurcrd4h1bf5u/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6f4glka9qd70raurcrd4h1bf5u/LowJPG\"\n            },\n            \"tag\": [\n                \"Clothing\"\n            ],\n            \"time\": \"20210105062837000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"backpack-5694-yosemite.jpg\",\n            \"default\": {\n                \"Size\": \"3898917\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5184*3456 Pixels\",\n                \"Date uploaded\": \"20210105062837000\",\n                \"Date modified\": \"20210105062837000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"Hewlett-Packard\",\n                \"Date Created\": \"2019-12-18 23:33:08\",\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"6f4glka9qd70raurcrd4h1bf5u\",\n            \"size\": \"3898917\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/UT9AR\"\n                    },\n                    \"id\": \"UT9AR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/UT9AR\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"5184\",\n            \"height\": \"3456\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/6913667psh2up1c1ac834jrc2r/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/6913667psh2up1c1ac834jrc2r\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/6913667psh2up1c1ac834jrc2r/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6913667psh2up1c1ac834jrc2r/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6913667psh2up1c1ac834jrc2r/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/6913667psh2up1c1ac834jrc2r/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=6913667psh2up1c1ac834jrc2r\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/6913667psh2up1c1ac834jrc2r/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6913667psh2up1c1ac834jrc2r/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062836000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-mini-colors-4562-utah.jpg\",\n            \"default\": {\n                \"Size\": \"3090125\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3840*5760 Pixels\",\n                \"Date uploaded\": \"20210105062836000\",\n                \"Date modified\": \"20210105062836000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"6913667psh2up1c1ac834jrc2r\",\n            \"size\": \"3090125\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"3840\",\n            \"height\": \"5760\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/5pbsjb0fct083d59fp42tr4k37/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/5pbsjb0fct083d59fp42tr4k37\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/5pbsjb0fct083d59fp42tr4k37/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/5pbsjb0fct083d59fp42tr4k37/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/5pbsjb0fct083d59fp42tr4k37/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/5pbsjb0fct083d59fp42tr4k37/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=5pbsjb0fct083d59fp42tr4k37\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/5pbsjb0fct083d59fp42tr4k37/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/5pbsjb0fct083d59fp42tr4k37/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062834000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-maroon-4569-tropics.jpg\",\n            \"default\": {\n                \"Size\": \"5198291\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"7360*4912 Pixels\",\n                \"Date uploaded\": \"20210105062834000\",\n                \"Date modified\": \"20210105062834000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"5pbsjb0fct083d59fp42tr4k37\",\n            \"size\": \"5198291\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"7360\",\n            \"height\": \"4912\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/5mtirq4ut1239cn8nmfia3ng3n/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/5mtirq4ut1239cn8nmfia3ng3n\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/5mtirq4ut1239cn8nmfia3ng3n/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/5mtirq4ut1239cn8nmfia3ng3n/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/5mtirq4ut1239cn8nmfia3ng3n/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/5mtirq4ut1239cn8nmfia3ng3n/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=5mtirq4ut1239cn8nmfia3ng3n\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/5mtirq4ut1239cn8nmfia3ng3n/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/5mtirq4ut1239cn8nmfia3ng3n/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\",\n                \"Fall\"\n            ],\n            \"time\": \"20210105062833000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-walking-on-path.jpg\",\n            \"default\": {\n                \"Size\": \"5950954\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"6000*3376 Pixels\",\n                \"Date uploaded\": \"20210105062833000\",\n                \"Date modified\": \"20210105062833000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"5mtirq4ut1239cn8nmfia3ng3n\",\n            \"size\": \"5950954\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/SB9RU\"\n                    },\n                    \"id\": \"SB9RU\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/SB9RU\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"3376\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/54ft9n80nd0p76s3bfqpse7037/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/54ft9n80nd0p76s3bfqpse7037\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/54ft9n80nd0p76s3bfqpse7037/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/54ft9n80nd0p76s3bfqpse7037/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/54ft9n80nd0p76s3bfqpse7037/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/54ft9n80nd0p76s3bfqpse7037/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=54ft9n80nd0p76s3bfqpse7037\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/54ft9n80nd0p76s3bfqpse7037/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/54ft9n80nd0p76s3bfqpse7037/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062831000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8556-sunrise.jpg\",\n            \"default\": {\n                \"Size\": \"2633054\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3276*4096 Pixels\",\n                \"Date uploaded\": \"20210105062831000\",\n                \"Date modified\": \"20210105062831000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"54ft9n80nd0p76s3bfqpse7037\",\n            \"size\": \"2633054\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"3276\",\n            \"height\": \"4096\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/4t7mlrglrh4ur7h9dojppgq502/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=4t7mlrglrh4ur7h9dojppgq502\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/4t7mlrglrh4ur7h9dojppgq502/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062829000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-grey-4536-sunrise.jpg\",\n            \"default\": {\n                \"Size\": \"6864968\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"7606*5073 Pixels\",\n                \"Date uploaded\": \"20210105062829000\",\n                \"Date modified\": \"20210105062829000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"4t7mlrglrh4ur7h9dojppgq502\",\n            \"size\": \"6864968\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\n                    },\n                    \"id\": \"JARDF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"SHFO1/JARDF\"\n                }\n            ],\n            \"width\": \"7606\",\n            \"height\": \"5073\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/3r3elicpht2gl49e7epvttja58/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/3r3elicpht2gl49e7epvttja58\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/3r3elicpht2gl49e7epvttja58/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/3r3elicpht2gl49e7epvttja58/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/3r3elicpht2gl49e7epvttja58/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/3r3elicpht2gl49e7epvttja58/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=3r3elicpht2gl49e7epvttja58\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/3r3elicpht2gl49e7epvttja58/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/3r3elicpht2gl49e7epvttja58/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062827000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-snow-sunny.jpg\",\n            \"default\": {\n                \"Size\": \"1638720\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3000*2000 Pixels\",\n                \"Date uploaded\": \"20210105062827000\",\n                \"Date modified\": \"20210105062827000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"3r3elicpht2gl49e7epvttja58\",\n            \"size\": \"1638720\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/HSR4O\"\n                    },\n                    \"id\": \"HSR4O\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/HSR4O\"\n                }\n            ],\n            \"width\": \"3000\",\n            \"height\": \"2000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/3cj322onap4f31bikudj7s9l6g/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/3cj322onap4f31bikudj7s9l6g\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/3cj322onap4f31bikudj7s9l6g/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/3cj322onap4f31bikudj7s9l6g/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/3cj322onap4f31bikudj7s9l6g/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/3cj322onap4f31bikudj7s9l6g/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=3cj322onap4f31bikudj7s9l6g\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/3cj322onap4f31bikudj7s9l6g/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/3cj322onap4f31bikudj7s9l6g/LowJPG\"\n            },\n            \"tag\": [\n                \"Autumn\",\n                \"Photoshop\"\n            ],\n            \"time\": \"20210105062825000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-fall-path.psd\",\n            \"default\": {\n                \"Size\": \"58268564\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"6000*3376 Pixels\",\n                \"Date uploaded\": \"20210105062825000\",\n                \"Date modified\": \"20210105062825000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"Hewlett-Packard\",\n                \"Date Created\": \"2019-12-12 14:02:33\",\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"3cj322onap4f31bikudj7s9l6g\",\n            \"size\": \"58268564\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/Q3PLU\"\n                    },\n                    \"id\": \"Q3PLU\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/Q3PLU\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"3376\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/34ihp8sofp2915g42uoi3qgv40/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=34ihp8sofp2915g42uoi3qgv40\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/34ihp8sofp2915g42uoi3qgv40/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062822000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8560-hammock.jpg\",\n            \"default\": {\n                \"Size\": \"1334090\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3335*5000 Pixels\",\n                \"Date uploaded\": \"20210105062822000\",\n                \"Date modified\": \"20210105062822000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"34ihp8sofp2915g42uoi3qgv40\",\n            \"size\": \"1334090\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"3335\",\n            \"height\": \"5000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/33jm9on7s16l32lnounv9tbo62/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=33jm9on7s16l32lnounv9tbo62\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/33jm9on7s16l32lnounv9tbo62/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062820000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-hammock.jpg\",\n            \"default\": {\n                \"Size\": \"1438331\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"2288*1520 Pixels\",\n                \"Date uploaded\": \"20210105062820000\",\n                \"Date modified\": \"20210105062820000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"33jm9on7s16l32lnounv9tbo62\",\n            \"size\": \"1438331\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/Q7OS4\"\n                    },\n                    \"id\": \"Q7OS4\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/Q7OS4\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"2288\",\n            \"height\": \"1520\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/25og7ksvv112n65bmktpus6e41/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/25og7ksvv112n65bmktpus6e41\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/25og7ksvv112n65bmktpus6e41/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/25og7ksvv112n65bmktpus6e41/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/25og7ksvv112n65bmktpus6e41/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/25og7ksvv112n65bmktpus6e41/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=25og7ksvv112n65bmktpus6e41\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/25og7ksvv112n65bmktpus6e41/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/25og7ksvv112n65bmktpus6e41/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062819000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8550-leaves.jpg\",\n            \"default\": {\n                \"Size\": \"2369653\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"6000*4000 Pixels\",\n                \"Date uploaded\": \"20210105062819000\",\n                \"Date modified\": \"20210105062819000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"25og7ksvv112n65bmktpus6e41\",\n            \"size\": \"2369653\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"4000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/1q32u4ueld6s5394f9aidq2q49/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=1q32u4ueld6s5394f9aidq2q49\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/1q32u4ueld6s5394f9aidq2q49/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062817000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-grey-orange-4541-snow.jpg\",\n            \"default\": {\n                \"Size\": \"3691210\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4000*6000 Pixels\",\n                \"Date uploaded\": \"20210105062817000\",\n                \"Date modified\": \"20210105062817000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"1q32u4ueld6s5394f9aidq2q49\",\n            \"size\": \"3691210\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"4000\",\n            \"height\": \"6000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/1k54q0ppip5gnbmtqi1ep7fi76/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=1k54q0ppip5gnbmtqi1ep7fi76\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/1k54q0ppip5gnbmtqi1ep7fi76/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/LowJPG\"\n            },\n            \"tag\": [\n                \"Lato font\"\n            ],\n            \"time\": \"20210105062816000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"Lato Font Sample.png\",\n            \"default\": {\n                \"Size\": \"96911\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"1398*508 Pixels\",\n                \"Date uploaded\": \"20210105062816000\",\n                \"Date modified\": \"20210105062816000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"appl\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"144.0\"\n            },\n            \"id\": \"1k54q0ppip5gnbmtqi1ep7fi76\",\n            \"size\": \"96911\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/VPA4H\"\n                    },\n                    \"id\": \"VPA4H\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/VPA4H\"\n                }\n            ],\n            \"width\": \"1398\",\n            \"height\": \"508\",\n            \"dpi\": \"144.0\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Company\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/1dakfh4e9h3sfb57dpimr06j6t/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=1dakfh4e9h3sfb57dpimr06j6t\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/1dakfh4e9h3sfb57dpimr06j6t/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t/LowJPG\"\n            },\n            \"tag\": [\n                \"Accessories\",\n                \"Accessory\",\n                \"Brochure\",\n                \"Canto\",\n                \"Face\",\n                \"Female\",\n                \"Girl\",\n                \"Glasses\",\n                \"Hair\",\n                \"Human\",\n                \"MarTech Event\",\n                \"Person\",\n                \"Sitting\"\n            ],\n            \"time\": \"20210105062814000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"Canto-Martech-Coffee-Front.ai\",\n            \"default\": {\n                \"Size\": \"30631212\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"630*810 Pixels\",\n                \"Date uploaded\": \"20210105062814000\",\n                \"Date modified\": \"20210105062814000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"Adobe Illustrator(R) 16.0\",\n                \"Date Created\": \"2018-04-02 09:48:40\",\n                \"Creation Tool\": null,\n                \"Resolution\": null\n            },\n            \"id\": \"1dakfh4e9h3sfb57dpimr06j6t\",\n            \"size\": \"30631212\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"description\": \"Canto-Milk-Sugar-Front\\nAdobe Illustrator File\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LQ9NI\"\n                    },\n                    \"id\": \"LQ9NI\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"G4T0V/LQ9NI\"\n                }\n            ],\n            \"width\": \"630\",\n            \"height\": \"810\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/155pgtpg2h6l31ao2i7buhmv2a/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=155pgtpg2h6l31ao2i7buhmv2a\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/155pgtpg2h6l31ao2i7buhmv2a/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062811000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-arches.jpg\",\n            \"default\": {\n                \"Size\": \"11480774\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5304*7952 Pixels\",\n                \"Date uploaded\": \"20210105062811000\",\n                \"Date modified\": \"20210105062811000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"155pgtpg2h6l31ao2i7buhmv2a\",\n            \"size\": \"11480774\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"5304\",\n            \"height\": \"7952\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/14j5kd7n916sba6dsq3h9rtq4k/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=14j5kd7n916sba6dsq3h9rtq4k\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/14j5kd7n916sba6dsq3h9rtq4k/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062810000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-black-4570-coat.jpg\",\n            \"default\": {\n                \"Size\": \"3228775\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5616*3744 Pixels\",\n                \"Date uploaded\": \"20210105062810000\",\n                \"Date modified\": \"20210105062810000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"14j5kd7n916sba6dsq3h9rtq4k\",\n            \"size\": \"3228775\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"5616\",\n            \"height\": \"3744\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/0eemvurtv14p3edsv71b57sj2v/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=0eemvurtv14p3edsv71b57sj2v\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/0eemvurtv14p3edsv71b57sj2v/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062808000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-yellow-4522-meadow.jpg\",\n            \"default\": {\n                \"Size\": \"5455296\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4926*3274 Pixels\",\n                \"Date uploaded\": \"20210105062808000\",\n                \"Date modified\": \"20210105062808000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"0eemvurtv14p3edsv71b57sj2v\",\n            \"size\": \"5455296\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"4926\",\n            \"height\": \"3274\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/032vhl3gh160d2kvf6s4353063/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=032vhl3gh160d2kvf6s4353063\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/032vhl3gh160d2kvf6s4353063/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062807000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-orange-3200-woman.jpg\",\n            \"default\": {\n                \"Size\": \"1064389\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"2448*3264 Pixels\",\n                \"Date uploaded\": \"20210105062807000\",\n                \"Date modified\": \"20210105062807000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"032vhl3gh160d2kvf6s4353063\",\n            \"size\": \"1064389\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\n                    },\n                    \"id\": \"JARDF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"SHFO1/JARDF\"\n                }\n            ],\n            \"width\": \"2448\",\n            \"height\": \"3264\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        }\n    ]\n}"},{"id":"9230dd1b-7df1-4937-be79-b3d647b0c3e2","name":"200 OK - Advanced search","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/search?keyword=photo&searchInField=filename&operator=and","host":["{{SITE_BASEURL}}"],"path":["api","v1","search"],"query":[{"key":"keyword","value":"photo","description":"The search term(s)\n\nuse this, to make a search simply by keyword. This is nearly the same search like you do in Canto UI on right top. "},{"key":"searchInField","value":"filename","description":"You can search inside the following fields: \"filename\", \"description\", \"comment\", \"keywords\", \"author\" and \"tags\".\n\nIf you input other values, the results will ignore it."},{"key":"operator","value":"and","description":"Operator: \"and\", \"or\".\n\nDefault: \"and\""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 08 Jan 2021 11:31:51 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Thu, 07-Jan-2021 11:31:50 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"facets\": [\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"name\": \"resolution\",\n            \"min\": 9223372036854775807\n        },\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"name\": \"duration\",\n            \"min\": 9223372036854775807\n        },\n        {\n            \"name\": \"tags\",\n            \"value\": [\n                \"Untagged\"\n            ]\n        },\n        {\n            \"name\": \"keywords\",\n            \"value\": [\n                \"Unkeyworded\"\n            ]\n        },\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"name\": \"dimension\",\n            \"min\": 9223372036854775807\n        },\n        {\n            \"name\": \"owner\",\n            \"value\": [\n                \"canto-support@canto.com\"\n            ]\n        },\n        {\n            \"name\": \"orientation\"\n        },\n        {\n            \"name\": \"storageClass\",\n            \"value\": [\n                \"standard\"\n            ]\n        },\n        {\n            \"name\": \"approval\",\n            \"value\": [\n                \"Approved\"\n            ]\n        },\n        {\n            \"mix\": 1609856885,\n            \"max\": 1609856885,\n            \"name\": \"created\",\n            \"min\": 1609856885\n        },\n        {\n            \"name\": \"scheme\",\n            \"value\": [\n                \"album\"\n            ]\n        },\n        {\n            \"mix\": 5,\n            \"max\": 5,\n            \"name\": \"fileSize\",\n            \"min\": 5\n        },\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"name\": \"pageNumber\",\n            \"min\": 9223372036854775807\n        }\n    ],\n    \"limit\": 100,\n    \"found\": 1,\n    \"sortBy\": \"time\",\n    \"sortDirection\": \"descending\",\n    \"matchExpr\": \"es\",\n    \"results\": [\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/preview\",\n                \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\n            },\n            \"time\": \"20210105062805000\",\n            \"name\": \"Marketing Photos\",\n            \"id\": \"JARDF\",\n            \"size\": \"5\",\n            \"scheme\": \"album\",\n            \"owner\": \"canto-support@canto.com\",\n            \"tag\": [\n                \"Untagged\"\n            ],\n            \"width\": \"4495\",\n            \"height\": \"3000\",\n            \"dpi\": \"72\",\n            \"ownerName\": \"Canto Support\",\n            \"idPath\": \"SHFO1/JARDF\",\n            \"namePath\": \"Marketing/Marketing Photos\"\n        }\n    ]\n}"},{"id":"33f76147-d95e-4240-b306-385a0a20a47b","name":"200 OK - images having size 400x400 px","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/folder/:folderId?scheme=image&height=400&width=400&imageRangeOperation=or","host":["{{SITE_BASEURL}}"],"path":["api","v1","folder",":folderId"],"query":[{"key":"scheme","value":"image"},{"key":"height","value":"400"},{"key":"width","value":"400"},{"key":"imageRangeOperation","value":"or"}],"variable":[{"id":"d47d7575-c6cd-4181-a22b-c94f2a0d34cd","key":"folderId","value":"{{folderId}}","type":"string","description":"The if of the folder"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"facets\": [\n        {\n            \"mix\": 72,\n            \"max\": 144,\n            \"name\": \"resolution\",\n            \"min\": 72\n        },\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"name\": \"duration\",\n            \"min\": 9223372036854775807\n        },\n        {\n            \"name\": \"tags\",\n            \"value\": [\n                \"Backpack\",\n                \"Great Outdoors Go\",\n                \"lifestyle\",\n                \"hiking shoes\",\n                \"Clothing\",\n                \"Campaign\",\n                \"Great Outdoors\",\n                \"Logo\",\n                \"MarTech Event\",\n                \"Retail\",\n                \"logo\",\n                \"Brochure\",\n                \"Canto\",\n                \"Text\",\n                \"Accessories\",\n                \"Accessory\",\n                \"Advertisement\",\n                \"Autumn\",\n                \"Cushion\",\n                \"Face\",\n                \"Fall\",\n                \"Female\",\n                \"Flyer\",\n                \"Gate\",\n                \"Girl\",\n                \"Glasses\",\n                \"Hair\",\n                \"Human\",\n                \"Jacket\",\n                \"Lato font\",\n                \"Menu\",\n                \"Outdoors\",\n                \"Page\",\n                \"Paper\",\n                \"Person\",\n                \"Photoshop\",\n                \"Pillow\",\n                \"Poster\",\n                \"Sitting\",\n                \"Steering Wheel\"\n            ]\n        },\n        {\n            \"name\": \"keywords\",\n            \"value\": [\n                \"Product\",\n                \"Lifestyle\",\n                \"Campaign\",\n                \"Unkeyworded\",\n                \"Company\"\n            ]\n        },\n        {\n            \"mix\": 123,\n            \"max\": 5792,\n            \"name\": \"dimension\",\n            \"min\": 123\n        },\n        {\n            \"name\": \"owner\",\n            \"value\": [\n                \"canto-support@canto.com\"\n            ]\n        },\n        {\n            \"name\": \"orientation\"\n        },\n        {\n            \"name\": \"storageClass\",\n            \"value\": [\n                \"standard\"\n            ]\n        },\n        {\n            \"name\": \"approval\",\n            \"value\": [\n                \"Approved\",\n                \"Restricted\"\n            ]\n        },\n        {\n            \"mix\": 1609856887,\n            \"max\": 1609856992,\n            \"name\": \"created\",\n            \"min\": 1609856887\n        },\n        {\n            \"name\": \"scheme\",\n            \"value\": [\n                \"image\"\n            ]\n        },\n        {\n            \"mix\": 11730,\n            \"max\": 58268564,\n            \"name\": \"fileSize\",\n            \"min\": 11730\n        },\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"name\": \"pageNumber\",\n            \"min\": 9223372036854775807\n        }\n    ],\n    \"limit\": 100,\n    \"found\": 70,\n    \"sortBy\": \"time\",\n    \"sortDirection\": \"descending\",\n    \"matchExpr\": \"es\",\n    \"results\": [\n        {\n            \"keyword\": [\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/vr32c46pnl5c7b4m8r9lt0nu3d/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/vr32c46pnl5c7b4m8r9lt0nu3d\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/vr32c46pnl5c7b4m8r9lt0nu3d/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/vr32c46pnl5c7b4m8r9lt0nu3d/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/vr32c46pnl5c7b4m8r9lt0nu3d/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/vr32c46pnl5c7b4m8r9lt0nu3d/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=vr32c46pnl5c7b4m8r9lt0nu3d\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/vr32c46pnl5c7b4m8r9lt0nu3d/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/vr32c46pnl5c7b4m8r9lt0nu3d/LowJPG\"\n            },\n            \"tag\": [\n                \"Clothing\"\n            ],\n            \"time\": \"20210105062952000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-hiking-shoes-wedding.jpg\",\n            \"default\": {\n                \"Size\": \"2536375\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5681*3787 Pixels\",\n                \"Date uploaded\": \"20210105062952000\",\n                \"Date modified\": \"20210105062952000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"vr32c46pnl5c7b4m8r9lt0nu3d\",\n            \"size\": \"2536375\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/UT9AR\"\n                    },\n                    \"id\": \"UT9AR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/UT9AR\"\n                }\n            ],\n            \"width\": \"5681\",\n            \"height\": \"3787\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Restricted\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/vm3dd9i9e91traf4pf3aq8uq5d/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/vm3dd9i9e91traf4pf3aq8uq5d\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/vm3dd9i9e91traf4pf3aq8uq5d/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/vm3dd9i9e91traf4pf3aq8uq5d/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/vm3dd9i9e91traf4pf3aq8uq5d/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/vm3dd9i9e91traf4pf3aq8uq5d/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=vm3dd9i9e91traf4pf3aq8uq5d\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/vm3dd9i9e91traf4pf3aq8uq5d/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/vm3dd9i9e91traf4pf3aq8uq5d/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062951000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-canvas-4531-man.jpg\",\n            \"default\": {\n                \"Size\": \"774767\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"2832*4240 Pixels\",\n                \"Date uploaded\": \"20210105062951000\",\n                \"Date modified\": \"20210105062951000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"vm3dd9i9e91traf4pf3aq8uq5d\",\n            \"size\": \"774767\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"2832\",\n            \"height\": \"4240\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/tokjpfolep2pf1hcadhqu47947/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=tokjpfolep2pf1hcadhqu47947\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/tokjpfolep2pf1hcadhqu47947/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062949000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-leather-4527-coat.jpg\",\n            \"default\": {\n                \"Size\": \"2507173\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"6000*4000 Pixels\",\n                \"Date uploaded\": \"20210105062949000\",\n                \"Date modified\": \"20210105062949000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"tokjpfolep2pf1hcadhqu47947\",\n            \"size\": \"2507173\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\n                    },\n                    \"id\": \"JARDF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"SHFO1/JARDF\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"4000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/se3vu7hd611bf40s3l3o0va06o/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/se3vu7hd611bf40s3l3o0va06o\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/se3vu7hd611bf40s3l3o0va06o/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/se3vu7hd611bf40s3l3o0va06o/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/se3vu7hd611bf40s3l3o0va06o/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/se3vu7hd611bf40s3l3o0va06o/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=se3vu7hd611bf40s3l3o0va06o\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/se3vu7hd611bf40s3l3o0va06o/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/se3vu7hd611bf40s3l3o0va06o/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062948000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-green-4548-winter-man.jpg\",\n            \"default\": {\n                \"Size\": \"913016\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3264*4896 Pixels\",\n                \"Date uploaded\": \"20210105062948000\",\n                \"Date modified\": \"20210105062948000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"se3vu7hd611bf40s3l3o0va06o\",\n            \"size\": \"913016\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"3264\",\n            \"height\": \"4896\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/roa5taedld663bsna3hndad30o/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/roa5taedld663bsna3hndad30o\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/roa5taedld663bsna3hndad30o/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/roa5taedld663bsna3hndad30o/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/roa5taedld663bsna3hndad30o/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/roa5taedld663bsna3hndad30o/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=roa5taedld663bsna3hndad30o\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/roa5taedld663bsna3hndad30o/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/roa5taedld663bsna3hndad30o/LowJPG\"\n            },\n            \"tag\": [\n                \"Clothing\"\n            ],\n            \"time\": \"20210105062946000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": \"5\"\n            },\n            \"name\": \"lifestyle-backpacks-family-hiking.jpg\",\n            \"default\": {\n                \"Size\": \"3113705\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5760*3240 Pixels\",\n                \"Date uploaded\": \"20210105062946000\",\n                \"Date modified\": \"20210105062946000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"roa5taedld663bsna3hndad30o\",\n            \"size\": \"3113705\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/UT9AR\"\n                    },\n                    \"id\": \"UT9AR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/UT9AR\"\n                }\n            ],\n            \"width\": \"5760\",\n            \"height\": \"3240\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/pvaopkuh6p67t06lk11n64et24/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=pvaopkuh6p67t06lk11n64et24\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/pvaopkuh6p67t06lk11n64et24/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062945000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-grey-4515-photographer.jpg\",\n            \"default\": {\n                \"Size\": \"3405164\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3168*4752 Pixels\",\n                \"Date uploaded\": \"20210105062945000\",\n                \"Date modified\": \"20210105062945000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"pvaopkuh6p67t06lk11n64et24\",\n            \"size\": \"3405164\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\n                    },\n                    \"id\": \"JARDF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"SHFO1/JARDF\"\n                }\n            ],\n            \"width\": \"3168\",\n            \"height\": \"4752\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Lifestyle\",\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/p8ag9gkd094v307g69ugnor30a/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/p8ag9gkd094v307g69ugnor30a\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/p8ag9gkd094v307g69ugnor30a/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p8ag9gkd094v307g69ugnor30a/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p8ag9gkd094v307g69ugnor30a/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/p8ag9gkd094v307g69ugnor30a/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=p8ag9gkd094v307g69ugnor30a\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/p8ag9gkd094v307g69ugnor30a/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p8ag9gkd094v307g69ugnor30a/LowJPG\"\n            },\n            \"tag\": [\n                \"Clothing\"\n            ],\n            \"time\": \"20210105062944000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"clothing-shirt-jackie.jpg\",\n            \"default\": {\n                \"Size\": \"1612095\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4333*2889 Pixels\",\n                \"Date uploaded\": \"20210105062944000\",\n                \"Date modified\": \"20210105062944000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"Hewlett-Packard\",\n                \"Date Created\": \"2019-12-18 23:33:05\",\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"p8ag9gkd094v307g69ugnor30a\",\n            \"size\": \"1612095\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/UT9AR\"\n                    },\n                    \"id\": \"UT9AR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/UT9AR\"\n                }\n            ],\n            \"width\": \"4333\",\n            \"height\": \"2889\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/p74am1pqa17fd8oe541ekihu46/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/p74am1pqa17fd8oe541ekihu46\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/p74am1pqa17fd8oe541ekihu46/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p74am1pqa17fd8oe541ekihu46/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p74am1pqa17fd8oe541ekihu46/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/p74am1pqa17fd8oe541ekihu46/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=p74am1pqa17fd8oe541ekihu46\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/p74am1pqa17fd8oe541ekihu46/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p74am1pqa17fd8oe541ekihu46/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062942000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"backpack-3230-alps.jpg\",\n            \"default\": {\n                \"Size\": \"2700160\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4928*3043 Pixels\",\n                \"Date uploaded\": \"20210105062942000\",\n                \"Date modified\": \"20210105062942000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"p74am1pqa17fd8oe541ekihu46\",\n            \"size\": \"2700160\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/T7ALK\"\n                    },\n                    \"id\": \"T7ALK\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/T7ALK\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/KU8U8\"\n                    },\n                    \"id\": \"KU8U8\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/KU8U8\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/K2842\"\n                    },\n                    \"id\": \"K2842\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/K2842\"\n                }\n            ],\n            \"width\": \"4928\",\n            \"height\": \"3043\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/p4sei4oe7p2epe27lkrol1n974/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/p4sei4oe7p2epe27lkrol1n974\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/p4sei4oe7p2epe27lkrol1n974/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p4sei4oe7p2epe27lkrol1n974/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p4sei4oe7p2epe27lkrol1n974/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/p4sei4oe7p2epe27lkrol1n974/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=p4sei4oe7p2epe27lkrol1n974\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/p4sei4oe7p2epe27lkrol1n974/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/p4sei4oe7p2epe27lkrol1n974/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062941000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-mini-black-4533-orange.jpg\",\n            \"default\": {\n                \"Size\": \"752231\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"2400*3000 Pixels\",\n                \"Date uploaded\": \"20210105062941000\",\n                \"Date modified\": \"20210105062941000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"p4sei4oe7p2epe27lkrol1n974\",\n            \"size\": \"752231\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"2400\",\n            \"height\": \"3000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/op4donlpah2et1530ave1k8c37/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/op4donlpah2et1530ave1k8c37\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/op4donlpah2et1530ave1k8c37/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/op4donlpah2et1530ave1k8c37/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/op4donlpah2et1530ave1k8c37/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/op4donlpah2et1530ave1k8c37/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=op4donlpah2et1530ave1k8c37\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/op4donlpah2et1530ave1k8c37/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/op4donlpah2et1530ave1k8c37/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062939000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8561-cliff.jpg\",\n            \"default\": {\n                \"Size\": \"3989073\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3264*4912 Pixels\",\n                \"Date uploaded\": \"20210105062939000\",\n                \"Date modified\": \"20210105062939000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"op4donlpah2et1530ave1k8c37\",\n            \"size\": \"3989073\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"3264\",\n            \"height\": \"4912\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/olqogk3l8d1nl4el3dq5t8pb3d/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/olqogk3l8d1nl4el3dq5t8pb3d\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/olqogk3l8d1nl4el3dq5t8pb3d/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/olqogk3l8d1nl4el3dq5t8pb3d/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/olqogk3l8d1nl4el3dq5t8pb3d/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/olqogk3l8d1nl4el3dq5t8pb3d/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=olqogk3l8d1nl4el3dq5t8pb3d\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/olqogk3l8d1nl4el3dq5t8pb3d/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/olqogk3l8d1nl4el3dq5t8pb3d/LowJPG\"\n            },\n            \"tag\": [\n                \"Clothing\"\n            ],\n            \"time\": \"20210105062938000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-friends-clothing.jpg\",\n            \"default\": {\n                \"Size\": \"4522747\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"6000*4000 Pixels\",\n                \"Date uploaded\": \"20210105062938000\",\n                \"Date modified\": \"20210105062938000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"olqogk3l8d1nl4el3dq5t8pb3d\",\n            \"size\": \"4522747\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/UT9AR\"\n                    },\n                    \"id\": \"UT9AR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/UT9AR\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"4000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/o9l1spr8tt04d0klfg2auch563/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/o9l1spr8tt04d0klfg2auch563\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/o9l1spr8tt04d0klfg2auch563/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/o9l1spr8tt04d0klfg2auch563/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/o9l1spr8tt04d0klfg2auch563/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/o9l1spr8tt04d0klfg2auch563/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=o9l1spr8tt04d0klfg2auch563\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/o9l1spr8tt04d0klfg2auch563/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/o9l1spr8tt04d0klfg2auch563/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062936000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-hiking-forest.jpg\",\n            \"default\": {\n                \"Size\": \"4014064\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3458*4322 Pixels\",\n                \"Date uploaded\": \"20210105062936000\",\n                \"Date modified\": \"20210105062936000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"o9l1spr8tt04d0klfg2auch563\",\n            \"size\": \"4014064\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"3458\",\n            \"height\": \"4322\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/nanq62jn2p6hje8b86h6f84m3a/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/nanq62jn2p6hje8b86h6f84m3a\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/nanq62jn2p6hje8b86h6f84m3a/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/nanq62jn2p6hje8b86h6f84m3a/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/nanq62jn2p6hje8b86h6f84m3a/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/nanq62jn2p6hje8b86h6f84m3a/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=nanq62jn2p6hje8b86h6f84m3a\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/nanq62jn2p6hje8b86h6f84m3a/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/nanq62jn2p6hje8b86h6f84m3a/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062934000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"clothing-jacket-4500-snow.jpg\",\n            \"default\": {\n                \"Size\": \"4382035\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5184*3456 Pixels\",\n                \"Date uploaded\": \"20210105062934000\",\n                \"Date modified\": \"20210105062934000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"nanq62jn2p6hje8b86h6f84m3a\",\n            \"size\": \"4382035\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/HSR4O\"\n                    },\n                    \"id\": \"HSR4O\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/HSR4O\"\n                }\n            ],\n            \"width\": \"5184\",\n            \"height\": \"3456\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/mmrcpupokt2cna2trr2ri6i351/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/mmrcpupokt2cna2trr2ri6i351\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/mmrcpupokt2cna2trr2ri6i351/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/mmrcpupokt2cna2trr2ri6i351/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/mmrcpupokt2cna2trr2ri6i351/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/mmrcpupokt2cna2trr2ri6i351/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=mmrcpupokt2cna2trr2ri6i351\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/mmrcpupokt2cna2trr2ri6i351/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/mmrcpupokt2cna2trr2ri6i351/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062933000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8554-log.jpg\",\n            \"default\": {\n                \"Size\": \"2468315\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5616*3744 Pixels\",\n                \"Date uploaded\": \"20210105062933000\",\n                \"Date modified\": \"20210105062933000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"mmrcpupokt2cna2trr2ri6i351\",\n            \"size\": \"2468315\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"5616\",\n            \"height\": \"3744\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/lr3evvp3kh2vb07jpeti7qor2k/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/lr3evvp3kh2vb07jpeti7qor2k\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/lr3evvp3kh2vb07jpeti7qor2k/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lr3evvp3kh2vb07jpeti7qor2k/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lr3evvp3kh2vb07jpeti7qor2k/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/lr3evvp3kh2vb07jpeti7qor2k/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=lr3evvp3kh2vb07jpeti7qor2k\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/lr3evvp3kh2vb07jpeti7qor2k/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lr3evvp3kh2vb07jpeti7qor2k/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062931000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-grey-4513-hike.jpg\",\n            \"default\": {\n                \"Size\": \"5961378\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5760*3840 Pixels\",\n                \"Date uploaded\": \"20210105062931000\",\n                \"Date modified\": \"20210105062931000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"lr3evvp3kh2vb07jpeti7qor2k\",\n            \"size\": \"5961378\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/KU8U8\"\n                    },\n                    \"id\": \"KU8U8\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/KU8U8\"\n                }\n            ],\n            \"width\": \"5760\",\n            \"height\": \"3840\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Lifestyle\",\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/lo7h438mu553dddvdhfqp1qo03/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/lo7h438mu553dddvdhfqp1qo03\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/lo7h438mu553dddvdhfqp1qo03/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lo7h438mu553dddvdhfqp1qo03/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lo7h438mu553dddvdhfqp1qo03/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/lo7h438mu553dddvdhfqp1qo03/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=lo7h438mu553dddvdhfqp1qo03\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/lo7h438mu553dddvdhfqp1qo03/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/lo7h438mu553dddvdhfqp1qo03/LowJPG\"\n            },\n            \"tag\": [\n                \"Clothing\"\n            ],\n            \"time\": \"20210105062930000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"orange-hair-woman-coat.jpg\",\n            \"default\": {\n                \"Size\": \"3441518\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5616*3744 Pixels\",\n                \"Date uploaded\": \"20210105062930000\",\n                \"Date modified\": \"20210105062930000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"Hewlett-Packard\",\n                \"Date Created\": \"2019-12-18 23:33:08\",\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"lo7h438mu553dddvdhfqp1qo03\",\n            \"size\": \"3441518\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/UT9AR\"\n                    },\n                    \"id\": \"UT9AR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/UT9AR\"\n                }\n            ],\n            \"width\": \"5616\",\n            \"height\": \"3744\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/ll4ar2pe8l0l5478l138iukh79/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/ll4ar2pe8l0l5478l138iukh79\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/ll4ar2pe8l0l5478l138iukh79/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/ll4ar2pe8l0l5478l138iukh79/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/ll4ar2pe8l0l5478l138iukh79/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/ll4ar2pe8l0l5478l138iukh79/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=ll4ar2pe8l0l5478l138iukh79\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/ll4ar2pe8l0l5478l138iukh79/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/ll4ar2pe8l0l5478l138iukh79/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062928000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-blue-4517-utah.jpg\",\n            \"default\": {\n                \"Size\": \"1620201\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4896*3264 Pixels\",\n                \"Date uploaded\": \"20210105062928000\",\n                \"Date modified\": \"20210105062928000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"ll4ar2pe8l0l5478l138iukh79\",\n            \"size\": \"1620201\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"4896\",\n            \"height\": \"3264\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/l3mhkea1jt0ilbsuan22o7327l/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/l3mhkea1jt0ilbsuan22o7327l\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/l3mhkea1jt0ilbsuan22o7327l/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/l3mhkea1jt0ilbsuan22o7327l/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/l3mhkea1jt0ilbsuan22o7327l/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/l3mhkea1jt0ilbsuan22o7327l/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=l3mhkea1jt0ilbsuan22o7327l\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/l3mhkea1jt0ilbsuan22o7327l/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/l3mhkea1jt0ilbsuan22o7327l/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062927000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-green-4520-gear.jpg\",\n            \"default\": {\n                \"Size\": \"2790666\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3648*4560 Pixels\",\n                \"Date uploaded\": \"20210105062927000\",\n                \"Date modified\": \"20210105062927000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"l3mhkea1jt0ilbsuan22o7327l\",\n            \"size\": \"2790666\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"3648\",\n            \"height\": \"4560\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/kup4u0t4956a14o7c2hp2vei61/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/kup4u0t4956a14o7c2hp2vei61\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/kup4u0t4956a14o7c2hp2vei61/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kup4u0t4956a14o7c2hp2vei61/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kup4u0t4956a14o7c2hp2vei61/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/kup4u0t4956a14o7c2hp2vei61/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=kup4u0t4956a14o7c2hp2vei61\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/kup4u0t4956a14o7c2hp2vei61/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kup4u0t4956a14o7c2hp2vei61/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062925000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8557-summer-soles.jpg\",\n            \"default\": {\n                \"Size\": \"1872452\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4896*3264 Pixels\",\n                \"Date uploaded\": \"20210105062925000\",\n                \"Date modified\": \"20210105062925000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"kup4u0t4956a14o7c2hp2vei61\",\n            \"size\": \"1872452\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"4896\",\n            \"height\": \"3264\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Company\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/kt06v0c9gl1dl01cu60vdkro43/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/kt06v0c9gl1dl01cu60vdkro43\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/kt06v0c9gl1dl01cu60vdkro43/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kt06v0c9gl1dl01cu60vdkro43/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kt06v0c9gl1dl01cu60vdkro43/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/kt06v0c9gl1dl01cu60vdkro43/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=kt06v0c9gl1dl01cu60vdkro43\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/kt06v0c9gl1dl01cu60vdkro43/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kt06v0c9gl1dl01cu60vdkro43/LowJPG\"\n            },\n            \"tag\": [\n                \"Campaign\",\n                \"Great Outdoors\",\n                \"Logo\",\n                \"MarTech Event\",\n                \"Outdoors\",\n                \"Retail\",\n                \"Text\",\n                \"logo\"\n            ],\n            \"time\": \"20210105062924000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"gog-logo-lg-crop.png\",\n            \"default\": {\n                \"Size\": \"25153\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"386*123 Pixels\",\n                \"Date uploaded\": \"20210105062924000\",\n                \"Date modified\": \"20210105062924000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": null,\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"kt06v0c9gl1dl01cu60vdkro43\",\n            \"size\": \"25153\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"description\": \"Great Outdoors Go logo\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OLPCR\"\n                    },\n                    \"id\": \"OLPCR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/OLPCR\"\n                }\n            ],\n            \"width\": \"386\",\n            \"height\": \"123\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Company\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/knqeg2pq2p7rra5ogddbbl9e0d/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/knqeg2pq2p7rra5ogddbbl9e0d\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/knqeg2pq2p7rra5ogddbbl9e0d/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/knqeg2pq2p7rra5ogddbbl9e0d/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/knqeg2pq2p7rra5ogddbbl9e0d/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/knqeg2pq2p7rra5ogddbbl9e0d/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=knqeg2pq2p7rra5ogddbbl9e0d\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/knqeg2pq2p7rra5ogddbbl9e0d/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/knqeg2pq2p7rra5ogddbbl9e0d/LowJPG\"\n            },\n            \"tag\": [\n                \"Advertisement\",\n                \"Brochure\",\n                \"Canto\",\n                \"Flyer\",\n                \"MarTech Event\",\n                \"Menu\",\n                \"Page\",\n                \"Paper\",\n                \"Poster\",\n                \"Text\"\n            ],\n            \"time\": \"20210105062923000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"Canto-Martech-Coffee-Back.ai\",\n            \"default\": {\n                \"Size\": \"7118023\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"630*751 Pixels\",\n                \"Date uploaded\": \"20210105062923000\",\n                \"Date modified\": \"20210105062923000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"Adobe Illustrator(R) 16.0\",\n                \"Date Created\": \"2018-04-02 10:48:29\",\n                \"Creation Tool\": null,\n                \"Resolution\": null\n            },\n            \"id\": \"knqeg2pq2p7rra5ogddbbl9e0d\",\n            \"size\": \"7118023\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"description\": \"Print\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LQ9NI\"\n                    },\n                    \"id\": \"LQ9NI\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"G4T0V/LQ9NI\"\n                }\n            ],\n            \"width\": \"630\",\n            \"height\": \"751\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/kg0nm799gl1hfcd1b9gi8i9235/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/kg0nm799gl1hfcd1b9gi8i9235\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/kg0nm799gl1hfcd1b9gi8i9235/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kg0nm799gl1hfcd1b9gi8i9235/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kg0nm799gl1hfcd1b9gi8i9235/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/kg0nm799gl1hfcd1b9gi8i9235/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=kg0nm799gl1hfcd1b9gi8i9235\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/kg0nm799gl1hfcd1b9gi8i9235/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/kg0nm799gl1hfcd1b9gi8i9235/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062921000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-backpack-5903.jpg\",\n            \"default\": {\n                \"Size\": \"3820649\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"6000*4000 Pixels\",\n                \"Date uploaded\": \"20210105062921000\",\n                \"Date modified\": \"20210105062921000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"kg0nm799gl1hfcd1b9gi8i9235\",\n            \"size\": \"3820649\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"4000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/j84b47ck012cd29sive5u7u535/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/j84b47ck012cd29sive5u7u535\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/j84b47ck012cd29sive5u7u535/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/j84b47ck012cd29sive5u7u535/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/j84b47ck012cd29sive5u7u535/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/j84b47ck012cd29sive5u7u535/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=j84b47ck012cd29sive5u7u535\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/j84b47ck012cd29sive5u7u535/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/j84b47ck012cd29sive5u7u535/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062920000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-4543-view.jpg\",\n            \"default\": {\n                \"Size\": \"3911813\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3808*3024 Pixels\",\n                \"Date uploaded\": \"20210105062920000\",\n                \"Date modified\": \"20210105062920000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"j84b47ck012cd29sive5u7u535\",\n            \"size\": \"3911813\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"3808\",\n            \"height\": \"3024\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/j5abfvktop22bbt0aqle3o4g57/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/j5abfvktop22bbt0aqle3o4g57\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/j5abfvktop22bbt0aqle3o4g57/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/j5abfvktop22bbt0aqle3o4g57/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/j5abfvktop22bbt0aqle3o4g57/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/j5abfvktop22bbt0aqle3o4g57/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=j5abfvktop22bbt0aqle3o4g57\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/j5abfvktop22bbt0aqle3o4g57/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/j5abfvktop22bbt0aqle3o4g57/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062918000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"kristina-wagner-PKLoOomB5Cs-unsplash.jpg\",\n            \"default\": {\n                \"Size\": \"2431757\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3600*2403 Pixels\",\n                \"Date uploaded\": \"20210105062918000\",\n                \"Date modified\": \"20210105062918000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"j5abfvktop22bbt0aqle3o4g57\",\n            \"size\": \"2431757\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/Q7OS4\"\n                    },\n                    \"id\": \"Q7OS4\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/Q7OS4\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"3600\",\n            \"height\": \"2403\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/hr2p2o6ahp2ijfkt4dsa52c31p/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/hr2p2o6ahp2ijfkt4dsa52c31p\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/hr2p2o6ahp2ijfkt4dsa52c31p/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/hr2p2o6ahp2ijfkt4dsa52c31p/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/hr2p2o6ahp2ijfkt4dsa52c31p/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/hr2p2o6ahp2ijfkt4dsa52c31p/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=hr2p2o6ahp2ijfkt4dsa52c31p\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/hr2p2o6ahp2ijfkt4dsa52c31p/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/hr2p2o6ahp2ijfkt4dsa52c31p/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062917000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-blue-4525-winter-hike.jpg\",\n            \"default\": {\n                \"Size\": \"2258457\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5428*3619 Pixels\",\n                \"Date uploaded\": \"20210105062917000\",\n                \"Date modified\": \"20210105062917000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"hr2p2o6ahp2ijfkt4dsa52c31p\",\n            \"size\": \"2258457\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"5428\",\n            \"height\": \"3619\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/h2cqt19f3p7vn8fhjdb0c8iq38/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/h2cqt19f3p7vn8fhjdb0c8iq38\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/h2cqt19f3p7vn8fhjdb0c8iq38/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/h2cqt19f3p7vn8fhjdb0c8iq38/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/h2cqt19f3p7vn8fhjdb0c8iq38/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/h2cqt19f3p7vn8fhjdb0c8iq38/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=h2cqt19f3p7vn8fhjdb0c8iq38\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/h2cqt19f3p7vn8fhjdb0c8iq38/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/h2cqt19f3p7vn8fhjdb0c8iq38/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062915000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"outdoor-gear-001.jpg\",\n            \"default\": {\n                \"Size\": \"1713767\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4356*3442 Pixels\",\n                \"Date uploaded\": \"20210105062915000\",\n                \"Date modified\": \"20210105062915000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"h2cqt19f3p7vn8fhjdb0c8iq38\",\n            \"size\": \"1713767\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"4356\",\n            \"height\": \"3442\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/gqg0hf5ecp10l9d7f47l8nlq54/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/gqg0hf5ecp10l9d7f47l8nlq54\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/gqg0hf5ecp10l9d7f47l8nlq54/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/gqg0hf5ecp10l9d7f47l8nlq54/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/gqg0hf5ecp10l9d7f47l8nlq54/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/gqg0hf5ecp10l9d7f47l8nlq54/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=gqg0hf5ecp10l9d7f47l8nlq54\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/gqg0hf5ecp10l9d7f47l8nlq54/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/gqg0hf5ecp10l9d7f47l8nlq54/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062914000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-mountain-hike-004.jpg\",\n            \"default\": {\n                \"Size\": \"2075282\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4871*3237 Pixels\",\n                \"Date uploaded\": \"20210105062914000\",\n                \"Date modified\": \"20210105062914000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"gqg0hf5ecp10l9d7f47l8nlq54\",\n            \"size\": \"2075282\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/K2842\"\n                    },\n                    \"id\": \"K2842\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/K2842\"\n                }\n            ],\n            \"width\": \"4871\",\n            \"height\": \"3237\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/gb4te6rl7h73n8236e2nsgi465/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/gb4te6rl7h73n8236e2nsgi465\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/gb4te6rl7h73n8236e2nsgi465/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/gb4te6rl7h73n8236e2nsgi465/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/gb4te6rl7h73n8236e2nsgi465/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/gb4te6rl7h73n8236e2nsgi465/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=gb4te6rl7h73n8236e2nsgi465\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/gb4te6rl7h73n8236e2nsgi465/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/gb4te6rl7h73n8236e2nsgi465/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062913000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8552-brown-rocks.jpg\",\n            \"default\": {\n                \"Size\": \"1106941\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5760*3840 Pixels\",\n                \"Date uploaded\": \"20210105062913000\",\n                \"Date modified\": \"20210105062913000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"gb4te6rl7h73n8236e2nsgi465\",\n            \"size\": \"1106941\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"5760\",\n            \"height\": \"3840\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/g1dgqq3jkl2hp1smqenv8eoq5e/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=g1dgqq3jkl2hp1smqenv8eoq5e\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/g1dgqq3jkl2hp1smqenv8eoq5e/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062911000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-grey-4512-utah.jpg\",\n            \"default\": {\n                \"Size\": \"3204622\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4495*3000 Pixels\",\n                \"Date uploaded\": \"20210105062911000\",\n                \"Date modified\": \"20210105062911000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"g1dgqq3jkl2hp1smqenv8eoq5e\",\n            \"size\": \"3204622\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/KU8U8\"\n                    },\n                    \"id\": \"KU8U8\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/KU8U8\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\n                    },\n                    \"id\": \"JARDF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"SHFO1/JARDF\"\n                }\n            ],\n            \"width\": \"4495\",\n            \"height\": \"3000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/fpdte3rh8513f6ojf0sp9l005q/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/fpdte3rh8513f6ojf0sp9l005q\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/fpdte3rh8513f6ojf0sp9l005q/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/fpdte3rh8513f6ojf0sp9l005q/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/fpdte3rh8513f6ojf0sp9l005q/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/fpdte3rh8513f6ojf0sp9l005q/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=fpdte3rh8513f6ojf0sp9l005q\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/fpdte3rh8513f6ojf0sp9l005q/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/fpdte3rh8513f6ojf0sp9l005q/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062910000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-blue-4509.jpg\",\n            \"default\": {\n                \"Size\": \"2248752\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3456*4608 Pixels\",\n                \"Date uploaded\": \"20210105062910000\",\n                \"Date modified\": \"20210105062910000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"fpdte3rh8513f6ojf0sp9l005q\",\n            \"size\": \"2248752\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/T7ALK\"\n                    },\n                    \"id\": \"T7ALK\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/T7ALK\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/KU8U8\"\n                    },\n                    \"id\": \"KU8U8\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/KU8U8\"\n                }\n            ],\n            \"width\": \"3456\",\n            \"height\": \"4608\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/f6h20aforl1v70i5n228sb4t2a/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/f6h20aforl1v70i5n228sb4t2a\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/f6h20aforl1v70i5n228sb4t2a/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/f6h20aforl1v70i5n228sb4t2a/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/f6h20aforl1v70i5n228sb4t2a/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/f6h20aforl1v70i5n228sb4t2a/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=f6h20aforl1v70i5n228sb4t2a\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/f6h20aforl1v70i5n228sb4t2a/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/f6h20aforl1v70i5n228sb4t2a/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062908000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8551-urban-fall.jpg\",\n            \"default\": {\n                \"Size\": \"4108075\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5472*3648 Pixels\",\n                \"Date uploaded\": \"20210105062908000\",\n                \"Date modified\": \"20210105062908000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"f6h20aforl1v70i5n228sb4t2a\",\n            \"size\": \"4108075\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/SB9RU\"\n                    },\n                    \"id\": \"SB9RU\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/SB9RU\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"5472\",\n            \"height\": \"3648\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/epnoj07hft395clgd3mqg7it1d/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=epnoj07hft395clgd3mqg7it1d\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/epnoj07hft395clgd3mqg7it1d/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062907000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-forest-green-4582-photographer.jpg\",\n            \"default\": {\n                \"Size\": \"1443993\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5184*2920 Pixels\",\n                \"Date uploaded\": \"20210105062907000\",\n                \"Date modified\": \"20210105062907000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"epnoj07hft395clgd3mqg7it1d\",\n            \"size\": \"1443993\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"5184\",\n            \"height\": \"2920\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/ek1fasbid5295d8nu6p6rgi406/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/ek1fasbid5295d8nu6p6rgi406\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/ek1fasbid5295d8nu6p6rgi406/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/ek1fasbid5295d8nu6p6rgi406/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/ek1fasbid5295d8nu6p6rgi406/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/ek1fasbid5295d8nu6p6rgi406/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=ek1fasbid5295d8nu6p6rgi406\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/ek1fasbid5295d8nu6p6rgi406/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/ek1fasbid5295d8nu6p6rgi406/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062905000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-black-4581-peru.jpg\",\n            \"default\": {\n                \"Size\": \"1720960\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3650*3621 Pixels\",\n                \"Date uploaded\": \"20210105062905000\",\n                \"Date modified\": \"20210105062905000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"ek1fasbid5295d8nu6p6rgi406\",\n            \"size\": \"1720960\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"3650\",\n            \"height\": \"3621\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/e0jpen6nsp1f719tb5rci4990p/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/e0jpen6nsp1f719tb5rci4990p\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/e0jpen6nsp1f719tb5rci4990p/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/e0jpen6nsp1f719tb5rci4990p/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/e0jpen6nsp1f719tb5rci4990p/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/e0jpen6nsp1f719tb5rci4990p/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=e0jpen6nsp1f719tb5rci4990p\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/e0jpen6nsp1f719tb5rci4990p/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/e0jpen6nsp1f719tb5rci4990p/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062904000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpacks-4566-with-tents.jpg\",\n            \"default\": {\n                \"Size\": \"747221\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"2031*1524 Pixels\",\n                \"Date uploaded\": \"20210105062904000\",\n                \"Date modified\": \"20210105062904000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"e0jpen6nsp1f719tb5rci4990p\",\n            \"size\": \"747221\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"2031\",\n            \"height\": \"1524\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/e089f9o5t16293rkmuqod6oe35/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/e089f9o5t16293rkmuqod6oe35\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/e089f9o5t16293rkmuqod6oe35/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/e089f9o5t16293rkmuqod6oe35/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/e089f9o5t16293rkmuqod6oe35/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/e089f9o5t16293rkmuqod6oe35/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=e089f9o5t16293rkmuqod6oe35\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/e089f9o5t16293rkmuqod6oe35/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/e089f9o5t16293rkmuqod6oe35/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062903000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-black-brown-4538-relax.jpg\",\n            \"default\": {\n                \"Size\": \"2435431\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4000*2667 Pixels\",\n                \"Date uploaded\": \"20210105062903000\",\n                \"Date modified\": \"20210105062903000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"e089f9o5t16293rkmuqod6oe35\",\n            \"size\": \"2435431\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/T7ALK\"\n                    },\n                    \"id\": \"T7ALK\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/T7ALK\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/KU8U8\"\n                    },\n                    \"id\": \"KU8U8\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/KU8U8\"\n                }\n            ],\n            \"width\": \"4000\",\n            \"height\": \"2667\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Lifestyle\",\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/dst53a6gi968f7ldaquiik0c32/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/dst53a6gi968f7ldaquiik0c32\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/dst53a6gi968f7ldaquiik0c32/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/dst53a6gi968f7ldaquiik0c32/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/dst53a6gi968f7ldaquiik0c32/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/dst53a6gi968f7ldaquiik0c32/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=dst53a6gi968f7ldaquiik0c32\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/dst53a6gi968f7ldaquiik0c32/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/dst53a6gi968f7ldaquiik0c32/LowJPG\"\n            },\n            \"tag\": [\n                \"Jacket\"\n            ],\n            \"time\": \"20210105062901000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Outerwear\"\n                ],\n                \"Product ID\": \"6565\",\n                \"Asset Type\": [\n                    \"Lifestyle\",\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"clothing-jacket-6565-rock-climbing.jpg\",\n            \"default\": {\n                \"Size\": \"5063387\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"8688*5792 Pixels\",\n                \"Date uploaded\": \"20210105062901000\",\n                \"Date modified\": \"20210105062901000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"dst53a6gi968f7ldaquiik0c32\",\n            \"size\": \"5063387\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/UT9AR\"\n                    },\n                    \"id\": \"UT9AR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/UT9AR\"\n                }\n            ],\n            \"width\": \"8688\",\n            \"height\": \"5792\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/cvdh032ch95v169to2b7bf8v0f/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/cvdh032ch95v169to2b7bf8v0f\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/cvdh032ch95v169to2b7bf8v0f/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cvdh032ch95v169to2b7bf8v0f/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cvdh032ch95v169to2b7bf8v0f/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/cvdh032ch95v169to2b7bf8v0f/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=cvdh032ch95v169to2b7bf8v0f\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/cvdh032ch95v169to2b7bf8v0f/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cvdh032ch95v169to2b7bf8v0f/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062900000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-backpack-3902.jpg\",\n            \"default\": {\n                \"Size\": \"4549016\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4000*6000 Pixels\",\n                \"Date uploaded\": \"20210105062900000\",\n                \"Date modified\": \"20210105062900000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"cvdh032ch95v169to2b7bf8v0f\",\n            \"size\": \"4549016\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"4000\",\n            \"height\": \"6000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/cto0gbga5h7et411jelup3hi4n/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/cto0gbga5h7et411jelup3hi4n\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/cto0gbga5h7et411jelup3hi4n/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cto0gbga5h7et411jelup3hi4n/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cto0gbga5h7et411jelup3hi4n/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/cto0gbga5h7et411jelup3hi4n/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=cto0gbga5h7et411jelup3hi4n\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/cto0gbga5h7et411jelup3hi4n/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cto0gbga5h7et411jelup3hi4n/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062858000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-blue-4545-with-tent.jpg\",\n            \"default\": {\n                \"Size\": \"5148727\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3264*4896 Pixels\",\n                \"Date uploaded\": \"20210105062858000\",\n                \"Date modified\": \"20210105062858000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"cto0gbga5h7et411jelup3hi4n\",\n            \"size\": \"5148727\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/KU8U8\"\n                    },\n                    \"id\": \"KU8U8\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/KU8U8\"\n                }\n            ],\n            \"width\": \"3264\",\n            \"height\": \"4896\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/cfcvf6tk7d75pbu6qmsqdtc33q/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/cfcvf6tk7d75pbu6qmsqdtc33q\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/cfcvf6tk7d75pbu6qmsqdtc33q/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cfcvf6tk7d75pbu6qmsqdtc33q/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cfcvf6tk7d75pbu6qmsqdtc33q/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/cfcvf6tk7d75pbu6qmsqdtc33q/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=cfcvf6tk7d75pbu6qmsqdtc33q\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/cfcvf6tk7d75pbu6qmsqdtc33q/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cfcvf6tk7d75pbu6qmsqdtc33q/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062857000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-7839-mountains.jpg\",\n            \"default\": {\n                \"Size\": \"3244192\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"6000*4000 Pixels\",\n                \"Date uploaded\": \"20210105062857000\",\n                \"Date modified\": \"20210105062857000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"cfcvf6tk7d75pbu6qmsqdtc33q\",\n            \"size\": \"3244192\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/SB9RU\"\n                    },\n                    \"id\": \"SB9RU\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/SB9RU\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"4000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/cddhevrbj971bb8q21us9c7p01/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/cddhevrbj971bb8q21us9c7p01\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/cddhevrbj971bb8q21us9c7p01/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cddhevrbj971bb8q21us9c7p01/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cddhevrbj971bb8q21us9c7p01/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/cddhevrbj971bb8q21us9c7p01/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=cddhevrbj971bb8q21us9c7p01\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/cddhevrbj971bb8q21us9c7p01/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/cddhevrbj971bb8q21us9c7p01/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062855000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-mountain-hike.jpg\",\n            \"default\": {\n                \"Size\": \"1884625\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4264*2136 Pixels\",\n                \"Date uploaded\": \"20210105062855000\",\n                \"Date modified\": \"20210105062855000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"cddhevrbj971bb8q21us9c7p01\",\n            \"size\": \"1884625\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"4264\",\n            \"height\": \"2136\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/c70b70k0ot4d73k2huk079g91e/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/c70b70k0ot4d73k2huk079g91e\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/c70b70k0ot4d73k2huk079g91e/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/c70b70k0ot4d73k2huk079g91e/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/c70b70k0ot4d73k2huk079g91e/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/c70b70k0ot4d73k2huk079g91e/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=c70b70k0ot4d73k2huk079g91e\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/c70b70k0ot4d73k2huk079g91e/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/c70b70k0ot4d73k2huk079g91e/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062854000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"clothing-backpack-4593.jpg\",\n            \"default\": {\n                \"Size\": \"1633814\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"6000*4000 Pixels\",\n                \"Date uploaded\": \"20210105062854000\",\n                \"Date modified\": \"20210105062854000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"c70b70k0ot4d73k2huk079g91e\",\n            \"size\": \"1633814\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/SB9RU\"\n                    },\n                    \"id\": \"SB9RU\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/SB9RU\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"4000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/bp6bveij9p24dcueprfa0fss21/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/bp6bveij9p24dcueprfa0fss21\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/bp6bveij9p24dcueprfa0fss21/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/bp6bveij9p24dcueprfa0fss21/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/bp6bveij9p24dcueprfa0fss21/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/bp6bveij9p24dcueprfa0fss21/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=bp6bveij9p24dcueprfa0fss21\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/bp6bveij9p24dcueprfa0fss21/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/bp6bveij9p24dcueprfa0fss21/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062852000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8562-gear.jpg\",\n            \"default\": {\n                \"Size\": \"2676479\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4000*5000 Pixels\",\n                \"Date uploaded\": \"20210105062852000\",\n                \"Date modified\": \"20210105062852000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"bp6bveij9p24dcueprfa0fss21\",\n            \"size\": \"2676479\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"4000\",\n            \"height\": \"5000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Company\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/b71qtk45ud11je1q8gsmpi8202/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/b71qtk45ud11je1q8gsmpi8202\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/b71qtk45ud11je1q8gsmpi8202/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/b71qtk45ud11je1q8gsmpi8202/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/b71qtk45ud11je1q8gsmpi8202/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/b71qtk45ud11je1q8gsmpi8202/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=b71qtk45ud11je1q8gsmpi8202\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/b71qtk45ud11je1q8gsmpi8202/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/b71qtk45ud11je1q8gsmpi8202/LowJPG\"\n            },\n            \"tag\": [\n                \"Campaign\",\n                \"Cushion\",\n                \"Gate\",\n                \"Great Outdoors\",\n                \"Logo\",\n                \"Pillow\",\n                \"Retail\",\n                \"logo\"\n            ],\n            \"time\": \"20210105062851000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"great-outdoors-logo-crop.png\",\n            \"default\": {\n                \"Size\": \"32195\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"383*140 Pixels\",\n                \"Date uploaded\": \"20210105062851000\",\n                \"Date modified\": \"20210105062851000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": null,\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"b71qtk45ud11je1q8gsmpi8202\",\n            \"size\": \"32195\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"description\": \"Great Outdoors Go logo\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OLPCR\"\n                    },\n                    \"id\": \"OLPCR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/OLPCR\"\n                }\n            ],\n            \"width\": \"383\",\n            \"height\": \"140\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/b2trlugn2d6rj4tr1a6k5q5u1c/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/b2trlugn2d6rj4tr1a6k5q5u1c\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/b2trlugn2d6rj4tr1a6k5q5u1c/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/b2trlugn2d6rj4tr1a6k5q5u1c/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/b2trlugn2d6rj4tr1a6k5q5u1c/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/b2trlugn2d6rj4tr1a6k5q5u1c/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=b2trlugn2d6rj4tr1a6k5q5u1c\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/b2trlugn2d6rj4tr1a6k5q5u1c/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/b2trlugn2d6rj4tr1a6k5q5u1c/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062850000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-grey-4511-train.jpg\",\n            \"default\": {\n                \"Size\": \"1439876\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4896*3264 Pixels\",\n                \"Date uploaded\": \"20210105062850000\",\n                \"Date modified\": \"20210105062850000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"b2trlugn2d6rj4tr1a6k5q5u1c\",\n            \"size\": \"1439876\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/KU8U8\"\n                    },\n                    \"id\": \"KU8U8\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/KU8U8\"\n                }\n            ],\n            \"width\": \"4896\",\n            \"height\": \"3264\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/8tcbcdjuv53n7crh23k7g1jv2o/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/8tcbcdjuv53n7crh23k7g1jv2o\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/8tcbcdjuv53n7crh23k7g1jv2o/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/8tcbcdjuv53n7crh23k7g1jv2o/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/8tcbcdjuv53n7crh23k7g1jv2o/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/8tcbcdjuv53n7crh23k7g1jv2o/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=8tcbcdjuv53n7crh23k7g1jv2o\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/8tcbcdjuv53n7crh23k7g1jv2o/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/8tcbcdjuv53n7crh23k7g1jv2o/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062848000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-orange-4506-mountain.jpg\",\n            \"default\": {\n                \"Size\": \"2779888\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5000*3335 Pixels\",\n                \"Date uploaded\": \"20210105062848000\",\n                \"Date modified\": \"20210105062848000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"8tcbcdjuv53n7crh23k7g1jv2o\",\n            \"size\": \"2779888\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"5000\",\n            \"height\": \"3335\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/87k6lfb6c11itf7347b3jso112/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/87k6lfb6c11itf7347b3jso112\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/87k6lfb6c11itf7347b3jso112/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/87k6lfb6c11itf7347b3jso112/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/87k6lfb6c11itf7347b3jso112/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/87k6lfb6c11itf7347b3jso112/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=87k6lfb6c11itf7347b3jso112\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/87k6lfb6c11itf7347b3jso112/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/87k6lfb6c11itf7347b3jso112/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062847000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-waterfall-003.jpg\",\n            \"default\": {\n                \"Size\": \"1733445\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"1982*2477 Pixels\",\n                \"Date uploaded\": \"20210105062847000\",\n                \"Date modified\": \"20210105062847000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"87k6lfb6c11itf7347b3jso112\",\n            \"size\": \"1733445\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"1982\",\n            \"height\": \"2477\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/81pl6k64350nf4p68ba1a2d948/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/81pl6k64350nf4p68ba1a2d948\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/81pl6k64350nf4p68ba1a2d948/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/81pl6k64350nf4p68ba1a2d948/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/81pl6k64350nf4p68ba1a2d948/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/81pl6k64350nf4p68ba1a2d948/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=81pl6k64350nf4p68ba1a2d948\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/81pl6k64350nf4p68ba1a2d948/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/81pl6k64350nf4p68ba1a2d948/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062845000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8555-brown-view.jpg\",\n            \"default\": {\n                \"Size\": \"3049604\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4652*3361 Pixels\",\n                \"Date uploaded\": \"20210105062845000\",\n                \"Date modified\": \"20210105062845000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"81pl6k64350nf4p68ba1a2d948\",\n            \"size\": \"3049604\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"4652\",\n            \"height\": \"3361\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Company\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/7up0o81mml7218hkkl1cp69p08/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/7up0o81mml7218hkkl1cp69p08\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/7up0o81mml7218hkkl1cp69p08/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7up0o81mml7218hkkl1cp69p08/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7up0o81mml7218hkkl1cp69p08/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/7up0o81mml7218hkkl1cp69p08/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=7up0o81mml7218hkkl1cp69p08\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/7up0o81mml7218hkkl1cp69p08/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7up0o81mml7218hkkl1cp69p08/LowJPG\"\n            },\n            \"tag\": [\n                \"Campaign\",\n                \"Great Outdoors\",\n                \"Logo\",\n                \"Retail\",\n                \"Steering Wheel\",\n                \"logo\"\n            ],\n            \"time\": \"20210105062844000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"great-outdoors-icon-crop.png\",\n            \"default\": {\n                \"Size\": \"11730\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"132*132 Pixels\",\n                \"Date uploaded\": \"20210105062844000\",\n                \"Date modified\": \"20210105062844000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": null,\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"7up0o81mml7218hkkl1cp69p08\",\n            \"size\": \"11730\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"description\": \"Great Outdoors Go logo\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OLPCR\"\n                    },\n                    \"id\": \"OLPCR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/OLPCR\"\n                }\n            ],\n            \"width\": \"132\",\n            \"height\": \"132\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/7uf33sdjm56g13dnamoet07s6v/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/7uf33sdjm56g13dnamoet07s6v\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/7uf33sdjm56g13dnamoet07s6v/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7uf33sdjm56g13dnamoet07s6v/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7uf33sdjm56g13dnamoet07s6v/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/7uf33sdjm56g13dnamoet07s6v/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=7uf33sdjm56g13dnamoet07s6v\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/7uf33sdjm56g13dnamoet07s6v/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7uf33sdjm56g13dnamoet07s6v/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062843000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-green-4510-winter.jpg\",\n            \"default\": {\n                \"Size\": \"3299706\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4000*6000 Pixels\",\n                \"Date uploaded\": \"20210105062843000\",\n                \"Date modified\": \"20210105062843000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"7uf33sdjm56g13dnamoet07s6v\",\n            \"size\": \"3299706\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"4000\",\n            \"height\": \"6000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/7qnkosfm9t59bfjves8ipnes63/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/7qnkosfm9t59bfjves8ipnes63\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/7qnkosfm9t59bfjves8ipnes63/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7qnkosfm9t59bfjves8ipnes63/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7qnkosfm9t59bfjves8ipnes63/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/7qnkosfm9t59bfjves8ipnes63/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=7qnkosfm9t59bfjves8ipnes63\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/7qnkosfm9t59bfjves8ipnes63/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7qnkosfm9t59bfjves8ipnes63/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062842000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-lake-view-man.jpg\",\n            \"default\": {\n                \"Size\": \"2973098\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4853*2730 Pixels\",\n                \"Date uploaded\": \"20210105062842000\",\n                \"Date modified\": \"20210105062842000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"7qnkosfm9t59bfjves8ipnes63\",\n            \"size\": \"2973098\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"4853\",\n            \"height\": \"2730\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/7h0uts0h1d607e8k6ok8jr3r3e/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/7h0uts0h1d607e8k6ok8jr3r3e\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/7h0uts0h1d607e8k6ok8jr3r3e/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7h0uts0h1d607e8k6ok8jr3r3e/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7h0uts0h1d607e8k6ok8jr3r3e/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/7h0uts0h1d607e8k6ok8jr3r3e/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=7h0uts0h1d607e8k6ok8jr3r3e\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/7h0uts0h1d607e8k6ok8jr3r3e/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/7h0uts0h1d607e8k6ok8jr3r3e/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062840000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-7459-sky-blue.jpg\",\n            \"default\": {\n                \"Size\": \"4206783\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3012*5363 Pixels\",\n                \"Date uploaded\": \"20210105062840000\",\n                \"Date modified\": \"20210105062840000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"7h0uts0h1d607e8k6ok8jr3r3e\",\n            \"size\": \"4206783\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"3012\",\n            \"height\": \"5363\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/6mbsbcka853ivc6qh8jbni0o78/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/6mbsbcka853ivc6qh8jbni0o78\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/6mbsbcka853ivc6qh8jbni0o78/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6mbsbcka853ivc6qh8jbni0o78/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6mbsbcka853ivc6qh8jbni0o78/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/6mbsbcka853ivc6qh8jbni0o78/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=6mbsbcka853ivc6qh8jbni0o78\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/6mbsbcka853ivc6qh8jbni0o78/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6mbsbcka853ivc6qh8jbni0o78/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062839000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-4516-4517-couple.jpg\",\n            \"default\": {\n                \"Size\": \"1322316\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4256*2832 Pixels\",\n                \"Date uploaded\": \"20210105062839000\",\n                \"Date modified\": \"20210105062839000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"6mbsbcka853ivc6qh8jbni0o78\",\n            \"size\": \"1322316\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"4256\",\n            \"height\": \"2832\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Lifestyle\",\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/6f4glka9qd70raurcrd4h1bf5u/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/6f4glka9qd70raurcrd4h1bf5u\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/6f4glka9qd70raurcrd4h1bf5u/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6f4glka9qd70raurcrd4h1bf5u/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6f4glka9qd70raurcrd4h1bf5u/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/6f4glka9qd70raurcrd4h1bf5u/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=6f4glka9qd70raurcrd4h1bf5u\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/6f4glka9qd70raurcrd4h1bf5u/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6f4glka9qd70raurcrd4h1bf5u/LowJPG\"\n            },\n            \"tag\": [\n                \"Clothing\"\n            ],\n            \"time\": \"20210105062837000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"backpack-5694-yosemite.jpg\",\n            \"default\": {\n                \"Size\": \"3898917\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5184*3456 Pixels\",\n                \"Date uploaded\": \"20210105062837000\",\n                \"Date modified\": \"20210105062837000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"Hewlett-Packard\",\n                \"Date Created\": \"2019-12-18 23:33:08\",\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"6f4glka9qd70raurcrd4h1bf5u\",\n            \"size\": \"3898917\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/UT9AR\"\n                    },\n                    \"id\": \"UT9AR\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/UT9AR\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"5184\",\n            \"height\": \"3456\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/6913667psh2up1c1ac834jrc2r/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/6913667psh2up1c1ac834jrc2r\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/6913667psh2up1c1ac834jrc2r/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6913667psh2up1c1ac834jrc2r/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6913667psh2up1c1ac834jrc2r/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/6913667psh2up1c1ac834jrc2r/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=6913667psh2up1c1ac834jrc2r\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/6913667psh2up1c1ac834jrc2r/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/6913667psh2up1c1ac834jrc2r/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062836000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-mini-colors-4562-utah.jpg\",\n            \"default\": {\n                \"Size\": \"3090125\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3840*5760 Pixels\",\n                \"Date uploaded\": \"20210105062836000\",\n                \"Date modified\": \"20210105062836000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"6913667psh2up1c1ac834jrc2r\",\n            \"size\": \"3090125\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"3840\",\n            \"height\": \"5760\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/5pbsjb0fct083d59fp42tr4k37/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/5pbsjb0fct083d59fp42tr4k37\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/5pbsjb0fct083d59fp42tr4k37/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/5pbsjb0fct083d59fp42tr4k37/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/5pbsjb0fct083d59fp42tr4k37/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/5pbsjb0fct083d59fp42tr4k37/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=5pbsjb0fct083d59fp42tr4k37\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/5pbsjb0fct083d59fp42tr4k37/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/5pbsjb0fct083d59fp42tr4k37/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062834000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-maroon-4569-tropics.jpg\",\n            \"default\": {\n                \"Size\": \"5198291\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"7360*4912 Pixels\",\n                \"Date uploaded\": \"20210105062834000\",\n                \"Date modified\": \"20210105062834000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"5pbsjb0fct083d59fp42tr4k37\",\n            \"size\": \"5198291\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"7360\",\n            \"height\": \"4912\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/5mtirq4ut1239cn8nmfia3ng3n/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/5mtirq4ut1239cn8nmfia3ng3n\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/5mtirq4ut1239cn8nmfia3ng3n/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/5mtirq4ut1239cn8nmfia3ng3n/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/5mtirq4ut1239cn8nmfia3ng3n/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/5mtirq4ut1239cn8nmfia3ng3n/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=5mtirq4ut1239cn8nmfia3ng3n\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/5mtirq4ut1239cn8nmfia3ng3n/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/5mtirq4ut1239cn8nmfia3ng3n/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\",\n                \"Fall\"\n            ],\n            \"time\": \"20210105062833000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-walking-on-path.jpg\",\n            \"default\": {\n                \"Size\": \"5950954\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"6000*3376 Pixels\",\n                \"Date uploaded\": \"20210105062833000\",\n                \"Date modified\": \"20210105062833000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"5mtirq4ut1239cn8nmfia3ng3n\",\n            \"size\": \"5950954\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/SB9RU\"\n                    },\n                    \"id\": \"SB9RU\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/SB9RU\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"3376\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/54ft9n80nd0p76s3bfqpse7037/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/54ft9n80nd0p76s3bfqpse7037\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/54ft9n80nd0p76s3bfqpse7037/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/54ft9n80nd0p76s3bfqpse7037/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/54ft9n80nd0p76s3bfqpse7037/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/54ft9n80nd0p76s3bfqpse7037/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=54ft9n80nd0p76s3bfqpse7037\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/54ft9n80nd0p76s3bfqpse7037/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/54ft9n80nd0p76s3bfqpse7037/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062831000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8556-sunrise.jpg\",\n            \"default\": {\n                \"Size\": \"2633054\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3276*4096 Pixels\",\n                \"Date uploaded\": \"20210105062831000\",\n                \"Date modified\": \"20210105062831000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"54ft9n80nd0p76s3bfqpse7037\",\n            \"size\": \"2633054\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"3276\",\n            \"height\": \"4096\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/4t7mlrglrh4ur7h9dojppgq502/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=4t7mlrglrh4ur7h9dojppgq502\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/4t7mlrglrh4ur7h9dojppgq502/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062829000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-grey-4536-sunrise.jpg\",\n            \"default\": {\n                \"Size\": \"6864968\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"7606*5073 Pixels\",\n                \"Date uploaded\": \"20210105062829000\",\n                \"Date modified\": \"20210105062829000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"4t7mlrglrh4ur7h9dojppgq502\",\n            \"size\": \"6864968\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\n                    },\n                    \"id\": \"JARDF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"SHFO1/JARDF\"\n                }\n            ],\n            \"width\": \"7606\",\n            \"height\": \"5073\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/3r3elicpht2gl49e7epvttja58/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/3r3elicpht2gl49e7epvttja58\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/3r3elicpht2gl49e7epvttja58/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/3r3elicpht2gl49e7epvttja58/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/3r3elicpht2gl49e7epvttja58/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/3r3elicpht2gl49e7epvttja58/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=3r3elicpht2gl49e7epvttja58\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/3r3elicpht2gl49e7epvttja58/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/3r3elicpht2gl49e7epvttja58/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062827000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-snow-sunny.jpg\",\n            \"default\": {\n                \"Size\": \"1638720\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3000*2000 Pixels\",\n                \"Date uploaded\": \"20210105062827000\",\n                \"Date modified\": \"20210105062827000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"3r3elicpht2gl49e7epvttja58\",\n            \"size\": \"1638720\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/HSR4O\"\n                    },\n                    \"id\": \"HSR4O\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/HSR4O\"\n                }\n            ],\n            \"width\": \"3000\",\n            \"height\": \"2000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/3cj322onap4f31bikudj7s9l6g/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/3cj322onap4f31bikudj7s9l6g\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/3cj322onap4f31bikudj7s9l6g/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/3cj322onap4f31bikudj7s9l6g/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/3cj322onap4f31bikudj7s9l6g/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/3cj322onap4f31bikudj7s9l6g/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=3cj322onap4f31bikudj7s9l6g\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/3cj322onap4f31bikudj7s9l6g/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/3cj322onap4f31bikudj7s9l6g/LowJPG\"\n            },\n            \"tag\": [\n                \"Autumn\",\n                \"Photoshop\"\n            ],\n            \"time\": \"20210105062825000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-fall-path.psd\",\n            \"default\": {\n                \"Size\": \"58268564\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"6000*3376 Pixels\",\n                \"Date uploaded\": \"20210105062825000\",\n                \"Date modified\": \"20210105062825000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"Hewlett-Packard\",\n                \"Date Created\": \"2019-12-12 14:02:33\",\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"3cj322onap4f31bikudj7s9l6g\",\n            \"size\": \"58268564\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/Q3PLU\"\n                    },\n                    \"id\": \"Q3PLU\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/Q3PLU\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"3376\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/34ihp8sofp2915g42uoi3qgv40/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=34ihp8sofp2915g42uoi3qgv40\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/34ihp8sofp2915g42uoi3qgv40/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/34ihp8sofp2915g42uoi3qgv40/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062822000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8560-hammock.jpg\",\n            \"default\": {\n                \"Size\": \"1334090\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3335*5000 Pixels\",\n                \"Date uploaded\": \"20210105062822000\",\n                \"Date modified\": \"20210105062822000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"34ihp8sofp2915g42uoi3qgv40\",\n            \"size\": \"1334090\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"3335\",\n            \"height\": \"5000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/33jm9on7s16l32lnounv9tbo62/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=33jm9on7s16l32lnounv9tbo62\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/33jm9on7s16l32lnounv9tbo62/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062820000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-hammock.jpg\",\n            \"default\": {\n                \"Size\": \"1438331\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"2288*1520 Pixels\",\n                \"Date uploaded\": \"20210105062820000\",\n                \"Date modified\": \"20210105062820000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"33jm9on7s16l32lnounv9tbo62\",\n            \"size\": \"1438331\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/Q7OS4\"\n                    },\n                    \"id\": \"Q7OS4\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5/Q7OS4\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"2288\",\n            \"height\": \"1520\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/25og7ksvv112n65bmktpus6e41/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/25og7ksvv112n65bmktpus6e41\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/25og7ksvv112n65bmktpus6e41/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/25og7ksvv112n65bmktpus6e41/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/25og7ksvv112n65bmktpus6e41/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/25og7ksvv112n65bmktpus6e41/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=25og7ksvv112n65bmktpus6e41\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/25og7ksvv112n65bmktpus6e41/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/25og7ksvv112n65bmktpus6e41/LowJPG\"\n            },\n            \"tag\": [\n                \"hiking shoes\"\n            ],\n            \"time\": \"20210105062819000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"hiking-shoes-8550-leaves.jpg\",\n            \"default\": {\n                \"Size\": \"2369653\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"6000*4000 Pixels\",\n                \"Date uploaded\": \"20210105062819000\",\n                \"Date modified\": \"20210105062819000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"25og7ksvv112n65bmktpus6e41\",\n            \"size\": \"2369653\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/OPOJ1\"\n                    },\n                    \"id\": \"OPOJ1\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/OPOJ1\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"4000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/1q32u4ueld6s5394f9aidq2q49/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=1q32u4ueld6s5394f9aidq2q49\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/1q32u4ueld6s5394f9aidq2q49/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1q32u4ueld6s5394f9aidq2q49/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062817000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-grey-orange-4541-snow.jpg\",\n            \"default\": {\n                \"Size\": \"3691210\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4000*6000 Pixels\",\n                \"Date uploaded\": \"20210105062817000\",\n                \"Date modified\": \"20210105062817000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"1q32u4ueld6s5394f9aidq2q49\",\n            \"size\": \"3691210\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"4000\",\n            \"height\": \"6000\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Unkeyworded\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/1k54q0ppip5gnbmtqi1ep7fi76/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=1k54q0ppip5gnbmtqi1ep7fi76\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/1k54q0ppip5gnbmtqi1ep7fi76/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/LowJPG\"\n            },\n            \"tag\": [\n                \"Lato font\"\n            ],\n            \"time\": \"20210105062816000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"Lato Font Sample.png\",\n            \"default\": {\n                \"Size\": \"96911\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"1398*508 Pixels\",\n                \"Date uploaded\": \"20210105062816000\",\n                \"Date modified\": \"20210105062816000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"appl\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"144.0\"\n            },\n            \"id\": \"1k54q0ppip5gnbmtqi1ep7fi76\",\n            \"size\": \"96911\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/VPA4H\"\n                    },\n                    \"id\": \"VPA4H\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/VPA4H\"\n                }\n            ],\n            \"width\": \"1398\",\n            \"height\": \"508\",\n            \"dpi\": \"144.0\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Company\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/1dakfh4e9h3sfb57dpimr06j6t/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=1dakfh4e9h3sfb57dpimr06j6t\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/1dakfh4e9h3sfb57dpimr06j6t/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/1dakfh4e9h3sfb57dpimr06j6t/LowJPG\"\n            },\n            \"tag\": [\n                \"Accessories\",\n                \"Accessory\",\n                \"Brochure\",\n                \"Canto\",\n                \"Face\",\n                \"Female\",\n                \"Girl\",\n                \"Glasses\",\n                \"Hair\",\n                \"Human\",\n                \"MarTech Event\",\n                \"Person\",\n                \"Sitting\"\n            ],\n            \"time\": \"20210105062814000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"Canto-Martech-Coffee-Front.ai\",\n            \"default\": {\n                \"Size\": \"30631212\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"630*810 Pixels\",\n                \"Date uploaded\": \"20210105062814000\",\n                \"Date modified\": \"20210105062814000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"Adobe Illustrator(R) 16.0\",\n                \"Date Created\": \"2018-04-02 09:48:40\",\n                \"Creation Tool\": null,\n                \"Resolution\": null\n            },\n            \"id\": \"1dakfh4e9h3sfb57dpimr06j6t\",\n            \"size\": \"30631212\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"description\": \"Canto-Milk-Sugar-Front\\nAdobe Illustrator File\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LQ9NI\"\n                    },\n                    \"id\": \"LQ9NI\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"G4T0V/LQ9NI\"\n                }\n            ],\n            \"width\": \"630\",\n            \"height\": \"810\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Campaign\",\n                \"Lifestyle\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/155pgtpg2h6l31ao2i7buhmv2a/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=155pgtpg2h6l31ao2i7buhmv2a\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/155pgtpg2h6l31ao2i7buhmv2a/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/155pgtpg2h6l31ao2i7buhmv2a/LowJPG\"\n            },\n            \"tag\": [\n                \"Great Outdoors Go\",\n                \"lifestyle\"\n            ],\n            \"time\": \"20210105062811000\",\n            \"additional\": {\n                \"Product ID\": null,\n                \"Rating\": null\n            },\n            \"name\": \"lifestyle-arches.jpg\",\n            \"default\": {\n                \"Size\": \"11480774\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5304*7952 Pixels\",\n                \"Date uploaded\": \"20210105062811000\",\n                \"Date modified\": \"20210105062811000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"155pgtpg2h6l31ao2i7buhmv2a\",\n            \"size\": \"11480774\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/MG8D5\"\n                    },\n                    \"id\": \"MG8D5\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE/MG8D5\"\n                }\n            ],\n            \"width\": \"5304\",\n            \"height\": \"7952\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/14j5kd7n916sba6dsq3h9rtq4k/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=14j5kd7n916sba6dsq3h9rtq4k\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/14j5kd7n916sba6dsq3h9rtq4k/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/14j5kd7n916sba6dsq3h9rtq4k/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062810000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-black-4570-coat.jpg\",\n            \"default\": {\n                \"Size\": \"3228775\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"5616*3744 Pixels\",\n                \"Date uploaded\": \"20210105062810000\",\n                \"Date modified\": \"20210105062810000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"14j5kd7n916sba6dsq3h9rtq4k\",\n            \"size\": \"3228775\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"5616\",\n            \"height\": \"3744\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/0eemvurtv14p3edsv71b57sj2v/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=0eemvurtv14p3edsv71b57sj2v\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/0eemvurtv14p3edsv71b57sj2v/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/0eemvurtv14p3edsv71b57sj2v/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062808000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-yellow-4522-meadow.jpg\",\n            \"default\": {\n                \"Size\": \"5455296\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4926*3274 Pixels\",\n                \"Date uploaded\": \"20210105062808000\",\n                \"Date modified\": \"20210105062808000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"0eemvurtv14p3edsv71b57sj2v\",\n            \"size\": \"5455296\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                }\n            ],\n            \"width\": \"4926\",\n            \"height\": \"3274\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/032vhl3gh160d2kvf6s4353063/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=032vhl3gh160d2kvf6s4353063\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/032vhl3gh160d2kvf6s4353063/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"time\": \"20210105062807000\",\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-orange-3200-woman.jpg\",\n            \"default\": {\n                \"Size\": \"1064389\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"2448*3264 Pixels\",\n                \"Date uploaded\": \"20210105062807000\",\n                \"Date modified\": \"20210105062807000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"032vhl3gh160d2kvf6s4353063\",\n            \"size\": \"1064389\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\n                    },\n                    \"id\": \"JARDF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"SHFO1/JARDF\"\n                }\n            ],\n            \"width\": \"2448\",\n            \"height\": \"3264\",\n            \"dpi\": \"72\",\n            \"approvalStatus\": \"Approved\",\n            \"ownerName\": \"Canto Support\"\n        }\n    ]\n}"}],"_postman_id":"7f9bf2bb-ee8f-4065-8add-4c5f5810d30f"},{"name":"Get full library tree view","event":[{"listen":"test","script":{"id":"a9638bd0-8d42-42d9-8d4f-f26b84ce8687","exec":["var jsonData = JSON.parse(responseBody);","","pm.environment.unset(\"folderId\")","pm.environment.unset(\"albumId\")","","var folderId = null","var albumId = null","for (i=0; i < jsonData.results.length; ++i) {","    var currentResult = jsonData.results[i];","    if(currentResult.scheme == \"folder\") {","        folderId = currentResult.id","    } else if (currentResult.scheme == \"album\") {","        albumId = currentResult.id","    }","","    if(albumId != null && folderId != null) {","        break","    }","}","","pm.environment.set(\"albumId\", albumId)","pm.environment.set(\"folderId\", folderId)"],"type":"text/javascript"}}],"id":"63f90a9c-ae14-489f-a6bf-0a7a0dab6d58","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/tree?sortBy=time&sortDirection=ascending&layer=-1","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 3</em></a></p>\n<p>Get the whole tree. There’s no pagination option, if you don’t specify the layer parameter, you will get the whole tree info including each folder and each album.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","tree"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>name, time, scheme, owner, size.</p>\n<p>Default: time.</p>\n","type":"text/plain"},"key":"sortBy","value":"time"},{"description":{"content":"<p>\"ascending\" or \"descending\"</p>\n","type":"text/plain"},"key":"sortDirection","value":"ascending"},{"description":{"content":"<p>Maximum depth number of the folder or album items to be returned.</p>\n<p>Default: -1 (which means no limit.)</p>\n","type":"text/plain"},"key":"layer","value":"-1"}],"variable":[]}},"response":[{"id":"ddf507bf-b1d9-468a-bc13-d01e982914a0","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/tree?sortBy=time&sortDirection=ascending&layer=-1","host":["{{SITE_BASEURL}}"],"path":["api","v1","tree"],"query":[{"key":"sortBy","value":"time","description":"name, time, scheme, owner, size.\n\nDefault: time."},{"key":"sortDirection","value":"ascending","description":"\"ascending\" or \"descending\""},{"key":"layer","value":"-1","description":"Maximum depth number of the folder or album items to be returned.\n\nDefault: -1 (which means no limit.)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 06 Jan 2021 14:47:08 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Tue, 05-Jan-2021 14:47:07 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"sortBy\": \"time\",\n    \"sortDirection\": \"ascending\",\n    \"results\": [\n        {\n            \"time\": \"20210105062804970\",\n            \"name\": \"Canto\",\n            \"id\": \"G4T0V\",\n            \"size\": \"2\",\n            \"scheme\": \"folder\",\n            \"owner\": \"trothenpieler@canto.com\",\n            \"children\": [\n                {\n                    \"time\": \"20210105062805180\",\n                    \"name\": \"Welcome to Canto\",\n                    \"id\": \"LQ9NI\",\n                    \"size\": \"5\",\n                    \"scheme\": \"album\",\n                    \"owner\": \"trothenpieler@canto.com\",\n                    \"url\": {\n                        \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/document/1jlb21c43146d9ot9uopavle0t/preview\",\n                        \"detail\": \"https://yourcantoname.canto.com/album/LQ9NI\"\n                    },\n                    \"created\": \"20210105062805180\",\n                    \"width\": \"2550\",\n                    \"height\": \"3300\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"G4T0V/LQ9NI\",\n                    \"namePath\": \"Canto/Welcome to Canto\",\n                    \"ownerName\": \"Thorsten Rothenpieler\"\n                },\n                {\n                    \"time\": \"20210105062805655\",\n                    \"name\": \"Canto Tutorials\",\n                    \"id\": \"N8A8I\",\n                    \"size\": \"4\",\n                    \"scheme\": \"album\",\n                    \"owner\": \"trothenpieler@canto.com\",\n                    \"url\": {\n                        \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/video/inkh5apk3p6n38ktj39o35937a/preview\",\n                        \"detail\": \"https://yourcantoname.canto.com/album/N8A8I\"\n                    },\n                    \"created\": \"20210105062805655\",\n                    \"width\": \"1280\",\n                    \"height\": \"800\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"G4T0V/N8A8I\",\n                    \"namePath\": \"Canto/Canto Tutorials\",\n                    \"ownerName\": \"Thorsten Rothenpieler\"\n                }\n            ],\n            \"url\": {\n                \"detail\": \"https://yourcantoname.canto.com/folder/G4T0V\"\n            },\n            \"created\": \"20210105062804970\",\n            \"width\": \"0\",\n            \"height\": \"0\",\n            \"dpi\": \"72\",\n            \"idPath\": \"G4T0V\",\n            \"namePath\": \"Canto\",\n            \"ownerName\": \"Thorsten Rothenpieler\"\n        },\n        {\n            \"time\": \"20210105062805002\",\n            \"name\": \"Great Outdoors Go\",\n            \"id\": \"N8DOL\",\n            \"size\": \"3\",\n            \"scheme\": \"folder\",\n            \"owner\": \"trothenpieler@canto.com\",\n            \"children\": [\n                {\n                    \"time\": \"20210105062805074\",\n                    \"name\": \"Branding GOG\",\n                    \"id\": \"T3BFE\",\n                    \"size\": \"3\",\n                    \"scheme\": \"folder\",\n                    \"owner\": \"trothenpieler@canto.com\",\n                    \"children\": [\n                        {\n                            \"time\": \"20210105062805337\",\n                            \"name\": \"GOG Lifestyle Visuals\",\n                            \"id\": \"MG8D5\",\n                            \"size\": \"19\",\n                            \"scheme\": \"album\",\n                            \"owner\": \"trothenpieler@canto.com\",\n                            \"url\": {\n                                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/c70b70k0ot4d73k2huk079g91e/preview\",\n                                \"detail\": \"https://yourcantoname.canto.com/album/MG8D5\"\n                            },\n                            \"created\": \"20210105062805337\",\n                            \"width\": \"6000\",\n                            \"height\": \"4000\",\n                            \"dpi\": \"72\",\n                            \"idPath\": \"N8DOL/T3BFE/MG8D5\",\n                            \"namePath\": \"Great Outdoors Go/Branding GOG/GOG Lifestyle Visuals\",\n                            \"ownerName\": \"Thorsten Rothenpieler\"\n                        },\n                        {\n                            \"time\": \"20210105062805361\",\n                            \"name\": \"GOG Logos\",\n                            \"id\": \"OLPCR\",\n                            \"size\": \"3\",\n                            \"scheme\": \"album\",\n                            \"owner\": \"trothenpieler@canto.com\",\n                            \"url\": {\n                                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/7up0o81mml7218hkkl1cp69p08/preview\",\n                                \"detail\": \"https://yourcantoname.canto.com/album/OLPCR\"\n                            },\n                            \"created\": \"20210105062805361\",\n                            \"width\": \"132\",\n                            \"height\": \"132\",\n                            \"dpi\": \"72\",\n                            \"idPath\": \"N8DOL/T3BFE/OLPCR\",\n                            \"namePath\": \"Great Outdoors Go/Branding GOG/GOG Logos\",\n                            \"ownerName\": \"Thorsten Rothenpieler\"\n                        },\n                        {\n                            \"time\": \"20210105062805415\",\n                            \"name\": \"Fonts\",\n                            \"id\": \"VPA4H\",\n                            \"size\": \"2\",\n                            \"scheme\": \"album\",\n                            \"owner\": \"trothenpieler@canto.com\",\n                            \"url\": {\n                                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/1k54q0ppip5gnbmtqi1ep7fi76/preview\",\n                                \"detail\": \"https://yourcantoname.canto.com/album/VPA4H\"\n                            },\n                            \"created\": \"20210105062805415\",\n                            \"width\": \"1398\",\n                            \"height\": \"508\",\n                            \"dpi\": \"72\",\n                            \"idPath\": \"N8DOL/T3BFE/VPA4H\",\n                            \"namePath\": \"Great Outdoors Go/Branding GOG/Fonts\",\n                            \"ownerName\": \"Thorsten Rothenpieler\"\n                        }\n                    ],\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/folder/T3BFE\"\n                    },\n                    \"created\": \"20210105062805074\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/T3BFE\",\n                    \"namePath\": \"Great Outdoors Go/Branding GOG\",\n                    \"ownerName\": \"Thorsten Rothenpieler\"\n                },\n                {\n                    \"time\": \"20210105062805113\",\n                    \"name\": \"Great Outdoors Campaigns\",\n                    \"id\": \"G8OF5\",\n                    \"size\": \"4\",\n                    \"scheme\": \"folder\",\n                    \"owner\": \"trothenpieler@canto.com\",\n                    \"children\": [\n                        {\n                            \"time\": \"20210105062805456\",\n                            \"name\": \"Winter\",\n                            \"id\": \"HSR4O\",\n                            \"size\": \"3\",\n                            \"scheme\": \"album\",\n                            \"owner\": \"trothenpieler@canto.com\",\n                            \"url\": {\n                                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/nanq62jn2p6hje8b86h6f84m3a/preview\",\n                                \"detail\": \"https://yourcantoname.canto.com/album/HSR4O\"\n                            },\n                            \"created\": \"20210105062805456\",\n                            \"width\": \"5184\",\n                            \"height\": \"3456\",\n                            \"dpi\": \"72\",\n                            \"idPath\": \"N8DOL/G8OF5/HSR4O\",\n                            \"namePath\": \"Great Outdoors Go/Great Outdoors Campaigns/Winter\",\n                            \"ownerName\": \"Thorsten Rothenpieler\"\n                        },\n                        {\n                            \"time\": \"20210105062805486\",\n                            \"name\": \"Spring\",\n                            \"id\": \"K2842\",\n                            \"size\": \"2\",\n                            \"scheme\": \"album\",\n                            \"owner\": \"trothenpieler@canto.com\",\n                            \"url\": {\n                                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/p74am1pqa17fd8oe541ekihu46/preview\",\n                                \"detail\": \"https://yourcantoname.canto.com/album/K2842\"\n                            },\n                            \"created\": \"20210105062805486\",\n                            \"width\": \"4928\",\n                            \"height\": \"3043\",\n                            \"dpi\": \"72\",\n                            \"idPath\": \"N8DOL/G8OF5/K2842\",\n                            \"namePath\": \"Great Outdoors Go/Great Outdoors Campaigns/Spring\",\n                            \"ownerName\": \"Thorsten Rothenpieler\"\n                        },\n                        {\n                            \"time\": \"20210105062805519\",\n                            \"name\": \"Summer\",\n                            \"id\": \"Q7OS4\",\n                            \"size\": \"4\",\n                            \"scheme\": \"album\",\n                            \"owner\": \"trothenpieler@canto.com\",\n                            \"url\": {\n                                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/33jm9on7s16l32lnounv9tbo62/preview\",\n                                \"detail\": \"https://yourcantoname.canto.com/album/Q7OS4\"\n                            },\n                            \"created\": \"20210105062805519\",\n                            \"width\": \"2288\",\n                            \"height\": \"1520\",\n                            \"dpi\": \"72\",\n                            \"idPath\": \"N8DOL/G8OF5/Q7OS4\",\n                            \"namePath\": \"Great Outdoors Go/Great Outdoors Campaigns/Summer\",\n                            \"ownerName\": \"Thorsten Rothenpieler\"\n                        },\n                        {\n                            \"time\": \"20210105062805545\",\n                            \"name\": \"Fall\",\n                            \"id\": \"SB9RU\",\n                            \"size\": \"5\",\n                            \"scheme\": \"album\",\n                            \"owner\": \"trothenpieler@canto.com\",\n                            \"url\": {\n                                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/5mtirq4ut1239cn8nmfia3ng3n/preview\",\n                                \"detail\": \"https://yourcantoname.canto.com/album/SB9RU\"\n                            },\n                            \"created\": \"20210105062805545\",\n                            \"width\": \"6000\",\n                            \"height\": \"3376\",\n                            \"dpi\": \"72\",\n                            \"idPath\": \"N8DOL/G8OF5/SB9RU\",\n                            \"namePath\": \"Great Outdoors Go/Great Outdoors Campaigns/Fall\",\n                            \"ownerName\": \"Thorsten Rothenpieler\"\n                        }\n                    ],\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/folder/G8OF5\"\n                    },\n                    \"created\": \"20210105062805113\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/G8OF5\",\n                    \"namePath\": \"Great Outdoors Go/Great Outdoors Campaigns\",\n                    \"ownerName\": \"Thorsten Rothenpieler\"\n                },\n                {\n                    \"time\": \"20210105062805146\",\n                    \"name\": \"Great Outdoors Products\",\n                    \"id\": \"MC96V\",\n                    \"size\": \"3\",\n                    \"scheme\": \"folder\",\n                    \"owner\": \"trothenpieler@canto.com\",\n                    \"children\": [\n                        {\n                            \"time\": \"20210105062805571\",\n                            \"name\": \"Backpacks\",\n                            \"id\": \"LIBJF\",\n                            \"size\": \"30\",\n                            \"scheme\": \"album\",\n                            \"owner\": \"trothenpieler@canto.com\",\n                            \"url\": {\n                                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/preview\",\n                                \"detail\": \"https://yourcantoname.canto.com/album/LIBJF\"\n                            },\n                            \"created\": \"20210105062805571\",\n                            \"width\": \"7606\",\n                            \"height\": \"5073\",\n                            \"dpi\": \"72\",\n                            \"idPath\": \"N8DOL/MC96V/LIBJF\",\n                            \"namePath\": \"Great Outdoors Go/Great Outdoors Products/Backpacks\",\n                            \"ownerName\": \"Thorsten Rothenpieler\"\n                        },\n                        {\n                            \"time\": \"20210105062805600\",\n                            \"name\": \"Hiking Shoes\",\n                            \"id\": \"OPOJ1\",\n                            \"size\": \"12\",\n                            \"scheme\": \"album\",\n                            \"owner\": \"trothenpieler@canto.com\",\n                            \"url\": {\n                                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/81pl6k64350nf4p68ba1a2d948/preview\",\n                                \"detail\": \"https://yourcantoname.canto.com/album/OPOJ1\"\n                            },\n                            \"created\": \"20210105062805600\",\n                            \"width\": \"4652\",\n                            \"height\": \"3361\",\n                            \"dpi\": \"72\",\n                            \"idPath\": \"N8DOL/MC96V/OPOJ1\",\n                            \"namePath\": \"Great Outdoors Go/Great Outdoors Products/Hiking Shoes\",\n                            \"ownerName\": \"Thorsten Rothenpieler\"\n                        },\n                        {\n                            \"time\": \"20210105062805625\",\n                            \"name\": \"Outdoor Clothing\",\n                            \"id\": \"UT9AR\",\n                            \"size\": \"7\",\n                            \"scheme\": \"album\",\n                            \"owner\": \"trothenpieler@canto.com\",\n                            \"url\": {\n                                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/dst53a6gi968f7ldaquiik0c32/preview\",\n                                \"detail\": \"https://yourcantoname.canto.com/album/UT9AR\"\n                            },\n                            \"created\": \"20210105062805625\",\n                            \"width\": \"8688\",\n                            \"height\": \"5792\",\n                            \"dpi\": \"72\",\n                            \"idPath\": \"N8DOL/MC96V/UT9AR\",\n                            \"namePath\": \"Great Outdoors Go/Great Outdoors Products/Outdoor Clothing\",\n                            \"ownerName\": \"Thorsten Rothenpieler\"\n                        }\n                    ],\n                    \"url\": {\n                        \"detail\": \"https://yourcantoname.canto.com/folder/MC96V\"\n                    },\n                    \"created\": \"20210105062805146\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V\",\n                    \"namePath\": \"Great Outdoors Go/Great Outdoors Products\",\n                    \"ownerName\": \"Thorsten Rothenpieler\"\n                }\n            ],\n            \"url\": {\n                \"detail\": \"https://yourcantoname.canto.com/folder/N8DOL\"\n            },\n            \"created\": \"20210105062805002\",\n            \"width\": \"0\",\n            \"height\": \"0\",\n            \"dpi\": \"72\",\n            \"idPath\": \"N8DOL\",\n            \"namePath\": \"Great Outdoors Go\",\n            \"ownerName\": \"Thorsten Rothenpieler\"\n        },\n        {\n            \"time\": \"20210105062805030\",\n            \"name\": \"Integrations\",\n            \"id\": \"PDUOB\",\n            \"size\": \"3\",\n            \"scheme\": \"folder\",\n            \"owner\": \"trothenpieler@canto.com\",\n            \"children\": [\n                {\n                    \"time\": \"20210105062805219\",\n                    \"name\": \"Adobe Creative Cloud\",\n                    \"id\": \"Q3PLU\",\n                    \"size\": \"1\",\n                    \"scheme\": \"album\",\n                    \"owner\": \"trothenpieler@canto.com\",\n                    \"url\": {\n                        \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/3cj322onap4f31bikudj7s9l6g/preview\",\n                        \"detail\": \"https://yourcantoname.canto.com/album/Q3PLU\"\n                    },\n                    \"created\": \"20210105062805219\",\n                    \"width\": \"6000\",\n                    \"height\": \"3376\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/Q3PLU\",\n                    \"namePath\": \"Integrations/Adobe Creative Cloud\",\n                    \"ownerName\": \"Thorsten Rothenpieler\"\n                },\n                {\n                    \"time\": \"20210105062805252\",\n                    \"name\": \"Mailchimp Images\",\n                    \"id\": \"T7ALK\",\n                    \"size\": \"3\",\n                    \"scheme\": \"album\",\n                    \"owner\": \"trothenpieler@canto.com\",\n                    \"url\": {\n                        \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/p74am1pqa17fd8oe541ekihu46/preview\",\n                        \"detail\": \"https://yourcantoname.canto.com/album/T7ALK\"\n                    },\n                    \"created\": \"20210105062805252\",\n                    \"width\": \"4928\",\n                    \"height\": \"3043\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/T7ALK\",\n                    \"namePath\": \"Integrations/Mailchimp Images\",\n                    \"ownerName\": \"Thorsten Rothenpieler\"\n                },\n                {\n                    \"time\": \"20210105062805278\",\n                    \"name\": \"WordPress Images\",\n                    \"id\": \"KU8U8\",\n                    \"size\": \"7\",\n                    \"scheme\": \"album\",\n                    \"owner\": \"trothenpieler@canto.com\",\n                    \"url\": {\n                        \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/p74am1pqa17fd8oe541ekihu46/preview\",\n                        \"detail\": \"https://yourcantoname.canto.com/album/KU8U8\"\n                    },\n                    \"created\": \"20210105062805278\",\n                    \"width\": \"4928\",\n                    \"height\": \"3043\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/KU8U8\",\n                    \"namePath\": \"Integrations/WordPress Images\",\n                    \"ownerName\": \"Thorsten Rothenpieler\"\n                }\n            ],\n            \"url\": {\n                \"detail\": \"https://yourcantoname.canto.com/folder/PDUOB\"\n            },\n            \"created\": \"20210105062805030\",\n            \"width\": \"0\",\n            \"height\": \"0\",\n            \"dpi\": \"72\",\n            \"idPath\": \"PDUOB\",\n            \"namePath\": \"Integrations\",\n            \"ownerName\": \"Thorsten Rothenpieler\"\n        },\n        {\n            \"time\": \"20210105062805051\",\n            \"name\": \"Marketing\",\n            \"id\": \"SHFO1\",\n            \"size\": \"1\",\n            \"scheme\": \"folder\",\n            \"owner\": \"trothenpieler@canto.com\",\n            \"children\": [\n                {\n                    \"time\": \"20210105062805306\",\n                    \"name\": \"Marketing Photos\",\n                    \"id\": \"JARDF\",\n                    \"size\": \"5\",\n                    \"scheme\": \"album\",\n                    \"owner\": \"trothenpieler@canto.com\",\n                    \"url\": {\n                        \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/preview\",\n                        \"detail\": \"https://yourcantoname.canto.com/album/JARDF\"\n                    },\n                    \"created\": \"20210105062805306\",\n                    \"width\": \"4495\",\n                    \"height\": \"3000\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"SHFO1/JARDF\",\n                    \"namePath\": \"Marketing/Marketing Photos\",\n                    \"ownerName\": \"Thorsten Rothenpieler\"\n                }\n            ],\n            \"url\": {\n                \"detail\": \"https://yourcantoname.canto.com/folder/SHFO1\"\n            },\n            \"created\": \"20210105062805051\",\n            \"width\": \"0\",\n            \"height\": \"0\",\n            \"dpi\": \"72\",\n            \"idPath\": \"SHFO1\",\n            \"namePath\": \"Marketing\",\n            \"ownerName\": \"Thorsten Rothenpieler\"\n        }\n    ]\n}"}],"_postman_id":"63f90a9c-ae14-489f-a6bf-0a7a0dab6d58"},{"name":"Get sub tree view","event":[{"listen":"test","script":{"id":"a5bf2995-3f30-4075-8fda-6dcf06e48243","exec":["var jsonData = JSON.parse(responseBody);","var results = jsonData.results;","","if(results != null){","    for(var i=0; i<results.length; i++) {","    var element = results[i];","    if(element.scheme == \"album\") {","        pm.environment.set(\"albumId\", element.id);        ","        pm.environment.set(\"albumPath\", element.idPath)","        return","    }","}","}"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"bfcd0142-64fd-4d23-87eb-e741a4575992","exec":["const utils = eval(globals.loadUtils)","","utils.checkVariable(\"folderId\")","utils.checkVariable(\"contentId\")"],"type":"text/javascript"}}],"id":"7c7d0d31-977c-4706-b30f-41bd429ab302","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/tree/:folderId?sortBy=time&sortDirection=ascending&layer=-1","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 3</em></a></p>\n<p>Get the sub tree under specified folder. Folders and albums under the folder will be returned. </p>\n<p><strong>Note:</strong> Only folders can contain folder or album, album can only contain content, so please don’t specify album id.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","tree",":folderId"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>\"name\", \"time\", \"scheme\", \"owner\" or \"size\". </p>\n<p>Default: \"time\"</p>\n","type":"text/plain"},"key":"sortBy","value":"time"},{"description":{"content":"<p>“ascending” or “descending”</p>\n","type":"text/plain"},"key":"sortDirection","value":"ascending"},{"description":{"content":"<p>Maximum depth number of the folder or album items to be returned. </p>\n<p>Default: -1 (which means no limit.)</p>\n","type":"text/plain"},"key":"layer","value":"-1"}],"variable":[{"description":{"content":"<p>REQUIRED - Parent folder id</p>\n","type":"text/plain"},"type":"string","value":"{{folderId}}","key":"folderId"}]}},"response":[{"id":"3fbc516e-d6f1-4deb-a06e-039d80171bec","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/tree/:folderId?sortBy=time&sortDirection=ascending&layer=-1","host":["{{SITE_BASEURL}}"],"path":["api","v1","tree",":folderId"],"query":[{"key":"sortBy","value":"time","description":"\"name\", \"time\", \"scheme\", \"owner\" or \"size\". \n\nDefault: \"time\""},{"key":"sortDirection","value":"ascending","description":"“ascending” or “descending”"},{"key":"layer","value":"-1","description":"Maximum depth number of the folder or album items to be returned. \n\nDefault: -1 (which means no limit.)"}],"variable":[{"description":"REQUIRED - Parent folder id","key":"folderId","type":"string","value":"{{folderId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 06 Jan 2021 14:54:19 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Tue, 05-Jan-2021 14:54:19 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"sortBy\": \"time\",\n    \"sortDirection\": \"ascending\",\n    \"results\": [\n        {\n            \"time\": \"20210105062805306\",\n            \"name\": \"Marketing Photos\",\n            \"id\": \"JARDF\",\n            \"size\": \"5\",\n            \"scheme\": \"album\",\n            \"owner\": \"canto-support@canto.com\",\n            \"url\": {\n                \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/preview\",\n                \"detail\": \"https://yourcantoname.canto.com/album/JARDF\"\n            },\n            \"created\": \"20210105062805306\",\n            \"width\": \"4495\",\n            \"height\": \"3000\",\n            \"dpi\": \"72\",\n            \"idPath\": \"SHFO1/JARDF\",\n            \"namePath\": \"Marketing/Marketing Photos\",\n            \"ownerName\": \"Canto Support\"\n        }\n    ]\n}"},{"id":"20aeb4d5-5624-48ca-ad63-3ce8b6864acb","name":"404 Not Found - Folder not existing","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/tree/:folderId?sortBy=time&sortDirection=ascending&layer=-1","host":["{{SITE_BASEURL}}"],"path":["api","v1","tree",":folderId"],"query":[{"key":"sortBy","value":"time","description":"\"name\", \"time\", \"scheme\", \"owner\" or \"size\". \n\nDefault: \"time\""},{"key":"sortDirection","value":"ascending","description":"“ascending” or “descending”"},{"key":"layer","value":"-1","description":"Maximum depth number of the folder or album items to be returned. \n\nDefault: -1 (which means no limit.)"}],"variable":[{"description":"REQUIRED - Parent folder id","key":"folderId","type":"string","value":"VPA4H"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 06 Jan 2021 14:59:11 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Tue, 05-Jan-2021 14:59:11 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2300,\n    \"message\": \"2300\"\n}"}],"_postman_id":"7c7d0d31-977c-4706-b30f-41bd429ab302"},{"name":"Create folder","event":[{"listen":"test","script":{"id":"84cea39f-85f7-4806-a7c8-0158a1355841","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"folderId\", jsonData.id);","pm.environment.set(\"folderIdPath\", jsonData.idPath);"],"type":"text/javascript"}}],"id":"80c2282b-7805-497d-bcc8-0f78976f6f4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"localeCode\": \"de-DE\",\n        \"name\": \"schaltung2\",\n        \"description\": \"desc_de\"\n    },\n    {\n        \"localeCode\": \"en-US\",\n        \"name\": \"circuit2\",\n        \"description\": \"desc_en\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/folder/:parentFolderId/:folderName?description=This is an example description","description":"<p><a href=\"#api-rate-limit\"><i>Rate Level: 2</i></a></p>\n<p>Create a folder under specified folder or library.</p>\n<p>*Note:* The body is optional and only necessary if you want to set the folder name in multiple languages.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","folder",":parentFolderId",":folderName"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>The Description of the album.</p>\n<p>Max length: 400</p>\n","type":"text/plain"},"key":"description","value":"This is an example description"}],"variable":[{"description":{"content":"<p>The id of the parent folder.</p>\n<p>Leave this parameter empty, if you want to create a new folder on root of the library.</p>\n","type":"text/plain"},"type":"any","value":"{{folderId}}","key":"parentFolderId"},{"description":{"content":"<p>REQUIRED - The name of the folder</p>\n<p>Max length: 80</p>\n<p><strong>Note:</strong> Avoid using \\ / : * ? \" &lt; &gt; or | in name.</p>\n","type":"text/plain"},"type":"any","value":"panel","key":"folderName"}]}},"response":[{"id":"569fef59-c0c1-4e93-ac04-c1f71c8123d2","name":"200 OK - New sub folder","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/folder/:parentFolderId/:folderName?description=This is a example description","host":["{{SITE_BASEURL}}"],"path":["api","v1","folder",":parentFolderId",":folderName"],"query":[{"key":"description","value":"This is a example description","description":"The Description of the album.\n\nMax length: 400"}],"variable":[{"description":"The id of the parent folder.\n\nLeave this parameter empty, if you want to create a new folder on root of the library.","key":"parentFolderId","type":"string","value":"{{folderId}}"},{"description":"REQUIRED - The name of the folder\n\nMax length: 80\n\n**Note:** Avoid using \\ / : * ? \\\" < > or | in name.","key":"folderName","type":"string","value":"bus"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Jan 2021 14:20:53 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 14:20:53 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"url\": {\n        \"detail\": \"{{SITE_BASEURL}}/folder/R7FI4\"\n    },\n    \"time\": \"20210107062053264\",\n    \"name\": \"bus\",\n    \"id\": \"R7FI4\",\n    \"size\": \"0\",\n    \"scheme\": \"folder\",\n    \"owner\": \"canto-support@canto.com\",\n    \"description\": \"This is a example description\",\n    \"created\": \"20210107062053264\",\n    \"width\": \"0\",\n    \"height\": \"0\",\n    \"dpi\": \"72\",\n    \"idPath\": \"SHFO1/R7FI4\",\n    \"namePath\": \"Marketing/bus\"\n}"},{"id":"1b4bdea6-033c-4783-a1c3-1c19b8366099","name":"200 OK - New root folder","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/folder/:folderName?description=This is a example description","host":["{{SITE_BASEURL}}"],"path":["api","v1","folder",":folderName"],"query":[{"key":"description","value":"This is a example description","description":"The Description of the album.\n\nMax length: 400"}],"variable":[{"key":"folderName","value":"circuit"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Jan 2021 14:22:56 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 14:22:55 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"url\": {\n        \"detail\": \"{{SITE_BASEURL}}/folder/VF721\"\n    },\n    \"time\": \"20210107062256143\",\n    \"name\": \"circuit\",\n    \"id\": \"VF721\",\n    \"size\": \"0\",\n    \"scheme\": \"folder\",\n    \"owner\": \"canto-support@canto.com\",\n    \"description\": \"This is a example description\",\n    \"created\": \"20210107062256143\",\n    \"width\": \"0\",\n    \"height\": \"0\",\n    \"dpi\": \"72\",\n    \"idPath\": \"VF721\",\n    \"namePath\": \"circuit\"\n}"},{"id":"51e70648-25ea-4411-a31e-8a7b6d26a0df","name":"200 OK - New multi-language folder","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"localeCode\": \"de-DE\",\r\n        \"name\": \"schaltung\"\r\n    },\r\n    {\r\n        \"localeCode\": \"en-US\",\r\n        \"name\": \"circuit\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"{{SITE_BASEURL}}/api/v1/folder/:folderName?description=This is a example description","host":["{{SITE_BASEURL}}"],"path":["api","v1","folder",":folderName"],"query":[{"key":"description","value":"This is a example description","description":"The Description of the album.\n\nMax length: 400"}],"variable":[{"key":"folderName","value":"circuit"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Jan 2021 14:22:56 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 14:22:55 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"url\": {\n        \"detail\": \"{{SITE_BASEURL}}/folder/VF721\"\n    },\n    \"time\": \"20210107062256143\",\n    \"name\": \"circuit\",\n    \"id\": \"VF721\",\n    \"size\": \"0\",\n    \"scheme\": \"folder\",\n    \"owner\": \"canto-support@canto.com\",\n    \"description\": \"This is a example description\",\n    \"created\": \"20210107062256143\",\n    \"width\": \"0\",\n    \"height\": \"0\",\n    \"dpi\": \"72\",\n    \"idPath\": \"VF721\",\n    \"namePath\": \"circuit\"\n}"}],"_postman_id":"80c2282b-7805-497d-bcc8-0f78976f6f4d"},{"name":"Get folder detail info","id":"dc745b25-43b2-44fb-974c-a860be4bcfe1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/info/folder/:folderId?extendedMultiLangInfo=true","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 4</em></a></p>\n<p>Obtain specific folder/album detail information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","info","folder",":folderId"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>true: a array named \"multiLanguageData\" containing information about multi-language is added to the response body.</p>\n<p>false: No multiLanguageData are added to the response body. </p>\n","type":"text/plain"},"key":"extendedMultiLangInfo","value":"true"}],"variable":[{"type":"any","value":"{{folderId}}","key":"folderId"}]}},"response":[{"id":"87526f91-bebf-4ea8-ae39-df13162863e9","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/info/folder/:folderId","host":["{{SITE_BASEURL}}"],"path":["api","v1","info","folder",":folderId"],"variable":[{"key":"folderId","type":"string","value":"VF721"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 14:30:11 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 14:30:11 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"url\": {\n        \"detail\": \"{{SITE_BASEURL}}/folder/VF721\"\n    },\n    \"time\": \"20210107062256143\",\n    \"name\": \"circuit\",\n    \"id\": \"VF721\",\n    \"size\": \"1\",\n    \"scheme\": \"folder\",\n    \"owner\": \"canto-support@canto.com\",\n    \"description\": \"This is a example description\",\n    \"created\": \"20210107062256143\",\n    \"width\": \"0\",\n    \"height\": \"0\",\n    \"dpi\": \"72\",\n    \"idPath\": \"VF721\",\n    \"namePath\": \"circuit\"\n}"},{"id":"21e97963-58f0-47ee-bb28-b8de1055e2a1","name":"200 OK - Expand multi-language data","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/info/folder/:folderId?extendedMultiLangInfo=true","host":["{{SITE_BASEURL}}"],"path":["api","v1","info","folder",":folderId"],"query":[{"key":"extendedMultiLangInfo","value":"true","description":"If true a new json format containing more information about multi-language is returned."}],"variable":[{"key":"folderId","value":"VF721"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 14:30:11 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 14:30:11 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"url\": {\n        \"detail\": \"{{SITE_BASEURL}}/folder/VF721\"\n    },\n    \"time\": \"20210107062256143\",\n    \"name\": \"circuit\",\n    \"id\": \"VF721\",\n    \"size\": \"1\",\n    \"scheme\": \"folder\",\n    \"owner\": \"canto-support@canto.com\",\n    \"description\": \"This is a example description\",\n    \"created\": \"20210107062256143\",\n    \"width\": \"0\",\n    \"height\": \"0\",\n    \"dpi\": \"72\",\n    \"idPath\": \"VF721\",\n    \"namePath\": \"circuit\",\n    \"multiLanguageData\": [\n\t\t{\n\t\t\t\"localeCode\": \"de-DE\",\n\t\t\t\"name\": \"schaltung\",\n\t\t\t\"namePath\": \"schaltung\"\n\t\t},\n\t\t{\n\t\t\t\"localeCode\": \"en-US\",\n\t\t\t\"name\": \"circuit\",\n\t\t\t\"namePath\": \"circuit\"\n\t\t}\n\t]\n}"}],"_postman_id":"dc745b25-43b2-44fb-974c-a860be4bcfe1"},{"name":"Update folder name","id":"4057a184-6e2a-4917-8ddd-fc89c1523872","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\n\t{\n\t\t\"localeCode\": \"de-DE\",\n\t\t\"name\": \"schaltung\"\t\n\t},\n\t{\n\t\t\"localeCode\": \"en-US\",\n\t\t\"name\": \"circuit\"\n\t}\n]","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/folder/:folderId","description":"<p>Update specific folder/album multi-language information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","folder",":folderId"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"id":"4db54bc5-7531-4146-a720-9f0a967d9dbe","description":{"content":"<p>The specific folder id</p>\n","type":"text/plain"},"type":"any","value":"{{folderId}}","key":"folderId"}]}},"response":[{"id":"4d4da59e-4f73-4ec2-8f90-fc3bb036bc8d","name":"200 OK - Update multi-language data","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\r\n\t{\r\n\t\t\"localeCode\": \"de-DE\",\r\n\t\t\"name\": \"schaltung\"\t\t\r\n\t},\r\n\t{\r\n\t\t\"localeCode\": \"en-US\",\r\n\t\t\"name\": \"circuit\"\r\n\t}\r\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"{{SITE_BASEURL}}/api/v1/folder/:folderId","host":["{{SITE_BASEURL}}"],"path":["api","v1","folder",":folderId"],"variable":[{"key":"folderId","value":"VF721","description":"The specific folder id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Date","value":"Thu, 07 Jan 2021 14:35:52 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 14:35:52 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"success"}],"_postman_id":"4057a184-6e2a-4917-8ddd-fc89c1523872"},{"name":"Get My Collection detail info","id":"c76ddbfb-9e60-4ff6-bfc8-12d6686b4d3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/mycollections/:collectionId","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 1</em></a></p>\n<p>Obtain MyCollection detail information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","mycollections",":collectionId"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"id":"14588473-d88d-4066-b95d-15f3ea839707","type":"any","value":"","key":"collectionId"}]}},"response":[{"id":"7a0604eb-bbd5-45de-b4c3-2d650b7fc264","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/mycollections/:collectionId","host":["{{SITE_BASEURL}}"],"path":["api","v1","mycollections",":collectionId"],"variable":[{"key":"collectionId","value":"J4FUE"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 22 Jun 2021 10:16:18 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net js-agent.newrelic.com bam.nr-data.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com bam.nr-data.net; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Expect-CT","value":"max-age=86400, enforce"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Mon, 21-Jun-2021 10:16:17 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"facets\": [\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"min\": 9223372036854775807,\n            \"name\": \"resolution\"\n        },\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"min\": 9223372036854775807,\n            \"name\": \"duration\"\n        },\n        {\n            \"name\": \"tags\",\n            \"value\": [\n                \"Untagged\"\n            ]\n        },\n        {\n            \"name\": \"keywords\",\n            \"value\": [\n                \"Unkeyworded\",\n                \"circuit\",\n                \"logo\"\n            ]\n        },\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"min\": 9223372036854775807,\n            \"name\": \"dimension\"\n        },\n        {\n            \"name\": \"owner\",\n            \"value\": [\n                \"srausch@canto.com\"\n            ]\n        },\n        {\n            \"name\": \"orientation\",\n            \"value\": [\n                \"Unknow\"\n            ]\n        },\n        {\n            \"name\": \"storageClass\",\n            \"value\": [\n                \"standard\"\n            ]\n        },\n        {\n            \"name\": \"approval\",\n            \"value\": [\n                \"Pending\"\n            ]\n        },\n        {\n            \"mix\": 1614039713,\n            \"max\": 1615890516,\n            \"min\": 1614039713,\n            \"name\": \"created\"\n        },\n        {\n            \"name\": \"scheme\",\n            \"value\": [\n                \"image\",\n                \"other\"\n            ]\n        },\n        {\n            \"max\": 6632,\n            \"name\": \"fileSize\"\n        },\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"min\": 9223372036854775807,\n            \"name\": \"pageNumber\"\n        }\n    ],\n    \"results\": [\n        {\n            \"approvalStatus\": \"Pending\",\n            \"time\": \"20210316112836000\",\n            \"description\": \"asaSasaSAsaSA\\nasSAsaSasadsiqjdbsDASdsadsds\",\n            \"keyword\": [\n                \"circuit\",\n                \"logo\"\n            ],\n            \"url\": {\n                \"preview\": \"https://rausch.canto.global/api_binary/v1/image/89to0fjfq15rf1obijk1r3jm24/preview\",\n                \"download\": \"https://rausch.canto.global/api_binary/v1/image/89to0fjfq15rf1obijk1r3jm24\",\n                \"metadata\": \"https://rausch.canto.global/api_binary/v1/image/89to0fjfq15rf1obijk1r3jm24/metadata\",\n                \"HighJPG\": \"https://rausch.canto.global/api_binary/v1/image/89to0fjfq15rf1obijk1r3jm24/HighJPG\",\n                \"PNG\": \"https://rausch.canto.global/api_binary/v1/image/89to0fjfq15rf1obijk1r3jm24/PNG\",\n                \"directUrlOriginal\": \"https://rausch.canto.global/download/image/89to0fjfq15rf1obijk1r3jm24/original\",\n                \"detail\": \"https://rausch.canto.global/smartalbum/image?column=image&id=89to0fjfq15rf1obijk1r3jm24\",\n                \"directUrlPreview\": \"https://rausch.canto.global/preview/image/89to0fjfq15rf1obijk1r3jm24/800\",\n                \"LowJPG\": \"https://rausch.canto.global/api_binary/v1/image/89to0fjfq15rf1obijk1r3jm24/LowJPG\"\n            },\n            \"additional\": {\n                \"feed\": null,\n                \"alarm\": \"now\",\n                \"matrix\": null,\n                \"panel\": null\n            },\n            \"tag\": [\n                \"Untagged\"\n            ],\n            \"width\": \"320\",\n            \"relatedAlbums\": [\n                {\n                    \"idPath\": \"S36VG\",\n                    \"namePath\": \"S36VG\",\n                    \"url\": {\n                        \"detail\": \"https://rausch.canto.global/album/S36VG\"\n                    },\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"id\": \"S36VG\",\n                    \"scheme\": \"album\"\n                },\n                {\n                    \"idPath\": \"I70KA\",\n                    \"namePath\": \"I70KA\",\n                    \"url\": {\n                        \"detail\": \"https://rausch.canto.global/album/I70KA\"\n                    },\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"id\": \"I70KA\",\n                    \"scheme\": \"album\"\n                }\n            ],\n            \"height\": \"240\",\n            \"ownerName\": \"Steffen Rausch\",\n            \"smartTags\": [\n                \"Business Card\",\n                \"Paper\",\n                \"Text\",\n                \"Texture\",\n                \"White\"\n            ],\n            \"dpi\": \"72\",\n            \"name\": \"Universal_CT_1100-119-01_V2.jpg\",\n            \"default\": {\n                \"Size\": \"0\",\n                \"Color\": null,\n                \"Uploaded by\": \"srausch@canto.com\",\n                \"Dimensions\": \"320*240 Pixels\",\n                \"Date uploaded\": \"20210316112836000\",\n                \"Date modified\": \"20210621172431000\",\n                \"Name\": \"427b803e6fd04bb7870b94e81d8e7644\",\n                \"Copyright\": null,\n                \"Modified by\": \"Steffen Rausch\",\n                \"Content Type\": \"image/jpeg\",\n                \"Author\": null,\n                \"Date Created\": \"2021-03-16 10:28:36\",\n                \"Creation Tool\": null,\n                \"Resolution\": null\n            },\n            \"id\": \"89to0fjfq15rf1obijk1r3jm24\",\n            \"size\": \"0\",\n            \"scheme\": \"image\",\n            \"owner\": \"srausch@canto.com\"\n        },\n        {\n            \"approvalStatus\": \"Pending\",\n            \"time\": \"20210223012153000\",\n            \"url\": {\n                \"preview\": \"https://rausch.canto.global/api_binary/v1/other/s6o6mk9ku54v7algto47bv9923/preview\",\n                \"download\": \"https://rausch.canto.global/api_binary/v1/other/s6o6mk9ku54v7algto47bv9923\",\n                \"metadata\": \"https://rausch.canto.global/api_binary/v1/other/s6o6mk9ku54v7algto47bv9923/metadata\",\n                \"directUrlOriginal\": \"https://rausch.canto.global/download/other/s6o6mk9ku54v7algto47bv9923/original\",\n                \"detail\": \"https://rausch.canto.global/smartalbum/other?column=other&id=s6o6mk9ku54v7algto47bv9923\",\n                \"directUrlPreview\": \"https://rausch.canto.global/preview/other/s6o6mk9ku54v7algto47bv9923/800\"\n            },\n            \"additional\": {\n                \"feed\": null,\n                \"alarm\": null,\n                \"matrix\": null,\n                \"panel\": null\n            },\n            \"tag\": [\n                \"Untagged\"\n            ],\n            \"width\": \"320\",\n            \"relatedAlbums\": [\n                {\n                    \"idPath\": \"I70KA\",\n                    \"namePath\": \"I70KA\",\n                    \"url\": {\n                        \"detail\": \"https://rausch.canto.global/album/I70KA\"\n                    },\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"id\": \"I70KA\",\n                    \"scheme\": \"album\"\n                },\n                {\n                    \"idPath\": \"UVEUH/HMKTM\",\n                    \"namePath\": \"UVEUH/HMKTM\",\n                    \"url\": {\n                        \"detail\": \"https://rausch.canto.global/album/HMKTM\"\n                    },\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"id\": \"HMKTM\",\n                    \"scheme\": \"album\"\n                }\n            ],\n            \"height\": \"240\",\n            \"ownerName\": \"Steffen Rausch\",\n            \"smartTags\": [\n                \"Untagged\"\n            ],\n            \"dpi\": \"72\",\n            \"name\": \"IS_LIB_MMS_ResponseHandler-3.2.2.jar\",\n            \"default\": {\n                \"Copyright\": null,\n                \"Modified by\": \"Steffen Rausch\",\n                \"Size\": \"6632\",\n                \"Uploaded by\": \"srausch@canto.com\",\n                \"Content Type\": \"application/zip\",\n                \"Author\": null,\n                \"Date uploaded\": \"20210223012153000\",\n                \"Date Created\": \"2021-02-23 00:21:53\",\n                \"Date modified\": \"20210223012154000\",\n                \"Creation Tool\": null,\n                \"Name\": \"e1b06b5134f149f3aab0ee0875fd2943\"\n            },\n            \"id\": \"s6o6mk9ku54v7algto47bv9923\",\n            \"size\": \"6632\",\n            \"scheme\": \"other\",\n            \"owner\": \"srausch@canto.com\"\n        }\n    ],\n    \"limit\": 100,\n    \"found\": 2,\n    \"sortBy\": \"time\",\n    \"sortDirection\": \"descending\",\n    \"matchExpr\": \"es\"\n}"}],"_postman_id":"c76ddbfb-9e60-4ff6-bfc8-12d6686b4d3e"},{"name":"Create album","event":[{"listen":"test","script":{"id":"3eb18650-a949-460c-a29b-06ecbcceb955","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"albumId\", jsonData.id);","pm.environment.set(\"albumPath\", jsonData.idPath);"],"type":"text/javascript"}}],"id":"028c31e7-a84b-48ed-a3d4-452f616baf96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n\t{\n\t\t\"localeCode\": \"de-DE\",\n\t\t\"name\": \"protokoll\"\t\t\n\t},\n\t{\n\t\t\"localeCode\": \"en-US\",\n\t\t\"name\": \"protocol\"\n\t}\n]","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/album/:parentFolderId/:albumName?description=This is an example description","description":"<p><a href=\"#api-rate-limit\"><i>Rate Level: 2</i></a></p>\n<p>Create an album under the specified folder or on root level of the library.  </p>\n<p>*Note:* The body is optional and only necessary if you want to set the folder name in multiple languages.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","album",":parentFolderId",":albumName"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>The description of the album. </p>\n<p>Max length is 400.</p>\n","type":"text/plain"},"key":"description","value":"This is an example description"}],"variable":[{"description":{"content":"<p>The id of the parent folder.</p>\n<p>Leave this parameter empty, if you want to create a new album on root of the library.</p>\n","type":"text/plain"},"type":"any","value":"{{folderId}}","key":"parentFolderId"},{"description":{"content":"<p>REQUIRED - The name of the new album.</p>\n<p>Max length: 80. </p>\n<p><strong>Note:</strong> Avoid using \\ / : * ? \" &lt; &gt; or | in name.</p>\n","type":"text/plain"},"type":"any","value":"driver","key":"albumName"}]}},"response":[{"id":"ffdc3150-53cf-4346-8fc3-5c52f5542867","name":"200 OK - New sub album","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/album/:parentFolderId/:albumName?description=This is an example description","host":["{{SITE_BASEURL}}"],"path":["api","v1","album",":parentFolderId",":albumName"],"query":[{"key":"description","value":"This is an example description","description":"The description of the album. \n\nMax length is 400."}],"variable":[{"description":"The id of the parent folder.\n\nLeave this parameter empty, if you want to create a new album on root of the library.","key":"parentFolderId","type":"string","value":"{{folderId}}"},{"description":"The name of the new album.\n\nMax length: 80. \n\n**Note:** Avoid using \\ / : * ? \\\" < > or | in name.","key":"albumName","type":"string","value":"program"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Jan 2021 14:34:41 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 14:34:40 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"url\": {\n        \"detail\": \"{{SITE_BASEURL}}/album/IMUIF\"\n    },\n    \"time\": \"20210107063441034\",\n    \"name\": \"program\",\n    \"id\": \"IMUIF\",\n    \"size\": \"0\",\n    \"scheme\": \"album\",\n    \"owner\": \"canto-support@canto.com\",\n    \"description\": \"This is an example description\",\n    \"created\": \"20210107063441034\",\n    \"width\": \"0\",\n    \"height\": \"0\",\n    \"dpi\": \"72\",\n    \"idPath\": \"VF721/IMUIF\",\n    \"namePath\": \"circuit/program\"\n}"},{"id":"73bb9d56-23ef-4cd7-909e-8f15a27825e1","name":"200 OK - New root album","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/album/:albumName?description=This is an example description","host":["{{SITE_BASEURL}}"],"path":["api","v1","album",":albumName"],"query":[{"key":"description","value":"This is an example description","description":"The description of the album. \n\nMax length is 400."}],"variable":[{"description":"The name of the new album.\n\nMax length: 80. \n\n**Note:** Avoid using \\ / : * ? \\\" < > or | in name.","key":"albumName","type":"string","value":"protocol"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Jan 2021 14:35:52 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 14:35:52 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"url\": {\n        \"detail\": \"{{SITE_BASEURL}}/album/MUM2O\"\n    },\n    \"time\": \"20210107063552618\",\n    \"name\": \"protocol\",\n    \"id\": \"MUM2O\",\n    \"size\": \"0\",\n    \"scheme\": \"album\",\n    \"owner\": \"akrishnachandran@canto.com\",\n    \"description\": \"This is an example description\",\n    \"created\": \"20210107063552618\",\n    \"width\": \"0\",\n    \"height\": \"0\",\n    \"dpi\": \"72\",\n    \"idPath\": \"MUM2O\",\n    \"namePath\": \"protocol\"\n}"},{"id":"025d624a-6d74-45f2-a0a0-fadb1037a8d6","name":"200 OK - New multi-language album","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\r\n\t{\r\n\t\t\"localeCode\": \"de-DE\",\r\n\t\t\"name\": \"protokoll\"\t\t\r\n\t},\r\n\t{\r\n\t\t\"localeCode\": \"en-US\",\r\n\t\t\"name\": \"protocol\"\r\n\t}\r\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"{{SITE_BASEURL}}/api/v1/album/:albumName?description=This is an example description","host":["{{SITE_BASEURL}}"],"path":["api","v1","album",":albumName"],"query":[{"key":"description","value":"This is an example description","description":"The description of the album. \n\nMax length is 400."}],"variable":[{"key":"albumName","value":"protocol","description":"The name of the new album.\n\nMax length: 80. \n\n**Note:** Avoid using \\ / : * ? \\\" < > or | in name."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Jan 2021 14:35:52 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 14:35:52 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"url\": {\n        \"detail\": \"{{SITE_BASEURL}}/album/MUM2O\"\n    },\n    \"time\": \"20210107063552618\",\n    \"name\": \"protocol\",\n    \"id\": \"MUM2O\",\n    \"size\": \"0\",\n    \"scheme\": \"album\",\n    \"owner\": \"akrishnachandran@canto.com\",\n    \"description\": \"This is an example description\",\n    \"created\": \"20210107063552618\",\n    \"width\": \"0\",\n    \"height\": \"0\",\n    \"dpi\": \"72\",\n    \"idPath\": \"MUM2O\",\n    \"namePath\": \"protocol\"\n}"},{"id":"ccbb6da8-5809-45f1-aa32-bcc3cec42cff","name":"404 Not Found - Invalid parent folder id","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/album/:parentFolderId/:albumName?description=This is an example description","host":["{{SITE_BASEURL}}"],"path":["api","v1","album",":parentFolderId",":albumName"],"query":[{"key":"description","value":"This is an example description","description":"The description of the album. \n\nMax length is 400."}],"variable":[{"description":"The id of the parent folder.\n\nLeave this parameter empty, if you want to create a new album on root of the library.","key":"parentFolderId","type":"string","value":"InvalidFolderId"},{"description":"The name of the new album.\n\nMax length: 80. \n\n**Note:** Avoid using \\ / : * ? \\\" < > or | in name.","key":"albumName","type":"string","value":"bus"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Jan 2021 14:37:02 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 14:37:02 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2300,\n    \"message\": \"2300\"\n}"}],"_postman_id":"028c31e7-a84b-48ed-a3d4-452f616baf96"},{"name":"Get album detail info","id":"f441a625-3f86-4861-b7aa-1afe5405b87e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/info/album/:albumId","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 4</em></a></p>\n<p>Obtain specific folder/album detail information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","info","album",":albumId"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"description":{"content":"<p>The specific album id</p>\n","type":"text/plain"},"type":"string","value":"{{albumId}}","key":"albumId"}]}},"response":[{"id":"6a2f1944-be15-4960-bd70-172deee96c5a","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/info/album/:albumId","host":["{{SITE_BASEURL}}"],"path":["api","v1","info","album",":albumId"],"variable":[{"description":"The specific album id","key":"albumId","type":"string","value":"IMUIF"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 14:29:00 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 14:29:00 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"time\": \"20210107063441034\",\n    \"url\": {\n        \"detail\": \"{{SITE_BASEURL}}/album/IMUIF\"\n    },\n    \"description\": \"This is an example description\",\n    \"created\": \"20210107063441034\",\n    \"width\": \"0\",\n    \"height\": \"0\",\n    \"dpi\": \"72\",\n    \"namePath\": \"circuit/program\",\n    \"idPath\": \"VF721/IMUIF\",\n    \"name\": \"program\",\n    \"id\": \"IMUIF\",\n    \"size\": \"0\",\n    \"scheme\": \"album\",\n    \"owner\": \"canto-support@canto.com\"\n}"},{"id":"67041c6a-cfe5-4da5-b0d8-d694e8d36c29","name":"200 OK - Expand multi-language data","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/info/album/:albumId?extendedMultiLangInfo=true","host":["{{SITE_BASEURL}}"],"path":["api","v1","info","album",":albumId"],"query":[{"key":"extendedMultiLangInfo","value":"true","description":"If true a new json format containing more information about multi-language is returned."}],"variable":[{"key":"albumId","value":"MUM2O","description":"The specific album id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 14:29:00 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 14:29:00 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"time\": \"20210107063552618\",\n    \"url\": {\n        \"detail\": \"{{SITE_BASEURL}}/album/MUM2O\"\n    },\n    \"description\": \"This is an example description\",\n    \"created\": \"20210107063552618\",\n    \"width\": \"0\",\n    \"height\": \"0\",\n    \"dpi\": \"72\",\n    \"namePath\": \"protocol\",\n    \"idPath\": \"MUM2O\",\n    \"name\": \"protocol\",\n    \"id\": \"MUM2O\",\n    \"size\": \"0\",\n    \"scheme\": \"album\",\n    \"owner\": \"canto-support@canto.com\",\n    \"multiLanguageData\": [\n\t\t{\n\t\t\t\"localeCode\": \"de-DE\",\n\t\t\t\"name\": \"protokoll\",\n\t\t\t\"namePath\": \"protokoll\"\n\t\t},\n\t\t{\n\t\t\t\"localeCode\": \"en-US\",\n\t\t\t\"name\": \"protocol\",\n\t\t\t\"namePath\": \"protocol\"\n\t\t}\n\t]\n}"}],"_postman_id":"f441a625-3f86-4861-b7aa-1afe5405b87e"},{"name":"Update album name","id":"c3bf9606-3066-4229-9836-25b8a44eedd8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"localeCode\": \"de-DE\",\n        \"name\": \"protokoll\"\n    },\n    {\n        \"localeCode\": \"en-US\",\n        \"name\": \"protocol\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/album/:albumId","description":"<p>Update specific folder/album multi-language information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","album",":albumId"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"id":"92ece390-b33a-42a4-864b-9d736a5cf67c","description":{"content":"<p>The specific album id</p>\n","type":"text/plain"},"type":"any","value":"{{albumId}}","key":"albumId"}]}},"response":[{"id":"9f835899-e1b2-4100-a316-5eee27ce0a45","name":"200 OK - Update multi-language data","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\r\n\t{\r\n\t\t\"localeCode\": \"de-DE\",\r\n\t\t\"name\": \"protokoll\"\t\t\r\n\t},\r\n\t{\r\n\t\t\"localeCode\": \"en-US\",\r\n\t\t\"name\": \"protocol\"\r\n\t}\r\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"{{SITE_BASEURL}}/api/v1/album/:albumId","host":["{{SITE_BASEURL}}"],"path":["api","v1","album",":albumId"],"variable":[{"key":"albumId","value":"MUM2O","description":"The specific album id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Date","value":"Thu, 07 Jan 2021 14:35:52 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 14:35:52 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"success"}],"_postman_id":"c3bf9606-3066-4229-9836-25b8a44eedd8"},{"name":"List content of a specified album","event":[{"listen":"prerequest","script":{"id":"123aa941-ee22-48b3-a350-a7e301489e1a","exec":["const utils = eval(globals.loadUtils)","","utils.checkVariable(\"albumId\")"],"type":"text/javascript"}},{"listen":"test","script":{"id":"ddb1ade6-d36f-4bbc-876e-b63fd22b71ad","exec":[""],"type":"text/javascript"}}],"id":"3e9800e9-3c6b-436d-82c6-52c8b2770672","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/album/:albumId?keyword=photo&scheme=image&tags=Person&tagsLiteral=Blue&keywords=Canto&approval=approved&owner=canto-support@canto.com&fileSize=95073..26893954&created=1444662143..1452182400&createdTime=1571042449..1571301649&uploadedTime=1571042449..1571301649&lastModified=1571042449..1571301649&dimension=77..3840&resolution=5..350&orientation=landscape&duration=9..1205&pageNumber=6..482&{{customFieldId}}=exampleValue&searchInField=filename&exactMatch=false&operator=and&sortBy=time&sortDirection=ascending&start=0&limit=100&storageClass=standard|freeze","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 4</em></a></p>\n<p>List content of a album, page by page. Only brief content info is returned.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","album",":albumId"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>The search term(s)\nuse this, to make a search simply by keyword. This is nearly the same search like you do in Canto UI on right top. </p>\n","type":"text/plain"},"key":"keyword","value":"photo"},{"description":{"content":"<p>\"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)\nscheme refers to the smart albums within your Canto application.\n**Examples:**<br />One value: image \nMulti values with OR: image|video|audio</p>\n<p><em>Note:</em> The | character needs to be url encoded with %7C: Example: image%7cvideo%7Caudio</p>\n","type":"text/plain"},"key":"scheme","value":"image"},{"description":{"content":"<p>If you want to filter by tag\n**Examples:**<br />One value: sunset<br />Multi values with OR: sunset|dawn<br />Multi values with AND: sunset+beach</p>\n<p><em>Note:</em> The + character needs to be url encoded with %2B: Example: sunset%2Bbeach\n<em>Note:</em> The | character needs to be url encoded with %7C: Example: sunset%7Cbeach</p>\n","type":"text/plain"},"key":"tags","value":"Person"},{"description":{"content":"<p>Filter by tag(case-sensitive &amp; whole word only)\n\"blue\" or \"Blue one\" didn't matched.</p>\n","type":"text/plain"},"key":"tagsLiteral","value":"Blue"},{"description":{"content":"<p>Filter result by keywords.\n**Examples:**<br />One value: business<br />Multi values with OR: home|office<br />Multi values with AND: business+office\n<strong>Note:</strong> This filter searchs by keywords, you can attach on request: <a href=\"#f854b08c-270f-4f14-af87-689b028f7e7b\">Attach keyword to content</a></p>\n<p><em>Note:</em> The + character needs to be url encoded with %7C: Example: home%2Boffice\n<em>Note:</em> The | character needs to be url encoded with %7C: Example: home%7Coffice</p>\n","type":"text/plain"},"key":"keywords","value":"Canto"},{"description":{"content":"<p>Filter by Approval status. \n<strong>Note:</strong> This filter only works, if the approval process is enabled.\n**Examples:**<br />One value: approved<br />Multi values with OR: \"approved|pending\"\nIf you select Expired, you cannot select another status.<br />For Example: You cannot use \"expired|pending\". Only use Expired</p>\n<p><em>Note:</em> The | character needs to be url encoded with %7C: Example: approved%7Cpending</p>\n","type":"text/plain"},"key":"approval","value":"approved"},{"description":{"content":"<p>FIlter by id of an owner. \n**Examples:**<br />One value: <a href=\"mailto:canto-support@canto.com\">canto-support@canto.com</a><br />Multi values with OR: <a href=\"mailto:canto-support@canto.com\">canto-support@canto.com</a>|<a href=\"mailto:noreply@canto.com\">noreply@canto.com</a></p>\n<p><em>Note:</em> The | character needs to be url encoded with %7C: Example: <a href=\"mailto:support@canto.com\">support@canto.com</a>%<a href=\"mailto:7Cnoreply@canto.com\">7Cnoreply@canto.com</a></p>\n","type":"text/plain"},"key":"owner","value":"canto-support@canto.com"},{"description":{"content":"<p>Filter by file size\n<strong>Example:</strong> 95073..26893954</p>\n","type":"text/plain"},"key":"fileSize","value":"95073..26893954"},{"description":{"content":"<p>Filter by time the asset was created at canto.</p>\n","type":"text/plain"},"key":"created","value":"1444662143..1452182400"},{"description":{"content":"<p>Filter by file creation time. (Value is in Unix timestamp format). </p>\n","type":"text/plain"},"key":"createdTime","value":"1571042449..1571301649"},{"description":{"content":"<p>Filter by upload time. (Value is in Unix timestamp format)</p>\n","type":"text/plain"},"key":"uploadedTime","value":"1571042449..1571301649"},{"description":{"content":"<p>Filter by last modified time. (Value is in Unix timestamp format)</p>\n","type":"text/plain"},"key":"lastModified","value":"1571042449..1571301649"},{"description":{"content":"<p>Filte by image size.\n<strong>Note:</strong> This filter works only on images.</p>\n","type":"text/plain"},"key":"dimension","value":"77..3840"},{"description":{"content":"<p>Filter by resolution in DPI\n<strong>Note:</strong> This filter works only on images.</p>\n","type":"text/plain"},"key":"resolution","value":"5..350"},{"description":{"content":"<p>\"landscape\", \"portrait\" or \"square\"\n<strong>Note:</strong> This filter works only on images.\n**Examples:**<br />One value: landscape\nMulti values: landscape|portrait</p>\n<p><em>Note:</em> The | character needs to be url encoded with %7C: Example: landscape%7Cportrait</p>\n","type":"text/plain"},"key":"orientation","value":"landscape"},{"description":{"content":"<p>Filter by duration.\n<strong>Note:</strong> This filter works only on video or audio.</p>\n","type":"text/plain"},"key":"duration","value":"9..1205"},{"description":{"content":"<p>Filter by page number.\n<strong>Note:</strong> This filter works only on document or presentation.</p>\n","type":"text/plain"},"key":"pageNumber","value":"6..482"},{"description":{"content":"<p>Filter by a custom field. \nThe name of the parameter needs to be the id of the custom field. (see: <a href=\"#d6260a54-a154-4576-8c38-ac79b3752e12\">Get custom field list</a>)\nAs an example, custom field id would look similar to \"meta_text_0\".\nFilter by specified custom field with id.\nThe type means custom field type, including \"text\", \"num\", \"date\", \"choice\", \"multichoice\" &amp; \"url\"; the sequence is an immutable integer given by system. \nYou could find the whole part in web page URL when filter by the same custom field in our system.</p>\n","type":"text/plain"},"key":"{{customFieldId}}","value":"exampleValue"},{"description":{"content":"<p>You can search inside the following fields: \"filename\", \"description\", \"comment\", \"keywords\", \"author\" and \"tags\".\nIf you input other values, the results will ignore it.</p>\n","type":"text/plain"},"key":"searchInField","value":"filename"},{"description":{"content":"<p>exactMatch: \"true\" or \"false\"\nDefault: false</p>\n","type":"text/plain"},"key":"exactMatch","value":"false"},{"description":{"content":"<p>Operator: \"and\", \"or\".\nDefault: \"and\"</p>\n","type":"text/plain"},"key":"operator","value":"and"},{"description":{"content":"<p>\"name\",\"time\", \"scheme\", \"owner\" or \"size\"</p>\n<p>Default: \"time\"</p>\n","type":"text/plain"},"key":"sortBy","value":"time"},{"description":{"content":"<p>“ascending” or “descending”</p>\n","type":"text/plain"},"key":"sortDirection","value":"ascending"},{"description":{"content":"<p>Offset number of items to be returned.</p>\n<p>Default: 0</p>\n","type":"text/plain"},"key":"start","value":"0"},{"description":{"content":"<p>The maximum number of items to be returned.</p>\n<p>Default: 100\nMax: 1000</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"description":{"content":"<p>\"standard\" or \"freeze\"</p>\n<p>**Examples:**<br />One value: standard<br />Multi values with OR: standard|freeze</p>\n","type":"text/plain"},"key":"storageClass","value":"standard|freeze"}],"variable":[{"description":{"content":"<p>The id of the album, which content will be returned.</p>\n<p>Put in \"Unassigned\" to get all assets which are not assigned to an album!</p>\n","type":"text/plain"},"type":"any","value":"{{albumId}}","key":"albumId"}]}},"response":[{"id":"85e92248-d757-4e1c-9cbe-5bcc4be6aafc","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/album/:albumId?sortBy=time&sortDirection=ascending&start=0&limit=100","host":["{{SITE_BASEURL}}"],"path":["api","v1","album",":albumId"],"query":[{"key":"sortBy","value":"time","description":"\"name\",\"time\", \"scheme\", \"owner\" or \"size\"\n\nDefault: \"time\""},{"key":"sortDirection","value":"ascending","description":"“ascending” or “descending”"},{"key":"start","value":"0","description":"Offset number of items to be returned.\n\nDefault: 0"},{"key":"limit","value":"100","description":"The maximum number of items to be returned.\n\nDefault: 100"}],"variable":[{"id":"080ad647-6648-41bb-aac5-b5a384ea7608","key":"albumId","type":"string","value":"{{albumId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 06 Jan 2021 15:26:46 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Tue, 05-Jan-2021 15:26:45 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"facets\": [\n        {\n            \"mix\": 72,\n            \"max\": 72,\n            \"name\": \"resolution\",\n            \"min\": 72\n        },\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"name\": \"duration\",\n            \"min\": 9223372036854775807\n        },\n        {\n            \"name\": \"tags\",\n            \"value\": [\n                \"Backpack\"\n            ]\n        },\n        {\n            \"name\": \"keywords\",\n            \"value\": [\n                \"Product\"\n            ]\n        },\n        {\n            \"mix\": 2448,\n            \"max\": 5073,\n            \"name\": \"dimension\",\n            \"min\": 2448\n        },\n        {\n            \"name\": \"owner\",\n            \"value\": [\n                \"canto-support@canto.com\"\n            ]\n        },\n        {\n            \"name\": \"orientation\"\n        },\n        {\n            \"name\": \"storageClass\",\n            \"value\": [\n                \"standard\"\n            ]\n        },\n        {\n            \"name\": \"approval\",\n            \"value\": [\n                \"Approved\"\n            ]\n        },\n        {\n            \"mix\": 1609856887,\n            \"max\": 1609856989,\n            \"name\": \"created\",\n            \"min\": 1609856887\n        },\n        {\n            \"name\": \"scheme\",\n            \"value\": [\n                \"image\"\n            ]\n        },\n        {\n            \"mix\": 1064389,\n            \"max\": 6864968,\n            \"name\": \"fileSize\",\n            \"min\": 1064389\n        },\n        {\n            \"mix\": 9223372036854775807,\n            \"max\": -9223372036854775808,\n            \"name\": \"pageNumber\",\n            \"min\": 9223372036854775807\n        }\n    ],\n    \"limit\": 100,\n    \"found\": 5,                     // The total number of assets found on server.\n    \"sortBy\": \"time\",\n    \"sortDirection\": \"ascending\",\n    \"matchExpr\": \"es\",\n    \"results\": [                    // provides a brief list of information on the content.array maintain all brief info list of the content.\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"time\": \"20210105062807000\",\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/032vhl3gh160d2kvf6s4353063/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=032vhl3gh160d2kvf6s4353063\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/032vhl3gh160d2kvf6s4353063/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-orange-3200-woman.jpg\",\n            \"default\": {\n                \"Size\": \"1064389\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"2448*3264 Pixels\",\n                \"Date uploaded\": \"20210105062807000\",\n                \"Date modified\": \"20210105062807000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"032vhl3gh160d2kvf6s4353063\",\n            \"size\": \"1064389\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\n                    },\n                    \"id\": \"JARDF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"SHFO1/JARDF\"\n                }\n            ],\n            \"width\": \"2448\",\n            \"height\": \"3264\",\n            \"dpi\": \"72\",\n            \"ownerName\": \"Canto Support\",\n            \"approvalStatus\": \"Approved\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"time\": \"20210105062829000\",\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/4t7mlrglrh4ur7h9dojppgq502/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=4t7mlrglrh4ur7h9dojppgq502\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/4t7mlrglrh4ur7h9dojppgq502/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-grey-4536-sunrise.jpg\",\n            \"default\": {\n                \"Size\": \"6864968\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"7606*5073 Pixels\",\n                \"Date uploaded\": \"20210105062829000\",\n                \"Date modified\": \"20210105062829000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"4t7mlrglrh4ur7h9dojppgq502\",\n            \"size\": \"6864968\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\n                    },\n                    \"id\": \"JARDF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"SHFO1/JARDF\"\n                }\n            ],\n            \"width\": \"7606\",\n            \"height\": \"5073\",\n            \"dpi\": \"72\",\n            \"ownerName\": \"Canto Support\",\n            \"approvalStatus\": \"Approved\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"time\": \"20210105062911000\",\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/g1dgqq3jkl2hp1smqenv8eoq5e/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=g1dgqq3jkl2hp1smqenv8eoq5e\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/g1dgqq3jkl2hp1smqenv8eoq5e/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-grey-4512-utah.jpg\",\n            \"default\": {\n                \"Size\": \"3204622\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"4495*3000 Pixels\",\n                \"Date uploaded\": \"20210105062911000\",\n                \"Date modified\": \"20210105062911000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"g1dgqq3jkl2hp1smqenv8eoq5e\",\n            \"size\": \"3204622\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/KU8U8\"\n                    },\n                    \"id\": \"KU8U8\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"PDUOB/KU8U8\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\n                    },\n                    \"id\": \"JARDF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"SHFO1/JARDF\"\n                }\n            ],\n            \"width\": \"4495\",\n            \"height\": \"3000\",\n            \"dpi\": \"72\",\n            \"ownerName\": \"Canto Support\",\n            \"approvalStatus\": \"Approved\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"time\": \"20210105062945000\",\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/pvaopkuh6p67t06lk11n64et24/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=pvaopkuh6p67t06lk11n64et24\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/pvaopkuh6p67t06lk11n64et24/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-grey-4515-photographer.jpg\",\n            \"default\": {\n                \"Size\": \"3405164\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"3168*4752 Pixels\",\n                \"Date uploaded\": \"20210105062945000\",\n                \"Date modified\": \"20210105062945000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"pvaopkuh6p67t06lk11n64et24\",\n            \"size\": \"3405164\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\n                    },\n                    \"id\": \"JARDF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"SHFO1/JARDF\"\n                }\n            ],\n            \"width\": \"3168\",\n            \"height\": \"4752\",\n            \"dpi\": \"72\",\n            \"ownerName\": \"Canto Support\",\n            \"approvalStatus\": \"Approved\"\n        },\n        {\n            \"keyword\": [\n                \"Product\"\n            ],\n            \"time\": \"20210105062949000\",\n            \"url\": {\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947/preview\",\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947\",\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947/metadata\",\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947/HighJPG\",\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947/PNG\",\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/tokjpfolep2pf1hcadhqu47947/original\",\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=tokjpfolep2pf1hcadhqu47947\",\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/tokjpfolep2pf1hcadhqu47947/800\",\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947/LowJPG\"\n            },\n            \"tag\": [\n                \"Backpack\"\n            ],\n            \"additional\": {\n                \"Clothing Line\": [\n                    \"Packs\"\n                ],\n                \"Product ID\": null,\n                \"Asset Type\": [\n                    \"Product\"\n                ],\n                \"Rating\": null\n            },\n            \"name\": \"backpack-leather-4527-coat.jpg\",\n            \"default\": {\n                \"Size\": \"2507173\",\n                \"Color\": null,\n                \"Uploaded by\": \"canto-support@canto.com\",\n                \"Dimensions\": \"6000*4000 Pixels\",\n                \"Date uploaded\": \"20210105062949000\",\n                \"Date modified\": \"20210105062949000\",\n                \"Name\": null,\n                \"Copyright\": null,\n                \"Modified by\": null,\n                \"Content Type\": null,\n                \"Author\": \"HP\",\n                \"Date Created\": null,\n                \"Creation Tool\": null,\n                \"Resolution\": \"72\"\n            },\n            \"id\": \"tokjpfolep2pf1hcadhqu47947\",\n            \"size\": \"2507173\",\n            \"scheme\": \"image\",\n            \"owner\": \"canto-support@canto.com\",\n            \"relatedAlbums\": [\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\n                    },\n                    \"id\": \"LIBJF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\n                },\n                {\n                    \"url\": {\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\n                    },\n                    \"id\": \"JARDF\",\n                    \"scheme\": \"album\",\n                    \"width\": \"0\",\n                    \"height\": \"0\",\n                    \"dpi\": \"72\",\n                    \"idPath\": \"SHFO1/JARDF\"\n                }\n            ],\n            \"width\": \"6000\",\n            \"height\": \"4000\",\n            \"dpi\": \"72\",\n            \"ownerName\": \"Canto Support\",\n            \"approvalStatus\": \"Approved\"\n        }\n    ]\n}"},{"id":"b0073f60-ffd7-4bf3-a022-21df0f68293e","name":"200 OK - Unassigned Images","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/album/Unassigned?scheme=image","host":["{{SITE_BASEURL}}"],"path":["api","v1","album","Unassigned"],"query":[{"key":"scheme","value":"image"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 06 Jan 2021 15:26:46 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Tue, 05-Jan-2021 15:26:45 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n  \"facets\": [\n    {\n      \"name\": \"fileType\",\n      \"value\": [\n        \"PNG\"\n      ]\n    },\n    {\n      \"mix\": 72,\n      \"min\": 72,\n      \"max\": 72,\n      \"name\": \"resolution\"\n    },\n    {\n      \"mix\": 9223372036854775807,\n      \"min\": 9223372036854775807,\n      \"max\": -9223372036854775808,\n      \"name\": \"duration\"\n    },\n    {\n      \"name\": \"tags\",\n      \"value\": [\n        \"Untagged\",\n        \"Gold\",\n        \"Gold2\",\n        \"Test\",\n        \"Test2\"\n      ]\n    },\n    {\n      \"name\": \"keywords\",\n      \"value\": [\n        \"Unkeyworded\"\n      ]\n    },\n    {\n      \"mix\": 241,\n      \"min\": 241,\n      \"max\": 559,\n      \"name\": \"dimension\"\n    },\n    {\n      \"name\": \"owner\",\n      \"value\": [\n        \"srausch@canto.com\"\n      ]\n    },\n    {\n      \"name\": \"orientation\",\n      \"value\": [\n        \"Landscape\",\n        \"Portrait\"\n      ]\n    },\n    {\n      \"name\": \"storageClass\",\n      \"value\": [\n        \"standard\"\n      ]\n    },\n    {\n      \"name\": \"approval\",\n      \"value\": [\n        \"Pending\",\n        \"Approved\"\n      ]\n    },\n    {\n      \"mix\": 1622537086,\n      \"min\": 1622537086,\n      \"max\": 1671011255,\n      \"name\": \"created\"\n    },\n    {\n      \"name\": \"scheme\",\n      \"value\": [\n        \"image\"\n      ]\n    },\n    {\n      \"mix\": 8292,\n      \"min\": 8292,\n      \"max\": 26384,\n      \"name\": \"fileSize\"\n    },\n    {\n      \"mix\": 9223372036854775807,\n      \"min\": 9223372036854775807,\n      \"max\": -9223372036854775808,\n      \"name\": \"pageNumber\"\n    }\n  ],\n  \"matchExpr\": \"es\",\n  \"results\": [\n    {\n      \"height\": \"604\",\n      \"ownerName\": \"Canto Support\",\n      \"md5\": \"f342699a3e58dff9b32063a5fb2778cc\",\n      \"smartTags\": [\n        \"Gray\"\n      ],\n      \"dpi\": \"72\",\n      \"approvalStatus\": \"Pending\",\n      \"additional\": {\n        \"feed\": null,\n        \"alarm\": null,\n        \"matrix\": null,\n        \"panel\": null\n      },\n      \"url\": {\n        \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/j16d0aiki93nl4s6br2rne863p/preview\",\n        \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/j16d0aiki93nl4s6br2rne863p\",\n        \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/j16d0aiki93nl4s6br2rne863p/metadata\",\n        \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/j16d0aiki93nl4s6br2rne863p/HighJPG\",\n        \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/j16d0aiki93nl4s6br2rne863p/PNG\",\n        \"directUrlOriginal\": \"{{SITE_BASEURL}}/direct/image/j16d0aiki93nl4s6br2rne863p/MiW2ayhajeBMgNRZlP-qJkGx8WM/original?content-type=image%2Fpng&name=Screenshot+2022-12-14+at+10.47.25.png\",\n        \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=j16d0aiki93nl4s6br2rne863p\",\n        \"directUrlPreview\": \"{{SITE_BASEURL}}/direct/image/j16d0aiki93nl4s6br2rne863p/8PYkYBqxNX3R2GrOHb139O-YuEQ/m320/800\",\n        \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/j16d0aiki93nl4s6br2rne863p/LowJPG\"\n      },\n      \"tag\": [\n        \"Untagged\"\n      ],\n      \"time\": \"20221214104735000\",\n      \"width\": \"559\",\n      \"name\": \"Screenshot 2022-12-14 at 10.47.25.png\",\n      \"default\": {\n        \"Size\": \"8292\",\n        \"Color\": \"RGB\",\n        \"Uploaded by\": \"support@canto.com\",\n        \"Dimensions\": \"559*604 Pixels\",\n        \"Date uploaded\": \"20221214104735000\",\n        \"Date modified\": \"20221214104740000\",\n        \"Name\": \"984cd02a5492477a93865ec5bbb90679\",\n        \"Copyright\": null,\n        \"Modified by\": \"Canto Support\",\n        \"Content Type\": \"image/png\",\n        \"Author\": null,\n        \"Date Created\": \"2022-12-14 09:47:35\",\n        \"Creation Tool\": null,\n        \"Resolution\": \"72\"\n      },\n      \"id\": \"j16d0aiki93nl4s6br8rne863p\",\n      \"size\": \"8292\",\n      \"scheme\": \"image\",\n      \"owner\": \"support@canto.com\"\n    },\n    {\n      \"height\": \"241\",\n      \"ownerName\": \"Canto Support\",\n      \"md5\": \"f5abbef904499be8b53600bcd422aa0e\",\n      \"smartTags\": [\n        \"Page\",\n        \"Text\"\n      ],\n      \"dpi\": \"72\",\n      \"approvalStatus\": \"Pending\",\n      \"additional\": {\n        \"feed\": \"C\",\n        \"alarm\": null,\n        \"matrix\": null,\n        \"panel\": null\n      },\n      \"url\": {\n        \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/mm7kj54sa14ar60an4mps79a02/preview\",\n        \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/mm7kj54sa14ar60an4mps79a02\",\n        \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/mm7kj54sa14ar60an4mps79a02/metadata\",\n        \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/mm7kj54sa14ar60an4mps79a02/HighJPG\",\n        \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/mm7kj54sa14ar60an4mps79a02/PNG\",\n        \"directUrlOriginal\": \"{{SITE_BASEURL}}/direct/image/mm7kj54sa14ar60an4mps79a02/8j9ak-G4nPGpODe1VE_6ohxmEyM/original?content-type=image%2Fpng&name=related_group_test.png\",\n        \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=mm7kj54sa14ar60an4mps79a02\",\n        \"directUrlPreview\": \"{{SITE_BASEURL}}/direct/image/mm7kj54sa14ar60an4mps79a02/Bwl3tQXBEEFWH6enTEs_8i-k0Wo/m240/800\",\n        \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/mm7kj54sa14ar60an4mps79a02/LowJPG\"\n      },\n      \"tag\": [\n        \"Gold\",\n        \"Gold2\",\n        \"Test\",\n        \"Test2\"\n      ],\n      \"time\": \"20210910165129000\",\n      \"width\": \"460\",\n      \"name\": \"related_group_test.png\",\n      \"default\": {\n        \"Size\": \"15454\",\n        \"Color\": \"RGB\",\n        \"Uploaded by\": \"support@canto.com\",\n        \"Dimensions\": \"460*241 Pixels\",\n        \"Date uploaded\": \"20210910165129000\",\n        \"Date modified\": \"20210921170650000\",\n        \"Name\": \"b58f49949c5048ad980ab92d9e1d2a02\",\n        \"Copyright\": null,\n        \"Modified by\": \"Canto Support\",\n        \"Content Type\": \"image/png\",\n        \"Author\": \"Apple Computer Inc.\",\n        \"Date Created\": \"2021-09-10 14:51:29\",\n        \"Creation Tool\": null,\n        \"Resolution\": \"72\"\n      },\n      \"id\": \"mm7kj54sa14ar60an4mps79a02\",\n      \"size\": \"15454\",\n      \"scheme\": \"image\",\n      \"owner\": \"support@canto.com\"\n    }\n  ],\n  \"found\": 2,\n  \"sortBy\": \"time\",\n  \"sortDirection\": \"descending\",\n  \"limit\": 100\n}"},{"id":"736dd7ba-731e-4fd8-bb5e-517202b686d2","name":"200 OK - List image of specified height or width","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/album/:albumId?width=400&height=400&imageRangeOperation=or&scheme=image","host":["{{SITE_BASEURL}}"],"path":["api","v1","album",":albumId"],"query":[{"key":"width","value":"400","description":"400  or 400..800   A number, or a range of numbers"},{"key":"height","value":"400","description":"400  or 400..800   A number, or a range of numbers"},{"key":"imageRangeOperation","value":"or","description":"Logical word  \"or\" ,\"and\"  if \"amd\" means  that both height and width are satisfied and \"or\" means  image can be queried if one is satisfied."},{"key":"scheme","value":"image","type":"text"}],"variable":[{"id":"e701e275-1c6d-4cae-b661-3c265a9682fb","key":"albumId","value":"{{albumId}}","type":"string","description":"The id of the album, which content will be returned."}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"facets\": [\r\n        {\r\n            \"mix\": 72,\r\n            \"max\": 72,\r\n            \"name\": \"resolution\",\r\n            \"min\": 72\r\n        },\r\n        {\r\n            \"mix\": 9223372036854775807,\r\n            \"max\": -9223372036854775808,\r\n            \"name\": \"duration\",\r\n            \"min\": 9223372036854775807\r\n        },\r\n        {\r\n            \"name\": \"tags\",\r\n            \"value\": [\r\n                \"Backpack\"\r\n            ]\r\n        },\r\n        {\r\n            \"name\": \"keywords\",\r\n            \"value\": [\r\n                \"Product\"\r\n            ]\r\n        },\r\n        {\r\n            \"mix\": 2448,\r\n            \"max\": 5073,\r\n            \"name\": \"dimension\",\r\n            \"min\": 2448\r\n        },\r\n        {\r\n            \"name\": \"owner\",\r\n            \"value\": [\r\n                \"canto-support@canto.com\"\r\n            ]\r\n        },\r\n        {\r\n            \"name\": \"orientation\"\r\n        },\r\n        {\r\n            \"name\": \"storageClass\",\r\n            \"value\": [\r\n                \"standard\"\r\n            ]\r\n        },\r\n        {\r\n            \"name\": \"approval\",\r\n            \"value\": [\r\n                \"Approved\"\r\n            ]\r\n        },\r\n        {\r\n            \"mix\": 1609856887,\r\n            \"max\": 1609856989,\r\n            \"name\": \"created\",\r\n            \"min\": 1609856887\r\n        },\r\n        {\r\n            \"name\": \"scheme\",\r\n            \"value\": [\r\n                \"image\"\r\n            ]\r\n        },\r\n        {\r\n            \"mix\": 1064389,\r\n            \"max\": 6864968,\r\n            \"name\": \"fileSize\",\r\n            \"min\": 1064389\r\n        },\r\n        {\r\n            \"mix\": 9223372036854775807,\r\n            \"max\": -9223372036854775808,\r\n            \"name\": \"pageNumber\",\r\n            \"min\": 9223372036854775807\r\n        }\r\n    ],\r\n    \"limit\": 100,\r\n    \"found\": 5,                     // The total number of assets found on server.\r\n    \"sortBy\": \"time\",\r\n    \"sortDirection\": \"ascending\",\r\n    \"matchExpr\": \"es\",\r\n    \"results\": [                    // provides a brief list of information on the content.array maintain all brief info list of the content.\r\n        {\r\n            \"keyword\": [\r\n                \"Product\"\r\n            ],\r\n            \"time\": \"20210105062807000\",\r\n            \"url\": {\r\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/preview\",\r\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063\",\r\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/metadata\",\r\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/HighJPG\",\r\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/PNG\",\r\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/032vhl3gh160d2kvf6s4353063/original\",\r\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=032vhl3gh160d2kvf6s4353063\",\r\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/032vhl3gh160d2kvf6s4353063/800\",\r\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/032vhl3gh160d2kvf6s4353063/LowJPG\"\r\n            },\r\n            \"tag\": [\r\n                \"Backpack\"\r\n            ],\r\n            \"additional\": {\r\n                \"Clothing Line\": [\r\n                    \"Packs\"\r\n                ],\r\n                \"Product ID\": null,\r\n                \"Asset Type\": [\r\n                    \"Product\"\r\n                ],\r\n                \"Rating\": null\r\n            },\r\n            \"name\": \"backpack-orange-3200-woman.jpg\",\r\n            \"default\": {\r\n                \"Size\": \"1064389\",\r\n                \"Color\": null,\r\n                \"Uploaded by\": \"canto-support@canto.com\",\r\n                \"Dimensions\": \"2448*3264 Pixels\",\r\n                \"Date uploaded\": \"20210105062807000\",\r\n                \"Date modified\": \"20210105062807000\",\r\n                \"Name\": null,\r\n                \"Copyright\": null,\r\n                \"Modified by\": null,\r\n                \"Content Type\": null,\r\n                \"Author\": \"HP\",\r\n                \"Date Created\": null,\r\n                \"Creation Tool\": null,\r\n                \"Resolution\": \"72\"\r\n            },\r\n            \"id\": \"032vhl3gh160d2kvf6s4353063\",\r\n            \"size\": \"1064389\",\r\n            \"scheme\": \"image\",\r\n            \"owner\": \"canto-support@canto.com\",\r\n            \"relatedAlbums\": [\r\n                {\r\n                    \"url\": {\r\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\r\n                    },\r\n                    \"id\": \"LIBJF\",\r\n                    \"scheme\": \"album\",\r\n                    \"width\": \"0\",\r\n                    \"height\": \"0\",\r\n                    \"dpi\": \"72\",\r\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\r\n                },\r\n                {\r\n                    \"url\": {\r\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\r\n                    },\r\n                    \"id\": \"JARDF\",\r\n                    \"scheme\": \"album\",\r\n                    \"width\": \"0\",\r\n                    \"height\": \"0\",\r\n                    \"dpi\": \"72\",\r\n                    \"idPath\": \"SHFO1/JARDF\"\r\n                }\r\n            ],\r\n            \"width\": \"2448\",\r\n            \"height\": \"3264\",\r\n            \"dpi\": \"72\",\r\n            \"ownerName\": \"Canto Support\",\r\n            \"approvalStatus\": \"Approved\"\r\n        },\r\n        {\r\n            \"keyword\": [\r\n                \"Product\"\r\n            ],\r\n            \"time\": \"20210105062829000\",\r\n            \"url\": {\r\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/preview\",\r\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502\",\r\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/metadata\",\r\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/HighJPG\",\r\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/PNG\",\r\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/4t7mlrglrh4ur7h9dojppgq502/original\",\r\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=4t7mlrglrh4ur7h9dojppgq502\",\r\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/4t7mlrglrh4ur7h9dojppgq502/800\",\r\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/4t7mlrglrh4ur7h9dojppgq502/LowJPG\"\r\n            },\r\n            \"tag\": [\r\n                \"Backpack\"\r\n            ],\r\n            \"additional\": {\r\n                \"Clothing Line\": [\r\n                    \"Packs\"\r\n                ],\r\n                \"Product ID\": null,\r\n                \"Asset Type\": [\r\n                    \"Product\"\r\n                ],\r\n                \"Rating\": null\r\n            },\r\n            \"name\": \"backpack-grey-4536-sunrise.jpg\",\r\n            \"default\": {\r\n                \"Size\": \"6864968\",\r\n                \"Color\": null,\r\n                \"Uploaded by\": \"canto-support@canto.com\",\r\n                \"Dimensions\": \"7606*5073 Pixels\",\r\n                \"Date uploaded\": \"20210105062829000\",\r\n                \"Date modified\": \"20210105062829000\",\r\n                \"Name\": null,\r\n                \"Copyright\": null,\r\n                \"Modified by\": null,\r\n                \"Content Type\": null,\r\n                \"Author\": \"HP\",\r\n                \"Date Created\": null,\r\n                \"Creation Tool\": null,\r\n                \"Resolution\": \"72\"\r\n            },\r\n            \"id\": \"4t7mlrglrh4ur7h9dojppgq502\",\r\n            \"size\": \"6864968\",\r\n            \"scheme\": \"image\",\r\n            \"owner\": \"canto-support@canto.com\",\r\n            \"relatedAlbums\": [\r\n                {\r\n                    \"url\": {\r\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\r\n                    },\r\n                    \"id\": \"LIBJF\",\r\n                    \"scheme\": \"album\",\r\n                    \"width\": \"0\",\r\n                    \"height\": \"0\",\r\n                    \"dpi\": \"72\",\r\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\r\n                },\r\n                {\r\n                    \"url\": {\r\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\r\n                    },\r\n                    \"id\": \"JARDF\",\r\n                    \"scheme\": \"album\",\r\n                    \"width\": \"0\",\r\n                    \"height\": \"0\",\r\n                    \"dpi\": \"72\",\r\n                    \"idPath\": \"SHFO1/JARDF\"\r\n                }\r\n            ],\r\n            \"width\": \"7606\",\r\n            \"height\": \"5073\",\r\n            \"dpi\": \"72\",\r\n            \"ownerName\": \"Canto Support\",\r\n            \"approvalStatus\": \"Approved\"\r\n        },\r\n        {\r\n            \"keyword\": [\r\n                \"Product\"\r\n            ],\r\n            \"time\": \"20210105062911000\",\r\n            \"url\": {\r\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/preview\",\r\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e\",\r\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/metadata\",\r\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/HighJPG\",\r\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/PNG\",\r\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/g1dgqq3jkl2hp1smqenv8eoq5e/original\",\r\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=g1dgqq3jkl2hp1smqenv8eoq5e\",\r\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/g1dgqq3jkl2hp1smqenv8eoq5e/800\",\r\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/g1dgqq3jkl2hp1smqenv8eoq5e/LowJPG\"\r\n            },\r\n            \"tag\": [\r\n                \"Backpack\"\r\n            ],\r\n            \"additional\": {\r\n                \"Clothing Line\": [\r\n                    \"Packs\"\r\n                ],\r\n                \"Product ID\": null,\r\n                \"Asset Type\": [\r\n                    \"Product\"\r\n                ],\r\n                \"Rating\": null\r\n            },\r\n            \"name\": \"backpack-grey-4512-utah.jpg\",\r\n            \"default\": {\r\n                \"Size\": \"3204622\",\r\n                \"Color\": null,\r\n                \"Uploaded by\": \"canto-support@canto.com\",\r\n                \"Dimensions\": \"4495*3000 Pixels\",\r\n                \"Date uploaded\": \"20210105062911000\",\r\n                \"Date modified\": \"20210105062911000\",\r\n                \"Name\": null,\r\n                \"Copyright\": null,\r\n                \"Modified by\": null,\r\n                \"Content Type\": null,\r\n                \"Author\": \"HP\",\r\n                \"Date Created\": null,\r\n                \"Creation Tool\": null,\r\n                \"Resolution\": \"72\"\r\n            },\r\n            \"id\": \"g1dgqq3jkl2hp1smqenv8eoq5e\",\r\n            \"size\": \"3204622\",\r\n            \"scheme\": \"image\",\r\n            \"owner\": \"canto-support@canto.com\",\r\n            \"relatedAlbums\": [\r\n                {\r\n                    \"url\": {\r\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\r\n                    },\r\n                    \"id\": \"LIBJF\",\r\n                    \"scheme\": \"album\",\r\n                    \"width\": \"0\",\r\n                    \"height\": \"0\",\r\n                    \"dpi\": \"72\",\r\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\r\n                },\r\n                {\r\n                    \"url\": {\r\n                        \"detail\": \"{{SITE_BASEURL}}/album/KU8U8\"\r\n                    },\r\n                    \"id\": \"KU8U8\",\r\n                    \"scheme\": \"album\",\r\n                    \"width\": \"0\",\r\n                    \"height\": \"0\",\r\n                    \"dpi\": \"72\",\r\n                    \"idPath\": \"PDUOB/KU8U8\"\r\n                },\r\n                {\r\n                    \"url\": {\r\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\r\n                    },\r\n                    \"id\": \"JARDF\",\r\n                    \"scheme\": \"album\",\r\n                    \"width\": \"0\",\r\n                    \"height\": \"0\",\r\n                    \"dpi\": \"72\",\r\n                    \"idPath\": \"SHFO1/JARDF\"\r\n                }\r\n            ],\r\n            \"width\": \"4495\",\r\n            \"height\": \"3000\",\r\n            \"dpi\": \"72\",\r\n            \"ownerName\": \"Canto Support\",\r\n            \"approvalStatus\": \"Approved\"\r\n        },\r\n        {\r\n            \"keyword\": [\r\n                \"Product\"\r\n            ],\r\n            \"time\": \"20210105062945000\",\r\n            \"url\": {\r\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/preview\",\r\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24\",\r\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/metadata\",\r\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/HighJPG\",\r\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/PNG\",\r\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/pvaopkuh6p67t06lk11n64et24/original\",\r\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=pvaopkuh6p67t06lk11n64et24\",\r\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/pvaopkuh6p67t06lk11n64et24/800\",\r\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/pvaopkuh6p67t06lk11n64et24/LowJPG\"\r\n            },\r\n            \"tag\": [\r\n                \"Backpack\"\r\n            ],\r\n            \"additional\": {\r\n                \"Clothing Line\": [\r\n                    \"Packs\"\r\n                ],\r\n                \"Product ID\": null,\r\n                \"Asset Type\": [\r\n                    \"Product\"\r\n                ],\r\n                \"Rating\": null\r\n            },\r\n            \"name\": \"backpack-grey-4515-photographer.jpg\",\r\n            \"default\": {\r\n                \"Size\": \"3405164\",\r\n                \"Color\": null,\r\n                \"Uploaded by\": \"canto-support@canto.com\",\r\n                \"Dimensions\": \"3168*4752 Pixels\",\r\n                \"Date uploaded\": \"20210105062945000\",\r\n                \"Date modified\": \"20210105062945000\",\r\n                \"Name\": null,\r\n                \"Copyright\": null,\r\n                \"Modified by\": null,\r\n                \"Content Type\": null,\r\n                \"Author\": \"HP\",\r\n                \"Date Created\": null,\r\n                \"Creation Tool\": null,\r\n                \"Resolution\": \"72\"\r\n            },\r\n            \"id\": \"pvaopkuh6p67t06lk11n64et24\",\r\n            \"size\": \"3405164\",\r\n            \"scheme\": \"image\",\r\n            \"owner\": \"canto-support@canto.com\",\r\n            \"relatedAlbums\": [\r\n                {\r\n                    \"url\": {\r\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\r\n                    },\r\n                    \"id\": \"LIBJF\",\r\n                    \"scheme\": \"album\",\r\n                    \"width\": \"0\",\r\n                    \"height\": \"0\",\r\n                    \"dpi\": \"72\",\r\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\r\n                },\r\n                {\r\n                    \"url\": {\r\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\r\n                    },\r\n                    \"id\": \"JARDF\",\r\n                    \"scheme\": \"album\",\r\n                    \"width\": \"0\",\r\n                    \"height\": \"0\",\r\n                    \"dpi\": \"72\",\r\n                    \"idPath\": \"SHFO1/JARDF\"\r\n                }\r\n            ],\r\n            \"width\": \"3168\",\r\n            \"height\": \"4752\",\r\n            \"dpi\": \"72\",\r\n            \"ownerName\": \"Canto Support\",\r\n            \"approvalStatus\": \"Approved\"\r\n        },\r\n        {\r\n            \"keyword\": [\r\n                \"Product\"\r\n            ],\r\n            \"time\": \"20210105062949000\",\r\n            \"url\": {\r\n                \"preview\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947/preview\",\r\n                \"download\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947\",\r\n                \"metadata\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947/metadata\",\r\n                \"HighJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947/HighJPG\",\r\n                \"PNG\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947/PNG\",\r\n                \"directUrlOriginal\": \"{{SITE_BASEURL}}/download/image/tokjpfolep2pf1hcadhqu47947/original\",\r\n                \"detail\": \"{{SITE_BASEURL}}/smartalbum/image?column=image&id=tokjpfolep2pf1hcadhqu47947\",\r\n                \"directUrlPreview\": \"{{SITE_BASEURL}}/preview/image/tokjpfolep2pf1hcadhqu47947/800\",\r\n                \"LowJPG\": \"{{SITE_BASEURL}}/api_binary/v1/image/tokjpfolep2pf1hcadhqu47947/LowJPG\"\r\n            },\r\n            \"tag\": [\r\n                \"Backpack\"\r\n            ],\r\n            \"additional\": {\r\n                \"Clothing Line\": [\r\n                    \"Packs\"\r\n                ],\r\n                \"Product ID\": null,\r\n                \"Asset Type\": [\r\n                    \"Product\"\r\n                ],\r\n                \"Rating\": null\r\n            },\r\n            \"name\": \"backpack-leather-4527-coat.jpg\",\r\n            \"default\": {\r\n                \"Size\": \"2507173\",\r\n                \"Color\": null,\r\n                \"Uploaded by\": \"canto-support@canto.com\",\r\n                \"Dimensions\": \"6000*4000 Pixels\",\r\n                \"Date uploaded\": \"20210105062949000\",\r\n                \"Date modified\": \"20210105062949000\",\r\n                \"Name\": null,\r\n                \"Copyright\": null,\r\n                \"Modified by\": null,\r\n                \"Content Type\": null,\r\n                \"Author\": \"HP\",\r\n                \"Date Created\": null,\r\n                \"Creation Tool\": null,\r\n                \"Resolution\": \"72\"\r\n            },\r\n            \"id\": \"tokjpfolep2pf1hcadhqu47947\",\r\n            \"size\": \"2507173\",\r\n            \"scheme\": \"image\",\r\n            \"owner\": \"canto-support@canto.com\",\r\n            \"relatedAlbums\": [\r\n                {\r\n                    \"url\": {\r\n                        \"detail\": \"{{SITE_BASEURL}}/album/LIBJF\"\r\n                    },\r\n                    \"id\": \"LIBJF\",\r\n                    \"scheme\": \"album\",\r\n                    \"width\": \"0\",\r\n                    \"height\": \"0\",\r\n                    \"dpi\": \"72\",\r\n                    \"idPath\": \"N8DOL/MC96V/LIBJF\"\r\n                },\r\n                {\r\n                    \"url\": {\r\n                        \"detail\": \"{{SITE_BASEURL}}/album/JARDF\"\r\n                    },\r\n                    \"id\": \"JARDF\",\r\n                    \"scheme\": \"album\",\r\n                    \"width\": \"0\",\r\n                    \"height\": \"0\",\r\n                    \"dpi\": \"72\",\r\n                    \"idPath\": \"SHFO1/JARDF\"\r\n                }\r\n            ],\r\n            \"width\": \"6000\",\r\n            \"height\": \"4000\",\r\n            \"dpi\": \"72\",\r\n            \"ownerName\": \"Canto Support\",\r\n            \"approvalStatus\": \"Approved\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"3e9800e9-3c6b-436d-82c6-52c8b2770672"},{"name":"List My Collections","event":[{"listen":"prerequest","script":{"id":"123aa941-ee22-48b3-a350-a7e301489e1a","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"471a56cd-6b18-48fa-9080-a438a519ada1","exec":["var jsonData = JSON.parse(responseBody);","var results = jsonData.results","","if (results.length > 0) {","    pm.environment.set(\"collectionId\", results[0].id);","}",""],"type":"text/javascript"}}],"id":"affe4be1-db53-46c1-bb03-1c485c408357","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/mycollections?orderBy=time&sortDirection=ascending","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 1</em></a></p>\n<p>List my collections.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","mycollections"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>\"name\",\"time\", \"type\", \"owner\" or \"size\"\nDefault: \"time\"</p>\n","type":"text/plain"},"key":"orderBy","value":"time"},{"description":{"content":"<p>“ascending” or “descending”</p>\n","type":"text/plain"},"key":"sortDirection","value":"ascending"}],"variable":[]}},"response":[{"id":"8d864ce3-8aff-454a-9122-579533b6f16c","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/mycollections?orderBy=time&sortDirection=ascending","host":["{{SITE_BASEURL}}"],"path":["api","v1","mycollections"],"query":[{"key":"orderBy","value":"time","description":"\"name\",\"time\", \"type\", \"owner\" or \"size\"\nDefault: \"time\""},{"key":"sortDirection","value":"ascending","description":"“ascending” or “descending”"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 22 Jun 2021 10:37:47 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net js-agent.newrelic.com bam.nr-data.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com bam.nr-data.net; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Expect-CT","value":"max-age=86400, enforce"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Mon, 21-Jun-2021 10:37:47 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"syncFlag\": \"false\",\n            \"time\": \"20210622121610142\",\n            \"url\": {\n                \"detail\": \"{{SITE_BASEURL}}/savedFavorites/J4FUE\"\n            },\n            \"name\": \"Test\",\n            \"id\": \"J4FUE\",\n            \"type\": \"Personal\",\n            \"size\": \"2\",\n            \"scheme\": \"savedFavorites\",\n            \"owner\": \"canto-support@canto.com\",\n            \"width\": \"320\",\n            \"height\": \"240\",\n            \"dpi\": \"72\"\n        }\n    ],\n    \"sortBy\": \"time\",\n    \"sortDirection\": \"ascending\",\n    \"found\": 1\n}"}],"_postman_id":"affe4be1-db53-46c1-bb03-1c485c408357"},{"name":"Batch delete Folder/Album to trash bin","id":"bfb346b6-db45-467f-aff0-c3804b4559e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"id\": \"{{folderId}}\",           // The id of the folder/album you want to delete.\r\n        \"scheme\": \"{{scheme}}\"          // REQUIRED - \"folder\", \"album\"\r\n    },\r\n    {\r\n        \"id\": \"{{albumId}}\",            // The id of the folder/album you want to delete.\r\n        \"scheme\": \"{{scheme}}\"          // REQUIRED - \"folder\", \"album\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/folder","description":"<p>Deletes folder(s) or album into trash bin.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","batch","folder"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"9367b22c-b442-463b-92c4-3e802c1d7bac","name":"200 OK - Delete an album","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": \"PKNT0\",\n        \"scheme\": \"album\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/folder"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"permissionFail\": [],   // A list of ids, which failed to delete, because of missing permissions.\n    \"deleteFail\": []        // A list of ids, which failed to delete, because of an error during deletion. \n}"},{"id":"b6a910f6-d368-41d1-8608-75e3e5a0e02b","name":"200 OK - Delete a folder","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": \"FKNTR\",\n        \"scheme\": \"folder\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/folder"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"permissionFail\": [],     // A list of ids, which failed to delete, because of missing permissions.\n    \"deleteFail\": []          // A list of ids, which failed to delete, because of an error during deletion. \n}"}],"_postman_id":"bfb346b6-db45-467f-aff0-c3804b4559e8"},{"name":"Batch Permanently delete the Folder/Album","id":"f99f6981-1334-4451-b7d7-4408ee00f909","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"id\": \"{{folderId}}\",           // The id of the folder/album you want to delete.\r\n        \"scheme\": \"{{scheme}}\"          // REQUIRED - \"folder\", \"album\"\r\n    },\r\n    {\r\n        \"id\": \"{{albumId}}\",            // The id of the folder/album you want to delete.\r\n        \"scheme\": \"{{scheme}}\"          // REQUIRED - \"folder\", \"album\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/folder/permanent","description":"<p>Deletes folder(s) or album permanently from trash bin.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","batch","folder","permanent"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"e5928f13-208f-463f-b627-4e70cf813738","name":"200 OK - Delete an album","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": \"PKNT0\",\n        \"scheme\": \"album\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/folder/permanent"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"permissionFail\": [],   // A list of ids, which failed to delete, because of missing permissions.\n    \"deleteFail\": []        // A list of ids, which failed to delete, because of an error during deletion. \n}"},{"id":"ade1939d-42de-48ae-a5ad-856646bb99fa","name":"200 OK - Delete a folder","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": \"FKNTR\",\n        \"scheme\": \"folder\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/folder/permanent"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"permissionFail\": [],   // A list of ids, which failed to delete, because of missing permissions.\n    \"deleteFail\": []        // A list of ids, which failed to delete, because of an error during deletion. \n}"}],"_postman_id":"f99f6981-1334-4451-b7d7-4408ee00f909"}],"id":"931fb684-87ab-4a1c-b0f4-29d1c3091c2d","_postman_id":"931fb684-87ab-4a1c-b0f4-29d1c3091c2d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}}},{"name":"Upload","item":[{"name":"Get upload setting","event":[{"listen":"test","script":{"id":"35380535-1756-4c0d-a1cf-0eeebf1f787d","exec":["var jsonData = JSON.parse(responseBody);","","pm.environment.set(\"uploadPolicy\", jsonData.Policy);","pm.environment.set(\"uploadMetaScheme\", jsonData[\"x-amz-meta-scheme\"]);","pm.environment.set(\"uploadSignature\", jsonData.Signature);","pm.environment.set(\"uploadAWSAccessKeyId\", jsonData.AWSAccessKeyId);","pm.environment.set(\"uploadMetaAlbumId\", jsonData[\"x-amz-meta-album_id\"]);","pm.environment.set(\"uploadAcl\", jsonData.acl);","pm.environment.set(\"uploadMetaTag\", jsonData[\"x-amz-meta-tag\"]);","pm.environment.set(\"uploadMetaId\", jsonData[\"x-amz-meta-id\"]);","pm.environment.set(\"uploadMetaFilename\", jsonData[\"x-amz-meta-file_name\"]);","pm.environment.set(\"uploadUrl\", jsonData.url);","pm.environment.set(\"uploadKey\", jsonData.key);","pm.environment.set(\"xAmzAlgorithm\", jsonData[\"x-amz-algorithm\"])","pm.environment.set(\"xAmzDate\", jsonData[\"x-amz-date\"])","pm.environment.set(\"xAmzCredential\", jsonData[\"x-amz-credential\"])","pm.environment.set(\"xAmzSignature\", jsonData[\"x-amz-Signature\"])",""],"type":"text/javascript","packages":{}}}],"id":"9845f0ed-d805-49f2-a6cb-0185e8d6c1f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/upload/setting","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 1</em></a></p>\n<p>Before <a href=\"##ae87e780-f9e4-4c65-bd11-3515b0c4eaa9\">uploading a file</a>, you need to retrive this setting.</p>\n<p><strong>Note:</strong> An upload setting is valid for 5 hours. You will need to retrive settings again after 5 hours to continue use.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","upload","setting"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"15606027-806b-4ae8-8181-250a5101ab01","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/upload/setting"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 06 Jan 2021 15:42:38 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Tue, 05-Jan-2021 15:42:38 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"Policy\": \"eyAiZXhwaXJhdGlvbiI6ICIyMDIxLTAxLTA2VDIxOjQyOjM4LjkzN1oiLAogICJjb25kaXRpb25zIjogWwogICAgeyJidWNrZXQiOiAiZGVmYXVsdC11cGxvYWQtYnVja2V0LXN0YWdpbmctcHVibGljIn0sCiAgICB7ImFjbCI6ICJwcml2YXRlIn0sCiAgICBbInN0YXJ0cy13aXRoIiwgIiRrZXkiLCAiYmM0ZjllZjYtYzRkNS00MGQxLTlhM2QtYjA4MThmZWRlZDNkL2FrcmlzaG5hY2hhbmRyYW5AY2FudG8uY29tIl0sCiAgICBbInN0YXJ0cy13aXRoIiwgIiR4LWFtei1tZXRhLWZpbGVfbmFtZSIsICIiXSwKICAgIFsic3RhcnRzLXdpdGgiLCAiJHgtYW16LW1ldGEtdGFnIiwgIiJdLAogICAgWyJzdGFydHMtd2l0aCIsICIkeC1hbXotbWV0YS1zY2hlbWUiLCAiIl0sCiAgICBbInN0YXJ0cy13aXRoIiwgIiR4LWFtei1tZXRhLWlkIiwgIiJdLAogICAgWyJzdGFydHMtd2l0aCIsICIkeC1hbXotbWV0YS1hbGJ1bV9pZCIsICIiXQogIF0KfQ==\",\n    \"x-amz-meta-scheme\": \"\",\n    \"Signature\": \"EjqtUj2JDqg3Iw/QD28tJCA+LWw=\",\n    \"AWSAccessKeyId\": \"AKIAQAWV4S3M6TI2J4BI\",\n    \"x-amz-meta-album_id\": \"\",\n    \"acl\": \"private\",\n    \"x-amz-meta-tag\": \"\",\n    \"x-amz-meta-id\": \"\",\n    \"x-amz-meta-file_name\": \"${filename}\",\n    \"url\": \"https://default-upload-bucket-staging-public.s3-accelerate.amazonaws.com/\",\n    \"key\": \"bc4f9ef6-c4d5-40d1-9a3d-b0818feded3d/akrishnachandran@canto.com/${filename}\"\n}"},{"id":"d480e3e1-0dbd-4348-9523-d50ee06b6b23","name":"200 OK, with parameter v=4","originalRequest":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/upload/setting"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 06 Jan 2021 15:42:38 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Tue, 05-Jan-2021 15:42:38 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n\t\"Policy\": \"eyAiZXhwaXJhdGlvbiI6ICIyMDIyLTAzLTA3VDEzOjU2OjA1LjIxMloiLAogICJjb25kaXRpb25zIjogWwogICAgeyJidWNrZXQiOiAiZGVmYXVsdC1nZXJtYW4tYnVja2V0LXN0YWdpbmctcHVibGljIn0sCiAgICB7ImFjbCI6ICJwcml2YXRlIn0sCiAgICBbInN0YXJ0cy13aXRoIiwgIiRrZXkiLCAiZDFjN2I4MWYtNmZmZi00YzdiLWFjNDMtYWI2YTQxZTJkMDUzL2dsaW5Ab2JqZWN0aXZhc29mdHdhcmUuY29tIl0sCiAgICBbInN0YXJ0cy13aXRoIiwgIiR4LWFtei1tZXRhLWZpbGVfbmFtZSIsICIiXSwKICAgIFsic3RhcnRzLXdpdGgiLCAiJHgtYW16LW1ldGEtdGFnIiwgIiJdLAogICAgWyJzdGFydHMtd2l0aCIsICIkeC1hbXotbWV0YS1zY2hlbWUiLCAiIl0sCiAgICBbInN0YXJ0cy13aXRoIiwgIiR4LWFtei1tZXRhLWlkIiwgIiJdLAogICAgWyJzdGFydHMtd2l0aCIsICIkeC1hbXotbWV0YS1hbGJ1bV9pZCIsICIiXSwKICAgIFsic3RhcnRzLXdpdGgiLCAiJHgtYW16LW1ldGEtcmVmZXJfaWQiLCAiIl0sCiAgICB7IngtYW16LWNyZWRlbnRpYWwiOiAiQUtJQVFBV1Y0UzNNWEhBWVhZNVovMjAyMjAzMDcvZXUtY2VudHJhbC0xL3MzL2F3czRfcmVxdWVzdCJ9LAogICAgeyJ4LWFtei1hbGdvcml0aG0iOiAiQVdTNC1ITUFDLVNIQTI1NiJ9LAogICAgeyJ4LWFtei1kYXRlIjogIjIwMjIwMzA3VDA3NTYwNVoifQogIF0KfQ==\",\n\t\"x-amz-date\": \"20220307T075605Z\",\n\t\"x-amz-meta-album_id\": \"\",\n\t\"acl\": \"private\",\n\t\"x-amz-meta-tag\": \"\",\n\t\"x-amz-meta-file_name\": \"${filename}\",\n\t\"url\": \"https://default-german-bucket-staging-public.s3-accelerate.amazonaws.com/\",\n\t\"x-amz-algorithm\": \"AWS4-HMAC-SHA256\",\n\t\"x-amz-credential\": \"AKIAQAWV4S3MXHAYXY5Z/20220307/eu-central-1/s3/aws4_request\",\n\t\"x-amz-Signature\": \"f3204c85a87c1bf4278300455ec2b11395398554f169eb6f760d8c16d17b56be\",\n\t\"x-amz-meta-scheme\": \"\",\n\t\"x-amz-meta-id\": \"\",\n\t\"x-amz-meta-refer_id\": \"\",\n\t\"key\": \"d1c7b81f-6fff-4c7b-ac43-ab6a41e2d053/glin@objectivasoftware.com/${filename}\"\n}\n"}],"_postman_id":"9845f0ed-d805-49f2-a6cb-0185e8d6c1f3"},{"name":"Upload file","event":[{"listen":"prerequest","script":{"id":"dd3722e3-5c8c-4dde-8099-ac74f34a0c48","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"23711dde-f39b-4354-be68-fad7b08bf80b","exec":[""],"type":"text/javascript"}}],"id":"d60eb342-0e3e-46ca-bed0-f4073c862412","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"description":"<p>REQUIRED - The upload key from the upload settings</p>\n","key":"key","type":"text","value":"{{uploadKey}}"},{"description":"<p>REQUIRED - The uploadAcl value from the upload settings (in most cases \"private\"</p>\n","key":"acl","type":"text","value":"{{uploadAcl}}"},{"description":"<p>REQUIRED - The uploadAWSAccessKeyId from the upload settings.</p>\n","key":"AWSAccessKeyId","type":"text","value":"{{uploadAWSAccessKeyId}}"},{"description":"<p>REQUIRED - The Policy from the upload settings</p>\n","key":"Policy","type":"text","value":"{{uploadPolicy}}"},{"description":"<p>REQUIRED - The Signature from the upload settings. </p>\n","key":"Signature","type":"text","value":"{{uploadSignature}}"},{"description":"<p>REQUIRED - The name of the file (with extension).</p>\n","key":"x-amz-meta-file_name","type":"text","value":"myFile.jpg"},{"key":"x-amz-meta-tag","type":"text","value":"","description":"<p>REQUIRED – Please just leave this value empty. This is for future expansion.</p>\n"},{"key":"x-amz-meta-scheme","type":"text","value":"image","description":"<p>REQUIRED - If you want to update an existing asset, value should be the scheme of the existing asset. \nIn the Query upload status API, it will return this field value, if you have set this value.</p>\n<p>Leave this parameter emtpy if you want to upload a new asset.</p>\n"},{"key":"x-amz-meta-id","type":"text","value":"ds84vq4bg10uda46olvptmuf5l","description":"<p>REQUIRED - If you want to update an existing asset, value should be the id of the existing asset.\nIn the Query upload status API, it will return this field value, if you have set this value.</p>\n<p>Leave this parameter emtpy if you want to upload a new asset.</p>\n"},{"key":"x-amz-meta-album_id","type":"text","value":"","description":"<p>REQUIRED - If the asset should be assigned to an existing album, value should be the album id of this album. </p>\n<p>Leave this parameter emtpy if the asset should not be assigned to any album.</p>\n"},{"key":"x-amz-meta-refer_id","value":"08c8af8d-d3bb-4d40-bc3d-51a5f0019a5f","description":"<p>OPTIONAL - If you want to use a customized way to track which file is uploading, you can use this field. In the Query upload status API, it will return this field value, if you have set this value.\nNotice, if you want to use this customized way, you must set parameter refer=true in the Get upload setting API.</p>\n","type":"text"},{"description":"<p>REQUIRED - The file to upload</p>\n<p><strong>Note:</strong> This part must be the last part inside your request.\\ \nYou cannot upload more than one file at a time.\nUse different filenames on each upload.</p>\n","key":"file","type":"file","src":"/Users/image.jpg"}]},"url":"{{uploadUrl}}","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 1</em></a></p>\n<p>Upload a file directly into the Canto S3 bucket. Construct a form based on the settings retrieved.</p>\n<p>The form and policy must be UTF-8 encoded. You can apply UTF-8 encoding to the form by specifying it in the HTML heading or as a request header.</p>\n<p>The enclosure type (enctype) must be specified and must be set to multipart/form-data for both file uploads and text area uploads. For more information, refer to RFC 1867.</p>\n<p><strong>Note:</strong></p>\n<ul>\n<li>max upload size is: 5 GB</li>\n<li>You need to call request: <a href=\"#96bb505f-c699-454b-9134-df6001081b88\">Get Upload Setting</a> to get upload settings, before.</li>\n<li>Please refer to Amazon document for details. <a href=\"http://docs.aws.amazon.com/AmazonS3/latest/dev/HTTPPOSTForms.html\">http://docs.aws.amazon.com/AmazonS3/latest/dev/HTTPPOSTForms.html</a></li>\n</ul>\n","urlObject":{"host":["{{uploadUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d60eb342-0e3e-46ca-bed0-f4073c862412"},{"name":"Upload file (.de and .ca.canto.com Environment)","event":[{"listen":"prerequest","script":{"id":"a94beaed-d99c-48d9-8c11-ba066789ab0d","exec":["const utils = eval(globals.loadUtils)","","utils.checkVariable(\"uploadKey\")","utils.checkVariable(\"uploadAcl\")","utils.checkVariable(\"uploadAWSAccessKeyId\")","utils.checkVariable(\"uploadPolicy\")","utils.checkVariable(\"uploadSignature\")"],"type":"text/javascript"}},{"listen":"test","script":{"id":"8c9c831f-a337-4e23-b8fc-fa4911f6c65f","exec":[""],"type":"text/javascript"}}],"id":"321db3cd-5a3a-4042-90f7-43c946716666","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"description":"<p>REQUIRED - The upload key from the upload settings</p>\n","key":"key","type":"text","value":"{{uploadKey}}"},{"description":"<p>REQUIRED - The uploadAcl value from the upload settings (in most cases \"private\"</p>\n","key":"acl","type":"text","value":"{{uploadAcl}}"},{"description":"<p>REQUIRED - The Policy from the upload settings.</p>\n","key":"Policy","type":"text","value":"{{uploadPolicy}}"},{"description":"<p>REQUIRED - The name of the file (with extension).</p>\n","key":"x-amz-meta-file_name","type":"text","value":"myFile.jpg"},{"key":"x-amz-meta-tag","type":"text","value":"","description":"<p>REQUIRED – Please just leave this value empty. This is for future expansion.</p>\n"},{"key":"x-amz-meta-scheme","type":"text","value":"","description":"<p>REQUIRED - If you want to update an existing asset, value should be the scheme of the existing asset. \nIn the Query upload status API, it will return this field value, if you have set this value.</p>\n<p>Leave this parameter emtpy if you want to upload a new asset.</p>\n"},{"key":"x-amz-meta-id","type":"text","value":"","description":"<p>REQUIRED - If you want to update an existing asset, value should be the id of the existing asset.\nIn the Query upload status API, it will return this field value, if you have set this value.</p>\n<p>Leave this parameter emtpy if you want to upload a new asset.</p>\n"},{"key":"x-amz-meta-album_id","type":"text","value":"","description":"<p>REQUIRED - If the asset should be assigned to an existing album, value should be the album id of this album. </p>\n<p>Leave this parameter emtpy if the asset should not be assigned to any album.</p>\n"},{"key":"x-amz-date","value":"{{xAmzDate}}","description":"<p>REQUIRED - It is from upload settings.</p>\n","type":"text"},{"key":"x-amz-algorithm","value":"{{xAmzAlgorithm}}","description":"<p>REQUIRED - The algorithm token from upload settings</p>\n","type":"text"},{"key":"x-amz-credential","value":"{{xAmzCredential}}","description":"<p>REQUIRED - The credential value from upload settings</p>\n","type":"text"},{"key":"x-amz-Signature","value":"{{xAmzSignature}}","description":"<p>REQUIRED - The signature value from upload settings</p>\n","type":"text"},{"key":"x-amz-meta-refer_id","value":"","description":"<p>OPTIONAL - If you want to use a customized way to track which file is uploading, you can use this field. In the Query upload status API, it will return this field value, if you have set this value.\nNotice, if you want to use this customized way, you must set parameter refer=true in the Get upload setting API.</p>\n","type":"text"},{"description":"<p>REQUIRED - The file to upload</p>\n<p><strong>Note:</strong> This part must be the last part inside your request.\\ \nYou cannot upload more than one file at a time.\n<strong>Note:</strong> Use different filenames on each upload.</p>\n","key":"file","type":"file","src":"/Users/image.jpg"}]},"url":"{{uploadUrl}}","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 1</em></a></p>\n<p>Upload a file directly into the Canto S3 bucket. Construct a form based on the settings retrieved.</p>\n<p>The form and policy must be UTF-8 encoded. You can apply UTF-8 encoding to the form by specifying it in the HTML heading or as a request header.</p>\n<p>The enclosure type (enctype) must be specified and must be set to multipart/form-data for both file uploads and text area uploads. For more information, refer to RFC 1867.</p>\n<p><strong>Note:</strong></p>\n<ul>\n<li>max upload size is: 5 GB</li>\n<li>You need to call request: <a href=\"#96bb505f-c699-454b-9134-df6001081b88\">Get Upload Setting</a> to get upload settings, before.</li>\n<li>Please refer to Amazon document for details. <a href=\"http://docs.aws.amazon.com/AmazonS3/latest/dev/HTTPPOSTForms.html\">http://docs.aws.amazon.com/AmazonS3/latest/dev/HTTPPOSTForms.html</a></li>\n</ul>\n","urlObject":{"host":["{{uploadUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"321db3cd-5a3a-4042-90f7-43c946716666"},{"name":"Query upload status","event":[{"listen":"prerequest","script":{"id":"21548295-b017-4108-8312-65d599180e52","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"01571355-78f9-4759-881f-bd8c32cd059d","exec":["var jsonData = JSON.parse(responseBody);","var results = jsonData.results","","","for (var res of results) {","    if(res.status === \"Done\") {","        pm.environment.set(\"contentId\", res.id)","        pm.environment.set(\"contentScheme\", res.scheme)","        return","    }","}",""],"type":"text/javascript"}}],"id":"b304e561-d495-4f87-b41c-ff883def146c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/upload/status?hours=1","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>Query upload status for recently uploaded files.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","upload","status"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>An integer of 1..24.</p>\n<p>Default: 1</p>\n","type":"text/plain"},"key":"hours","value":"1"}],"variable":[]}},"response":[{"id":"1b854a27-fdc8-441e-b3bd-b88191f68c74","name":"200 OK - Initial","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/upload/status?hours=1","host":["{{SITE_BASEURL}}"],"path":["api","v1","upload","status"],"query":[{"key":"hours","value":"1","description":"An integer of 1..24.\n\nDefault: 1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 06 Jan 2021 15:59:53 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Tue, 05-Jan-2021 15:59:53 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"found\": 1,\n    \"results\": [\n        {\n            \"name\": \"canto-support@canto.com\",\n            \"time\": \"20210106155226000\",\n            \"status\": \"Initial\"\n        }\n    ]\n}"},{"id":"e37d0c34-9938-4679-bcfb-40e5d89ec7b3","name":"200 OK - Processing","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/upload/status?hours=1","host":["{{SITE_BASEURL}}"],"path":["api","v1","upload","status"],"query":[{"key":"hours","value":"1","description":"An integer of 1..24.\n\nDefault: 1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 06 Jan 2021 16:02:35 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Tue, 05-Jan-2021 16:02:35 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"found\": 1,\n    \"results\": [\n        {\n            \"name\": \"myFile.jpg\",\n            \"time\": \"20210106160233861\",\n            \"id\": \"cdc20vd89l2ul3d8ahn2uvlh52\",\n            \"status\": \"Processing\"\n        }\n    ]\n}"},{"id":"d5f6c74c-2c9b-4d51-a243-d2a8860f4a0e","name":"200 OK - Done","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/upload/status?hours=1","host":["{{SITE_BASEURL}}"],"path":["api","v1","upload","status"],"query":[{"key":"hours","value":"1","description":"An integer of 1..24.\n\nDefault: 1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 06 Jan 2021 16:03:10 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Tue, 05-Jan-2021 16:03:10 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"found\": 1,\n    \"results\": [\n        {\n            \"scheme\": \"image\",\n            \"name\": \"myFile.jpg\",\n            \"time\": \"20210106160233861\",\n            \"id\": \"cdc20vd89l2ul3d8ahn2uvlh52\",\n            \"status\": \"Done\",\n            \"referId\": \"reference id\"\n        }\n    ]\n}"},{"id":"9f901f3e-9d51-4c5d-9a6b-20e2a92fe3e5","name":"200 OK - Done (Updated Asset)","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/upload/status?hours=1","host":["{{SITE_BASEURL}}"],"path":["api","v1","upload","status"],"query":[{"key":"hours","value":"1","description":"An integer of 1..24.\n\nDefault: 1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 06 Jan 2021 16:03:10 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Tue, 05-Jan-2021 16:03:10 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"found\": 1,\n    \"results\": [\n        {\n            \"scheme\": \"image\",\n            \"name\": \"myFile.jpg\",\n            \"time\": \"20210106160233861\",\n            \"id\": \"cdc20vd89l2ul3d8ahn2uvlh52\",\n            \"status\": \"Done\",\n            \"referId\": \"reference id\",\n            \"originalScheme\": \"image\",\n            \"originalId\": \"2gu9jf4g7514v0qfcrr30jp358\"\n        }\n    ]\n}"}],"_postman_id":"b304e561-d495-4f87-b41c-ff883def146c"},{"name":"Create Upload Links","id":"ee43e047-aa76-4390-bfda-46dd8a18ec58","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"portalName\": \"CantoSupport\",\n  \"description\": \"CantoSupport\",\n  \"emailSubject\": \"Canto Support sent you a request to upload content\",\n  \"emailBody\": \"To upload files, please click on the button below or copy the URL to a browser:\",\n  \"editable\": false,\n  \"isNeverExpired\": true,\n  \"recipients\": [\n    {\n      \"firstName\": \"CantoSupport\",\n      \"lastName\": \"CantoSupport\",\n      \"email\": \"canto-support@canto.com\"\n    }\n  ],\n  \"importToAlbums\":[\n    {\n        \"albumId\": \"PDLQ3\",\n        \"pathWithName\":\"Francisco/Test-Album\",\n        \"portalId\": \"FDLA3\",\n        \"portalName\":\"Library name or the workspace name\"\n    }\n  ]\n} ","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/uploadlink","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>This API support user to create an UploadLink.</p>\n<p>BODYPARAMS</p>\n<hr />\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>portalName</td>\n<td>REQUIRED - Upload link name</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Upload link description</td>\n</tr>\n<tr>\n<td>emailSubject</td>\n<td>REQUIRED - Email subject of the receiver</td>\n</tr>\n<tr>\n<td>emailBody</td>\n<td>REQUIRED - Email body of the receiver</td>\n</tr>\n<tr>\n<td>isNeverExpired</td>\n<td>REQUIRED - The upload link is never expired</td>\n</tr>\n<tr>\n<td>displayExpireDate</td>\n<td>If isNeverExpired == false, it must be setted.  <br />If isNeverExpired == true, it no need to set.</td>\n</tr>\n<tr>\n<td>recipients</td>\n<td>REQUIRED - The details of receivers</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>REQUIRED - FirstName of receiver</td>\n</tr>\n<tr>\n<td>lastName</td>\n<td>REQUIRED - Last Name of receiver</td>\n</tr>\n<tr>\n<td>email</td>\n<td>REQUIRED - Email of receiver</td>\n</tr>\n<tr>\n<td>importToAlbums</td>\n<td>OPTIONAL: An array of albums to which the assets will be assigned</td>\n</tr>\n<tr>\n<td>- albumId</td>\n<td>REQUIRED - The id of the album</td>\n</tr>\n<tr>\n<td>- pathWithName</td>\n<td>REQUIRED - The full album path (including the name of the album)</td>\n</tr>\n<tr>\n<td>- portalId</td>\n<td>OPTIONAL - The id of the portal or workspace</td>\n</tr>\n<tr>\n<td>- portalName</td>\n<td>OPTIONAL - The name of the portal or workspace</td>\n</tr>\n<tr>\n<td>removeDuplicateType</td>\n<td>OPTIONAL - The following modes for duplicates are supported:  <br />0=Add as new file  <br />1=Don't import  <br />2=New version  <br />3=New version &amp; append metadata  <br />5=Don't import &amp; append metadata  <br />  <br /><em>Default:</em> 1 - Don't import</td>\n</tr>\n<tr>\n<td>defaultApprovalStatus</td>\n<td>OPTIONAL - The status of the asset when it is imported into the main library.  <br />  <br /><em>Supported Values:</em>  <br />Approved, Restricted, Pending  <br />  <br /><em>Default:</em> Approved</td>\n</tr>\n<tr>\n<td>removeDuplicateWhenImport</td>\n<td>OPTIONAL - Automatically Remove Files in the Upload Link after Import.  <br />  <br /><em>Default:</em> false</td>\n</tr>\n<tr>\n<td>duplicateCheckMode</td>\n<td>Mode to check for duplicates  <br />  <br />0=MD5  <br />1=filename  <br />  <br /><em>Default:</em> 0</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","uploadlink"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"49557b83-39f2-470c-828a-245b2a65c6b7","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{SITE_BASEURL}}/api/v1/uploadlink"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 11 Jan 2021 11:13:54 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"34"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 11:13:53 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"u-c6694cfde84c40d38b4e9642265a46a3"}],"_postman_id":"ee43e047-aa76-4390-bfda-46dd8a18ec58"},{"name":"Metadata Import","id":"dc6edf50-5e7d-4019-b321-4623324372aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"isAppend","value":"{{isAppend}}","description":"<p>\"true\" Add Metadata<br />\"false\" Replace Metadata</p>\n<p><strong>default:</strong> \"false\"</p>\n","type":"text"},{"key":"file","description":"<p>REQUIRED  - This csv file is used to import metadata</p>\n","type":"file","src":"/Users/srausch/Downloads/Metadata.csv"}]},"url":"{{SITE_BASEURL}}/api/v1/import/metadata","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","import","metadata"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"55d97e0b-cd14-4e04-8850-53d389180d13","name":"200 OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"isAppend","value":"{{isAppend}}","description":"OPTIONAL - \"true\" Add Metadata, \"false\" Replace Metadata, the default is \"false\"","type":"text"},{"key":"file","description":"REQUIRED  - This csv file is used to import metadata","type":"file","src":"kr9JclwvE/Metadata.csv"}]},"url":"{{SITE_BASEURL}}/api/v1/import/metadata"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"csvmeta-0b83f5daedaa4c68822be931fe9aa39b"}],"_postman_id":"dc6edf50-5e7d-4019-b321-4623324372aa"},{"name":"Metadata import progress","id":"a147e868-2d54-4d65-b660-0f44937ce419","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/import/metadata/progress?request={{importFileID}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","import","metadata","progress"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>REQUIRED  - The response obtained after calling API \"/api/v1/import/metadata\" successfully</p>\n","type":"text/plain"},"key":"request","value":"{{importFileID}}"}],"variable":[]}},"response":[{"id":"11e378ab-d08e-4539-9e7b-729ef2418898","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/import/metadata/progress?request=csvmeta-0b83f5daedaa4c68822be931fe9aa39b","host":["{{SITE_BASEURL}}"],"path":["api","v1","import","metadata","progress"],"query":[{"key":"request","value":"csvmeta-0b83f5daedaa4c68822be931fe9aa39b","description":"REQUIRED  - The response obtained after calling API \"/api/v1/import/metadata\" successfully"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"status\": 1,\n    \"total\": 1,\n    \"finished\": 0,\n    \"failed\": 1,\n    \"notFound\": 0,\n    \"unFinishedId\": null,\n    \"importTime\": 1633920724282,\n    \"finishTime\": 1633920734417,\n    \"fileName\": null\n}"}],"_postman_id":"a147e868-2d54-4d65-b660-0f44937ce419"},{"name":"Import from uploadlink","id":"1a04c00c-64ab-40f6-905c-dd21331fc5e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"uploadLink\": \"u-e48e81b26b8f4c9d94618c0c548514c2\", \r\n    \"albumPath\": \"N8A8I\",\r\n    \"contents\": [\r\n        {\r\n            \"id\": \"2s0m4adg257572s2252icvb50r\",\r\n            \"displayName\": \"123.png\",\r\n            \"scheme\": \"image\"\r\n        }\r\n    ],\r\n    \"deleteAtOnce\": false, //whether delete after import true or false\r\n    \"requestId\": 1632098385109.1711, //timestamp\r\n    \"metadata\": { // if option=5 this metadata will append into content.\r\n        \"contents\": [\r\n            {\r\n                \"id\": \"2s0m4adg257572s2252icvb50r\",\r\n                \"displayName\": \"123.png\",\r\n                \"scheme\": \"image\"\r\n            }\r\n        ],\r\n        \"albumPath\": {\r\n            \"library\": [\r\n                {\r\n                    \"portalId\": \"\",\r\n                    \"portalName\": \"\",\r\n                    \"albumName\": \"N8A8I\"\r\n                }\r\n            ]\r\n        },\r\n        \"addAlbums\": [\r\n            \"N8A8I\"\r\n        ]\r\n    },\r\n    \"option\": 0 // 0->add as new file, 1->don't import 5->don't import but append metadata  it's just take effect when tenant is set to open dialog in duplicate check.\r\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/uploadlink/import","description":"<p><a href=\"#api-rate-limit\"><i>Rate Level: 4</i></a></p>\n<p>Import assets from an upload link.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","uploadlink","import"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"7687ed80-9d9e-4916-b659-b42c692cdaaa","name":"import from uploadlink","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"uploadLink\": \"u-e48e81b26b8f4c9d94618c0c548514c2\",  // uploadlink id\r\n    \"albumPath\": \"N8A8I\", //destination path of album\r\n    \"contents\": [\r\n        {\r\n            \"id\": \"2s0m4adg257572s2252icvb50r\",\r\n            \"displayName\": \"123.png\",\r\n            \"scheme\": \"image\"\r\n        }\r\n    ],\r\n    \"deleteAtOnce\": false, //whether delete after import true or false\r\n    \"requestId\": 1632098385109.1711, //timestamp\r\n    \"metadata\": { // if option=5 or tenant  is set to append metadata in duplicate check,  this metadata will append into content.\r\n        \"contents\": [\r\n            {\r\n                \"id\": \"2s0m4adg257572s2252icvb50r\",\r\n                \"displayName\": \"123.png\",\r\n                \"scheme\": \"image\"\r\n            }\r\n        ],\r\n        \"albumPath\": {\r\n            \"library\": [\r\n                {\r\n                    \"portalId\": \"\",                    \r\n                    \"albumName\": \"N8A8I\"\r\n                }\r\n            ]\r\n        },\r\n        \"addAlbums\": [\r\n            \"N8A8I\"\r\n        ]\r\n    },\r\n    \"option\": 0 // 0->add as new file, 1->don't import 5->don't import but append metadata  it's just take effect when tenant is set to open dialog in duplicate check.\r\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/uploadlink/import"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"portalId\": null,\n    \"portalName\": null,\n    \"portalShortName\": null,\n    \"successFiles\": [     // arrays of  import success \n        {\n            \"id\": \"0b154d231cc84a6db11336ab57eec38e\",\n            \"scheme\": \"image\",\n            \"displayName\": null,\n            \"portalId\": null\n        }\n    ],\n    \"failFiles\": [], // arrays of  import fail \n    \"duplicateFiles\": [], // arrays of  import duplicate  if it's not null,it means you don't set value to option.\n    \"duplicateDestFiles\": [],\n    \"versionKeys\": []\n}"}],"_postman_id":"1a04c00c-64ab-40f6-905c-dd21331fc5e5"}],"id":"244041db-8089-4921-9fae-63822827a540","_postman_id":"244041db-8089-4921-9fae-63822827a540","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}}},{"name":"Download","item":[{"name":"Direct Url original","id":"b4045513-4148-43a9-9c6e-9101d698eaf4","protocolProfileBehavior":{"disableBodyPruning":true,"removeRefererHeaderOnRedirect":false},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{SITE_BASEURL}}/direct/:scheme/:contentId/{{directUrlOriginalHash}}/original?name=knoll.wav","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 1</em></a></p>\n<p>Direct url to the original asset. </p>\n<p><strong>Note:</strong> It's not possible to download this image without knowing a random generated HashValue. You get the \"Direct Url Original\" containing the correct data by reading it from response of the requests: </p>\n<ul>\n<li><a href=\"#dc7523ac-7acf-4c80-be39-48b39b10bfb0\">\"Get Content Details\"</a></li>\n<li><a href=\"#36910bbd-c42e-485e-8d3e-7d903230066a\">\"Search/Filter\"</a></li>\n</ul>\n","urlObject":{"path":["direct",":scheme",":contentId","{{directUrlOriginalHash}}","original"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>The file name of the file.</p>\n<p>This value is returned inside the Http Headers of the response, so that a browser will download the file with given name.  </p>\n","type":"text/plain"},"key":"name","value":"metal_application.jpg"}],"variable":[{"id":"d07fb585-afd1-4986-936e-c1fdd5dbb074","description":{"content":"<p>REQUIRED - The scheme of the asset</p>\n","type":"text/plain"},"type":"string","value":"{{contentScheme}}","key":"scheme"},{"id":"527129e7-de6a-4ff9-9607-58c552d37abb","description":{"content":"<p>REQUIRED - The id of the asset</p>\n","type":"text/plain"},"type":"string","value":"{{contentId}}","key":"contentId"}]}},"response":[],"_postman_id":"b4045513-4148-43a9-9c6e-9101d698eaf4"},{"name":"Download Preview","id":"893917f5-9abf-4b3f-8eaf-76efb3c8f6e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api_binary/v1/:scheme/:contentId/preview/:dimension","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 1</em></a></p>\n<p>An image view of the content.</p>\n<p>Returns the first page view for document content, and a smaller size image for the image content.\nBy default, the image is 240px (dimension means the longest size of the width and height when zooming out). \nTo specifiy the dimension, you could provide slash “/” and dimension number under the preview url.</p>\n<p><strong>For example:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>URL</th>\n<th>Result</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><a href=\"{{SITE_BASEURL}}/api_binary/v1/{{contentScheme}}/{{contentId}}/preview\">{{SITE_BASEURL}}/api_binary/v1/{{contentScheme}}/{{contentId}}/preview</a></td>\n<td>image with dimension 240px</td>\n</tr>\n<tr>\n<td><a href=\"{{SITE_BASEURL}}/api_binary/v1/{{contentScheme}}/{{contentId}}/preview/500\">{{SITE_BASEURL}}/api_binary/v1/{{contentScheme}}/{{contentId}}/preview/500</a></td>\n<td>image with dimension 500px</td>\n</tr>\n</tbody>\n</table>\n</div><p>If the maximum preview size is 400, the url will only get the 400 dimension preview.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api_binary","v1",":scheme",":contentId","preview",":dimension"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"id":"1d3df32a-86ff-459e-8962-f96956ee154c","description":{"content":"<p>REQUIRED - The scheme of the asset</p>\n","type":"text/plain"},"type":"string","value":"{{contentScheme}}","key":"scheme"},{"id":"ca478851-1fb9-4fa2-b572-be021f5264a8","description":{"content":"<p>REQUIRED - The id of the asset</p>\n","type":"text/plain"},"type":"string","value":"{{contentId}}","key":"contentId"},{"id":"6ac2c5fd-8a00-44b6-8fb4-4f5d513b8cf3","description":{"content":"<p>The dimension of the image, which will be returned.</p>\n<p><strong>Default:</strong> 240</p>\n","type":"text/plain"},"type":"string","value":"500","key":"dimension"}]}},"response":[],"_postman_id":"893917f5-9abf-4b3f-8eaf-76efb3c8f6e0"},{"name":"Direct Url preview","id":"112d6ca4-f22c-4e13-b4b3-ff72bd999b35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{SITE_BASEURL}}/direct/:scheme/:contentId/{{directUrlPreviewHash}}/m240/:dimension","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 1</em></a></p>\n<p>Direct url to the preview of the asset</p>\n<p>Returns the first page view for document content, and a smaller size image for the image content.\nBy default, the image is 240px (dimension means the longest size of the width and height when zooming out). \nTo specifiy the dimension, you could provide slash “/” and dimension number under the preview url.</p>\n<p><strong>For example:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>URL</th>\n<th>Result</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>{{SITE_BASEURL}}/direct/:scheme/:contentId/{{directUrlOriginalHash}}/m240/</td>\n<td>image with dimension 240p (default size)</td>\n</tr>\n<tr>\n<td>{{SITE_BASEURL}}/direct/:scheme/:contentId/{{directUrlOriginalHash}}/m240/500</td>\n<td>image with dimension 500px</td>\n</tr>\n</tbody>\n</table>\n</div><p>If the maximum preview size is 400, the url will only get the 400 dimension preview.</p>\n","urlObject":{"path":["direct",":scheme",":contentId","{{directUrlPreviewHash}}","m240",":dimension"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"description":{"content":"<p>REQUIRED - The scheme of the asset</p>\n","type":"text/plain"},"type":"string","value":"{{contentScheme}}","key":"scheme"},{"description":{"content":"<p>REQUIRED - The id of the asset</p>\n","type":"text/plain"},"type":"string","value":"{{contentId}}","key":"contentId"},{"description":{"content":"<p>REQUIRED - The dimension of the image, which will be returned.</p>\n<p>Supported scalings: 100, 240, 320, 500, 640, 800, 2000</p>\n","type":"text/plain"},"type":"any","value":"800","key":"dimension"}]}},"response":[],"_postman_id":"112d6ca4-f22c-4e13-b4b3-ff72bd999b35"},{"name":"Download as High JPG","id":"f1907132-4864-4518-9f02-47ee895f3f6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api_binary/v1/:scheme/:contentId/HighJPG","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 1</em></a></p>\n<p>Download an image as jpg in high quality</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api_binary","v1",":scheme",":contentId","HighJPG"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"id":"37a5372f-8d9f-42ad-9a9d-cadf629c6fd3","description":{"content":"<p>REQUIRED - The scheme of the asset</p>\n","type":"text/plain"},"type":"string","value":"{{contentScheme}}","key":"scheme"},{"id":"311b5cab-14ad-4e37-a2b1-2fcb7bca0e6e","description":{"content":"<p>REQUIRED - The id of the asset</p>\n","type":"text/plain"},"type":"string","value":"{{contentId}}","key":"contentId"}]}},"response":[],"_postman_id":"f1907132-4864-4518-9f02-47ee895f3f6c"},{"name":"Download as Low JPG","id":"9a01444c-85f3-4bd1-aac3-5f969c530de4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api_binary/v1/:scheme/:contentId/LowJPG","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 1</em></a></p>\n<p>Download an image as jpg in low quality (smaller filesize)</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api_binary","v1",":scheme",":contentId","LowJPG"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"id":"73befa3a-b617-4e53-a49e-f0a15f49ec54","description":{"content":"<p>REQUIRED - The scheme of the asset</p>\n","type":"text/plain"},"type":"string","value":"{{contentScheme}}","key":"scheme"},{"id":"67b01c76-6611-48f3-a30a-9e5535dffc27","description":{"content":"<p>REQUIRED - The id of the asset</p>\n","type":"text/plain"},"type":"string","value":"{{contentId}}","key":"contentId"}]}},"response":[],"_postman_id":"9a01444c-85f3-4bd1-aac3-5f969c530de4"},{"name":"Download as PNG","id":"e637862a-555a-4b4b-8f03-545bad6b9a59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api_binary/v1/:scheme/:contentId/PNG","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 1</em></a></p>\n<p>Download an image as png</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api_binary","v1",":scheme",":contentId","PNG"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"id":"a2c3be38-e2e6-4b39-a44e-8f1a8af545a2","description":{"content":"<p>REQUIRED - The scheme of the asset</p>\n","type":"text/plain"},"type":"string","value":"{{contentScheme}}","key":"scheme"},{"id":"d344a99c-b05e-4fa3-b13b-1ae4502026d1","description":{"content":"<p>REQUIRED - The id of the asset</p>\n","type":"text/plain"},"type":"string","value":"{{contentId}}","key":"contentId"}]}},"response":[],"_postman_id":"e637862a-555a-4b4b-8f03-545bad6b9a59"},{"name":"Download Metadata XML","id":"d7ac89fa-6e2d-44e4-ab5b-92b04fde2ff8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api_binary/v1/:scheme/:contentId/metadata","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 1</em></a></p>\n<p>The “metadata” url will give you the xml file which was extracted from the original file. It has more detail than the metadata returned by the detail API and follows the original data format, not the one in general notes.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api_binary","v1",":scheme",":contentId","metadata"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"id":"cb789720-d939-4e18-a071-df7eb244dd96","description":{"content":"<p>REQUIRED - The scheme of the asset</p>\n","type":"text/plain"},"type":"string","value":"{{contentScheme}}","key":"scheme"},{"id":"2d36c228-55d3-4b7f-84cd-b83441c3697f","description":{"content":"<p>REQUIRED - The id of the asset</p>\n","type":"text/plain"},"type":"string","value":"{{contentId}}","key":"contentId"}]}},"response":[],"_postman_id":"d7ac89fa-6e2d-44e4-ab5b-92b04fde2ff8"},{"name":"Download original content file","id":"eebfc139-590e-45ee-b4b5-4cfb4163a8c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api_binary/v1/:scheme/:contentId","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 1</em></a></p>\n<p>Download the original content file.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api_binary","v1",":scheme",":contentId"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"description":{"content":"<p>REQUIRED - The scheme of the asset</p>\n","type":"text/plain"},"type":"string","value":"{{contentScheme}}","key":"scheme"},{"description":{"content":"<p>REQUIRED - The id of the asset</p>\n","type":"text/plain"},"type":"string","value":"{{contentId}}","key":"contentId"}]}},"response":[],"_postman_id":"eebfc139-590e-45ee-b4b5-4cfb4163a8c0"},{"name":"Advanced Download Options","event":[{"listen":"prerequest","script":{"id":"e480c5c9-c6b8-4cc7-98a1-6ca92b8878a3","exec":["const utils = eval(globals.loadUtils)","","utils.checkVariable(\"contentId\")"],"type":"text/javascript"}}],"id":"fc47ae21-64e2-4f52-926e-c587640cda1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api_binary/v1/advance/image/:contentId/download?resize=300x400&crop=200x200+330+330&dpi=150&type=jpg&version=&preset={{presetId}}&proportion=true","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 5</em></a></p>\n<p>This API supports resize, crop, and downloads a preset image.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api_binary","v1","advance","image",":contentId","download"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>Resize param</p>\n<p>Use format: ”widthxheight”</p>\n","type":"text/plain"},"key":"resize","value":"300x400"},{"description":{"content":"<p>Crop param:</p>\n<p>Use format: ”widthxheight+top+left”</p>\n<p>Note: The + character needs to be url encoded with %2B\nExample: \"200x200%2B10%2B\"</p>\n","type":"text/plain"},"key":"crop","value":"200x200+330+330"},{"description":{"content":"<p>Result image dpi</p>\n","type":"text/plain"},"key":"dpi","value":"150"},{"description":{"content":"<p>Result image type {“jpg”, “png”}</p>\n","type":"text/plain"},"key":"type","value":"jpg"},{"description":{"content":"<p>The content version.</p>\n<p>If not specified, the latest version of the content is shown.</p>\n","type":"text/plain"},"key":"version","value":""},{"description":{"content":"<p>Preset ID.  </p>\n<p>You can get the preset list by preset list API.</p>\n","type":"text/plain"},"key":"preset","value":"{{presetId}}"},{"description":{"content":"<p>Defines whether the proportions should be adhered to or not. </p>\n<p><strong>true</strong>:  Do not adhere the proportions\n<strong>false</strong>: Do adhere the proportions. </p>\n<p><strong>Default:</strong> true</p>\n","type":"text/plain"},"key":"proportion","value":"true"}],"variable":[{"description":{"content":"<p>REQUIRED - The id of the content</p>\n","type":"text/plain"},"type":"string","value":"{{contentId}}","key":"contentId"}]}},"response":[{"id":"198a707f-a653-4c47-a9a5-313801ab8f46","name":"200 OK - Resize","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api_binary/v1/advance/image/:contentId/download?resize=300x400&dpi=150&type=jpg&version=&preset={{presetId}}","host":["{{SITE_BASEURL}}"],"path":["api_binary","v1","advance","image",":contentId","download"],"query":[{"key":"resize","value":"300x400","description":"Resize param\n\nUse format: ”widthxheight”"},{"key":"dpi","value":"150","description":"Result image dpi"},{"key":"type","value":"jpg","description":"Result image type {“jpg”, “png”}"},{"key":"version","value":"","description":"The content version.\n\nIf not specified, the latest version of the content is shown."},{"key":"preset","value":"{{presetId}}","description":"Preset ID.  \n\nYou can get the preset list by preset list API."}],"variable":[{"key":"contentId","type":"string","value":"{{contentId}}","description":"REQUIRED - The id of the content"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"<Resized Image>"},{"id":"7f75e389-472e-4140-ad24-885610e4f5b2","name":"200 OK - Crop image","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api_binary/v1/advance/image/:contentId/download?crop=200x200+330+330&dpi=150&type=jpg&version=&preset={{presetId}}","host":["{{SITE_BASEURL}}"],"path":["api_binary","v1","advance","image",":contentId","download"],"query":[{"key":"crop","value":"200x200+330+330","description":"Crop param:\n\nUse format: ”widthxheight+top+left”"},{"key":"dpi","value":"150","description":"Result image dpi"},{"key":"type","value":"jpg","description":"Result image type {“jpg”, “png”}"},{"key":"version","value":"","description":"The content version.\n\nIf not specified, the latest version of the content is shown."},{"key":"preset","value":"{{presetId}}","description":"Preset ID.  \n\nYou can get the preset list by preset list API."}],"variable":[{"key":"contentId","type":"string","value":"{{contentId}}","description":"REQUIRED - The id of the content"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"<Cropped Image>"}],"_postman_id":"fc47ae21-64e2-4f52-926e-c587640cda1b"},{"name":"Obtain asset preview Cloudfront URL","event":[{"listen":"prerequest","script":{"id":"261bdca7-56a5-4f3e-a067-90c657376c2c","exec":["const utils = eval(globals.loadUtils)","","utils.checkVariable(\"contentId\")","utils.checkVariable(\"contentScheme\")"],"type":"text/javascript"}}],"id":"95723993-d896-4042-a3cd-2311b61dda1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api_binary/v1/:scheme/:contentId/previewURI/:dimension","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 1</em></a></p>\n<p>In a situation where the embedded browser does not support redirect URLs, this call can be used to obtain the Cloudfront URL directly.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api_binary","v1",":scheme",":contentId","previewURI",":dimension"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"description":{"content":"<p>REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)</p>\n","type":"text/plain"},"type":"string","value":"{{contentScheme}}","key":"scheme"},{"description":{"content":"<p>REQUIRED - Id of the content</p>\n","type":"text/plain"},"type":"string","value":"{{contentId}}","key":"contentId"},{"type":"string","value":"500","key":"dimension"}]}},"response":[{"id":"7123e0cf-926e-41e7-bde0-024b5a3f7536","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api_binary/v1/:scheme/:contentId/previewURI","host":["{{SITE_BASEURL}}"],"path":["api_binary","v1",":scheme",":contentId","previewURI"],"query":[{"description":"Indicate the dimension","key":"dimension","type":"text","value":"500","disabled":true},{"key":"expireTimeInSeconds","value":"2592000","type":"text","disabled":true}],"variable":[{"key":"scheme","value":"image","type":"string","description":"REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)"},{"key":"contentId","value":"epnoj07hft395clgd3mqg7it1d","type":"string","description":"REQUIRED - Id of the content"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 11 Jan 2021 13:22:58 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"641"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 13:22:58 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"https://d3opzdukpbxlns.cloudfront.net/bc4f9ef6-c4d5-40d1-9a3d-b0818feded3d/766f8980f17f4692b2b068eda81e5d2d.240.jpg?response-content-disposition=inline%3B%20filename%2A%3DUTF-8%27%271609856947000.jpg&response-content-type=image%2Fjpeg&Expires=1610457778&Signature=PuNwPYyQeYjvcPAObrRg7DbVIl5OiVPWbRMYHBHI2XlkbFHN3QO9C4ye25uk~95yKFzRc23vO3MxLOIZqZqye53-C-MQgsM3FXmuKEBlC1-qbRAdhhdpHgkk3yHMU3I8qtyITFy-DP0gax6R4~di4EjS51D~dFcqqghLzy15g877UAWRoLeiL46aP6G9N2DLKqCnYk-i~TwP~xo57zXKiML~uOe7FNM0EwKM2dpl6nK-i6DVrnEx7WYzIFVfNGZtB--b-ENXbEiiNsemvD5lP9gaUFwrKeq38JLeXvhRvOUSOdxcfWwN0rO-yrxnjiXI9DKPFxjdWLO1~93LW3PcZg__&Key-Pair-Id=APKAI33AGAEAYCXFBDTA"},{"id":"e9533d93-da23-4d1f-8665-c4be764c904c","name":"200 OK - With Dimension and ExpireTime","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api_binary/v1/:scheme/:contentId/previewURI/dim/:dimension/expire/:expireTimeInSeconds","host":["{{SITE_BASEURL}}"],"path":["api_binary","v1",":scheme",":contentId","previewURI","dim",":dimension","expire",":expireTimeInSeconds"],"variable":[{"key":"scheme","value":"{{contentScheme}}","type":"string","description":"REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)"},{"key":"contentId","value":"{{contentId}}","type":"string","description":"REQUIRED - Id of the content"},{"key":"dimension","value":"500","description":"Indicate the dimension"},{"key":"expireTimeInSeconds","value":"86400","description":"Indicate when you would like this URL to expire. This value is per second.\n\n1 day is equivalent to 1*24*3600 seconds. \n\nIf not specified, the default value is 1 day."}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 11 Jan 2021 13:28:02 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"641"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 13:28:02 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"https://d3opzdukpbxlns.cloudfront.net/bc4f9ef6-c4d5-40d1-9a3d-b0818feded3d/766f8980f17f4692b2b068eda81e5d2d.500.jpg?response-content-disposition=inline%3B%20filename%2A%3DUTF-8%27%271609856947000.jpg&response-content-type=image%2Fjpeg&Expires=1610458082&Signature=at3b1xU6w1tDladafVXaGgAAwD5WJPTKjRFl1Mg8YCYzDzc8jDlB1xjjLv79UmBagekKKCJDWPM3mhVuUPUnfcJhMaanQolr8jR-~scrq2hrHyn7EikxYtlqpAcOnpRzc6TZSKK8RwEYKoC~U8HiTQU2RCtgxAnAPm3YIH2Q2GdqhFnYSJdR3Op7fhux5olPMSjqav8d0mZBXbM-CDoSYdaTdaKBRXiwS9zRGtze6lvnmWv0t8FLshgZPr4fdS8yVu13GN2GnV8GHg6GawB8CRnIXyhClHMqv1aeu0zMnbN267hPBOQfJq4vSIU9ulytCYNktrwRSiY4Q7Rk8NXaCA__&Key-Pair-Id=APKAI33AGAEAYCXFBDTA"},{"id":"8a6c6c7e-82a8-4762-a91a-ead7adc165b9","name":"200 OK - Only dimension","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api_binary/v1/:scheme/:contentId/previewURI/:dimension","host":["{{SITE_BASEURL}}"],"path":["api_binary","v1",":scheme",":contentId","previewURI",":dimension"],"variable":[{"key":"scheme","value":"{{contentScheme}}","type":"string","description":"REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)"},{"key":"contentId","value":"{{contentId}}","type":"string","description":"REQUIRED - Id of the content"},{"key":"dimension","value":"500"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 11 Jan 2021 13:30:14 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"641"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 13:30:14 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"https://d3opzdukpbxlns.cloudfront.net/bc4f9ef6-c4d5-40d1-9a3d-b0818feded3d/766f8980f17f4692b2b068eda81e5d2d.500.jpg?response-content-disposition=inline%3B%20filename%2A%3DUTF-8%27%271609856947000.jpg&response-content-type=image%2Fjpeg&Expires=1610458214&Signature=CDa7V064HiHT6J1LLKpAM2QUhD3XQ7nQk~mOkFA6LbvktHRcLwgXG5t3q7CwJgE0-QGeYlAIvV3oJlCl3YRamc5Gli6BxchEUdUVZ7eHseoONmnXO8dUSjTwgdH5pHV63oMwB9bSycEK3AtlP4d8H50xNyKQZ9AjyFhzssku3ELKSRi7SJVg~LfoHW90r4G3P5MEDHjWIpCSyqksT5zu0ouVhnZxB68JRrSL3dO7B0gf6c~~ea58bIMxBeM8R~j~KZNYcBLZQykwGnlWdR3aWpE39jGiRoS-RKHeFDN-xLqZ-8LPeR9zyeBCHeSlKrq7ISyuPgDmqWVsfusEqj41Vg__&Key-Pair-Id=APKAI33AGAEAYCXFBDTA"}],"_postman_id":"95723993-d896-4042-a3cd-2311b61dda1a"},{"name":"Obtain asset download Cloudfront URL","event":[{"listen":"prerequest","script":{"id":"92f344b9-b266-48a7-ab18-cbcd1c5621a9","exec":["const utils = eval(globals.loadUtils)","","utils.checkVariable(\"contentId\")","utils.checkVariable(\"contentScheme\")"],"type":"text/javascript"}}],"id":"931110dd-68f8-4149-b0cf-7c4dfae10515","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api_binary/v1/:scheme/:contentId/directuri/:expireTimeInSeconds","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 1</em></a></p>\n<p>In some case, like some embedded browser which is not support redirect url, developer cannot download picture by redirect behavior, he want obtain a cloudfront url.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api_binary","v1",":scheme",":contentId","directuri",":expireTimeInSeconds"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"description":{"content":"<p>REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)</p>\n","type":"text/plain"},"type":"string","value":"{{contentScheme}}","key":"scheme"},{"description":{"content":"<p>REQUIRED - Id of the content</p>\n","type":"text/plain"},"type":"string","value":"{{contentId}}","key":"contentId"},{"description":{"content":"<p>Indicate when you would like this URL to expire. This value is per second.</p>\n<p>1 day is equivalet to 1<em>24</em>3600 seconds. </p>\n<p>If not specified, the default value is 1 day.</p>\n","type":"text/plain"},"type":"string","value":"86400","key":"expireTimeInSeconds"}]}},"response":[{"id":"bb29e60b-3002-4a72-9859-630237613c99","name":"39 Obtain asset download Cloudfront URL","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api_binary/v1/:scheme/:contentId/directuri","host":["{{SITE_BASEURL}}"],"path":["api_binary","v1",":scheme",":contentId","directuri"],"query":[{"key":"expireTimeInSeconds","value":"2592000","disabled":true}],"variable":[{"description":"image, video, audio, document, presentation, other. (Case sensitive)","key":"scheme","value":"{{contentScheme}}"},{"description":"Id of the content","key":"contentId","value":"{{contentId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Tue, 27 Oct 2020 14:45:08 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"644"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Mon, 26-Oct-2020 14:45:08 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"https://d1c96hlcey6qkb.cloudfront.net/9677ff79-5661-4a30-ba89-6828b22cf557/7d86fcfda0404e1687291d87136a6ada.keywords_tags.ba43d578d735efb600aa205b8bd9d033?response-content-disposition=attachment%3B%20filename%2A%3DUTF-8%27%27Person_D.jpg&Expires=1603896308&Signature=azU7vbQYF6EUFda-CH9-ZpbDQ0-Kxuf0PEzY6ViqlYSoS4qIILLRTcGPxhiFuawx1xUuDaIVPgakHKKtcSKl9RlOE4bw-sENUnQnWMNFXD~02ofusbrak39kyjYn9ZxavQkBx81qAsbVYmBsgxe2CYg6w2beZpUxt0XzVIxyxfylQMBuWolIFrxI2ItLFLPDTwyG6fMEtZvLqOY0LdXAU~KP5xROCAI7gOyLlDKa6vBa5pmd9DBas3yAYV42dAILcqRoMM4xQM5yjm6QVjzsLhT1z75rIVENFBB3Cc7VyXBwg6XQrfr0aUxWzshT7WPl0vwOEXL4hT5OFDZ7l83IFw__&Key-Pair-Id=APKAI33AGAEAYCXFBDTA"},{"id":"ba66d49e-5803-4234-ad91-87eba0703328","name":"39 Obtain asset download Cloudfront URL","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api_binary/v1/:scheme/:contentId/directuri?expireTimeInSeconds=2592000","host":["{{SITE_BASEURL}}"],"path":["api_binary","v1",":scheme",":contentId","directuri"],"query":[{"key":"expireTimeInSeconds","value":"2592000"}],"variable":[{"description":"image, video, audio, document, presentation, other. (Case sensitive)","key":"scheme","value":"{{contentScheme}}"},{"description":"Id of the content","key":"contentId","value":"{{contentId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Tue, 27 Oct 2020 14:45:17 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"644"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Mon, 26-Oct-2020 14:45:17 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"https://d1c96hlcey6qkb.cloudfront.net/9677ff79-5661-4a30-ba89-6828b22cf557/7d86fcfda0404e1687291d87136a6ada.keywords_tags.ba43d578d735efb600aa205b8bd9d033?response-content-disposition=attachment%3B%20filename%2A%3DUTF-8%27%27Person_D.jpg&Expires=1603896317&Signature=NojraclUBBb8~G8ILb03lT89ceUtaeZgJPip2XWOFLYWna0~7miQ48shjuI8VmsPZPHwVFl2-UHi-tf1-OMKigwEumzRRWyurpIdYN0uoFQuazdmlloErFJfUK9aqW6q8Rg1jRXwL5fI4VxLdTLf7gItuqs2NesJRb8gOfjrgnjrkE7USuww2D10X1Gxyt1DuxXuDrs0-~AoK5XGAcTRSYMWuCXzdtI4~dhsaRkd1uq52FjjmrLufrTHVIAfN6Oq4E9CPCxTtliTJNCmqEQDwRj5Hvh9nqwywiyEGg7FK1J0pI6hXqAiIBFh4J88OjKxPXdpn3t61NnfaxTzK1d7-g__&Key-Pair-Id=APKAI33AGAEAYCXFBDTA"},{"id":"eaf0f0b5-38c4-4d69-b4b2-ca9707127e8f","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api_binary/v1/:scheme/:contentId/directuri/:expireTimeInSeconds","host":["{{SITE_BASEURL}}"],"path":["api_binary","v1",":scheme",":contentId","directuri",":expireTimeInSeconds"],"variable":[{"description":"REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)","key":"scheme","type":"string","value":"image"},{"description":"REQUIRED - Id of the content","key":"contentId","type":"string","value":"epnoj07hft395clgd3mqg7it1d"},{"key":"expireTimeInSeconds","value":"86400","description":"Indicate when you would like this URL to expire. This value is per second.\n\n1 day is equivalet to 1*24*3600 seconds. \n\nIf not specified, the default value is 1 day."}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 11 Jan 2021 13:44:11 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"675"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 13:44:10 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"https://d3opzdukpbxlns.cloudfront.net/bc4f9ef6-c4d5-40d1-9a3d-b0818feded3d/766f8980f17f4692b2b068eda81e5d2d.keywords_tags.344abd9d26a52dcf881e9ed7f6e12acd?response-content-disposition=attachment%3B%20filename%2A%3DUTF-8%27%27backpack-forest-green-4582-photographer.jpg&Expires=1610459051&Signature=fBjSKa5qwojTTNi8R1Al9bPnj9jJewgAbGpEDbVEQtV5nvsYpa2KL81asVwhATYAkfdrCDXAI20OFcU0I5gOyMB7tKs-mzx1~T3i9s3W6QpmOmUdMd9bTGudXwAWzDBGwcQCxtw99UWI5FCwSsaR6jm-QXgOuZRRjXmK3oCZGwPoH6yHzZM4e72n0ckyJenME0xua~0Ck7N1ViYrpVlSFL4dS9thZLTR3IF5E1j-fa9wGBG7Dnl2iP0gV2WDrQ~hdjr~AAjKrZ3KgonBqHjCAWSos3g8sd6ya2Ox8IO~hSv35NuCTBa8XvaFUiKXgc1GEmsYKDZg408FyLWUfTAZwA__&Key-Pair-Id=APKAI33AGAEAYCXFBDTA"}],"_postman_id":"931110dd-68f8-4149-b0cf-7c4dfae10515"},{"name":"Batch Obtain asset download Cloudfront URL","event":[{"listen":"prerequest","script":{"id":"34dcd40e-476a-4047-96ba-3b0181cc84ee","exec":["const utils = eval(globals.loadUtils)","","utils.checkVariable(\"contentId\")","utils.checkVariable(\"contentScheme\")"],"type":"text/javascript"}}],"id":"7d0842c4-abf8-41f4-99e2-bd7c9b488390","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": \"{{contentId}}\",\n        \"scheme\": \"{{contentScheme}}\"\n    },\n    {\n        \"id\": \"{{contentId2}}\",\n        \"scheme\": \"{{contentScheme}}\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api_binary/v1/batch/directuri","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 1</em></a></p>\n<p>In some case, like some embedded browser which is not support redirect url, developer cannot download picture by redirect behavior, he want obtain a cloudfront url.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api_binary","v1","batch","directuri"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"ba520f59-73a1-4b6c-9c09-c668b4383494","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": \"image\",\n        \"scheme\": \"epnoj07hft395clgd3mqg7it1d\"\n    },\n    {\n        \"id\": \"image\",\n        \"scheme\": \"fpnoj07hft395clgd3mqg7it1f\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api_binary/v1/batch/directuri"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 13:45:46 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 13:45:46 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/preview\",\n        \"scheme\": \"image\",\n        \"displayName\": \"backpack-forest-green-4582-photographer.jpg\",\n        \"id\": \"epnoj07hft395clgd3mqg7it1d\",\n        \"directUri\": \"https://d3opzdukpbxlns.cloudfront.net/bc4f9ef6-c4d5-40d1-9a3d-b0818feded3d/766f8980f17f4692b2b068eda81e5d2d.keywords_tags.344abd9d26a52dcf881e9ed7f6e12acd?response-content-disposition=attachment%3B%20filename%2A%3DUTF-8%27%27backpack-forest-green-4582-photographer.jpg&Expires=1610459146&Signature=JD-6tP5yvUNBUynJtgGhdHwBoauDPvtmTZI9ZglBGewEv61bC9V0xH18f6RN-P28GNLrAz7f4d2MWU-ZIRbtNzkJitROPP6pM4a6oTw~THsKzeWRGLfSj0uE3K1CGiUW6Gciq7vwbohL-qCYkAT7DkJhS~IPAoXdWQvFHrVxvxIadnRl14DUSXf5ppVnAgbhX6yOt1R93qViRwazuPaTUsvzdL~3Bc8es5-mnFgF4uiYsqU9Enq6GqlH930rfhCjTdMHyewMim-PQXtmb9IMXZoxwu19lAY0CgJmVPj0uzjVr5w-J57JIZyH8O-moRu12iWF7He~wLNm8EltTB~45Q__&Key-Pair-Id=APKAI33AGAEAYCXFBDTA\"\n    },\n    {\n        \"preview\": \"https://yourcantoname.canto.com/api_binary/v1/image/epnoj07hft395clgd3mqg7it1d/preview\",\n        \"scheme\": \"image\",\n        \"displayName\": \"backpack-forest-green-4582-photographer.jpg\",\n        \"id\": \"epnoj07hft395clgd3mqg7it1d\",\n        \"directUri\": \"https://d3opzdukpbxlns.cloudfront.net/bc4f9ef6-c4d5-40d1-9a3d-b0818feded3d/766f8980f17f4692b2b068eda81e5d2d.keywords_tags.344abd9d26a52dcf881e9ed7f6e12acd?response-content-disposition=attachment%3B%20filename%2A%3DUTF-8%27%27backpack-forest-green-4582-photographer.jpg&Expires=1610459146&Signature=JD-6tP5yvUNBUynJtgGhdHwBoauDPvtmTZI9ZglBGewEv61bC9V0xH18f6RN-P28GNLrAz7f4d2MWU-ZIRbtNzkJitROPP6pM4a6oTw~THsKzeWRGLfSj0uE3K1CGiUW6Gciq7vwbohL-qCYkAT7DkJhS~IPAoXdWQvFHrVxvxIadnRl14DUSXf5ppVnAgbhX6yOt1R93qViRwazuPaTUsvzdL~3Bc8es5-mnFgF4uiYsqU9Enq6GqlH930rfhCjTdMHyewMim-PQXtmb9IMXZoxwu19lAY0CgJmVPj0uzjVr5w-J57JIZyH8O-moRu12iWF7He~wLNm8EltTB~45Q__&Key-Pair-Id=APKAI33AGAEAYCXFBDTA\"\n    }\n]"}],"_postman_id":"7d0842c4-abf8-41f4-99e2-bd7c9b488390"},{"name":"Batch Download","id":"9838b735-f2fb-41fb-9d08-f8070db7ffbf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{ \"zipFileName\":\"testZipName\",\r\n\"folderAlbumContents\":[\"image:cltt7lvbkl3bf997c8ekqf2i44\",\"image:c16q66447l2v5e5hgl0ds2vg3d\",\"image:252lcanfjt5oh71632vmkpl95t\",\"video:dboc3tqfqh4e58hjs449c4t91r\"],\r\n\"preset\": \"7291a4bb35354693a6b815dc7585dd9a\",\r\n\"quality\": \"100\",\r\n\"type\": \"jpeg\",\r\n\"colorMode\": \"RGB\",\r\n\"resize\": \"800x800\",\r\n\"proportion\": \"false\",\r\n\"userAddress\": \"nolan@Objectivasoftware.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/batch/download","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>This API supports batch download with multiple Editable parameters.</p>\n<div class=\"heading\">BODYPARAMS</div>\n<hr />\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>zipFileName</td>\n<td>REQUIRED - Target zip package name</td>\n</tr>\n<tr>\n<td>folderAlbumContents</td>\n<td>REQUIRED - Type and ID collection of batch download files</td>\n</tr>\n<tr>\n<td>preset</td>\n<td>preset id.Note that if the presetId is filled in, the reset and proportion will not take effect.</td>\n</tr>\n<tr>\n<td>quality</td>\n<td>The quality of downloaded image, the range is 1-100.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>The type of downloaded image. This parameter can be written as JPEG or PNG.Note that this parameter is necessary if it is not the original download.</td>\n</tr>\n<tr>\n<td>colorMode</td>\n<td>The colorMode of downloaded image. This parameter can be written as RGB or CMYK.Note that when type is PNG, colormode can only be RGB.Note that this parameter is necessary if it is not the original download.</td>\n</tr>\n<tr>\n<td>resize</td>\n<td>[width value]x[height value]</td>\n</tr>\n<tr>\n<td>proportion</td>\n<td>If proportion == false, resize according to the scale of the image itself.<br />If proportion == true, Force to reset the image size according to the parameters of \"resize\".</td>\n</tr>\n<tr>\n<td>userAddress</td>\n<td>If this is a valid email address, the emailbox will receive the URL. If this attribute is not filled in, the email will be sent to the default email address of the current token user</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","batch","download"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"24344de7-ad09-46db-a93f-cd8e1758cd10","name":"200 OK - batch download RGB/CMYK jpeg/png","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{ \"zipFileName\":\"testZipName\",\r\n\"folderAlbumContents\":[\"image:cltt7lvbkl3bf997c8ekqf2i44\",\"image:c16q66447l2v5e5hgl0ds2vg3d\",\"image:252lcanfjt5oh71632vmkpl95t\",\"video:dboc3tqfqh4e58hjs449c4t91r\"],\r\n\"preset\": \"7291a4bb35354693a6b815dc7585dd9a\",\r\n\"quality\": \"100\",\r\n\"type\": \"jpeg\",\r\n\"colorMode\": \"RGB\",\r\n\"resize\": \"800x800\",\r\n\"proportion\": \"false\",\r\n\"userAddress\": \"nolan@Objectivasoftware.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{SITE_BASEURL}}/api/v1/batch/download?zipFileName={{zipFileName}}&folderAlbumContents=[\"image:{{contentId}}\",\"image:{{contentId}}\",\"image:{{contentId}}\",\"album:{{albumId}}\",\"folder:{{folderId}}\"]]&preset={{preset_id}}&quality={{quality_value}}&type=jpeg/png&colorMode=RGB/CMYK&resize=[width value]x[height value]&proportion=true/false&userAddress={{email_address}}","host":["{{SITE_BASEURL}}"],"path":["api","v1","batch","download"],"query":[{"key":"zipFileName","value":"{{zipFileName}}","description":"REQUIRED - Target zip package name"},{"key":"folderAlbumContents","value":"[\"image:{{contentId}}\",\"image:{{contentId}}\",\"image:{{contentId}}\",\"album:{{albumId}}\",\"folder:{{folderId}}\"]]","description":"REQUIRED - Type and ID collection of batch download files"},{"key":"preset","value":"{{preset_id}}","description":"preset id.Note that if the presetId is filled in, the reset and proportion will not take effect."},{"key":"quality","value":"{{quality_value}}","description":"The quality of downloaded image, the range is 1-100."},{"key":"type","value":"jpeg/png","description":"The type of downloaded image. This parameter can be written as JPEG or PNG.Note that this parameter is necessary if it is not the original download."},{"key":"colorMode","value":"RGB/CMYK","description":"The colorMode of downloaded image. This parameter can be written as RGB or CMYK.Note that when type is PNG, colormode can only be RGB.Note that this parameter is necessary if it is not the original download."},{"key":"resize","value":"[width value]x[height value]"},{"key":"proportion","value":"true/false","description":"If proportion == false, resize according to the scale of the image itself.\nIf proportion == true, Force to reset the image size according to the parameters of \"resize\"."},{"key":"userAddress","value":"{{email_address}}","description":"If this is a valid email address, the emailbox will receive the URL. If this attribute is not filled in, the email will be sent to the default email address of the current token user"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"code\": 200,\r\n    \"message\": \"We will send you an email with a link to download the files as soon as the files are processed.\"\r\n}"},{"id":"6acc1009-9480-41d7-8648-b23890a3d809","name":"200 OK - batch download original file","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{ \"zipFileName\":\"testZipName\",\r\n\"folderAlbumContents\":[\"image:cltt7lvbkl3bf997c8ekqf2i44\",\"image:c16q66447l2v5e5hgl0ds2vg3d\",\"image:252lcanfjt5oh71632vmkpl95t\",\"video:dboc3tqfqh4e58hjs449c4t91r\"],\r\n\"preset\": \"7291a4bb35354693a6b815dc7585dd9a\",\r\n\"quality\": \"100\",\r\n\"type\": \"jpeg\",\r\n\"colorMode\": \"RGB\",\r\n\"resize\": \"800x800\",\r\n\"proportion\": \"false\",\r\n\"userAddress\": \"nolan@Objectivasoftware.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{SITE_BASEURL}}/api/v1/batch/download?zipFileName={{zipFileName}}&folderAlbumContents=[\"image:{{contentId}}\",\"image:{{contentId}}\",\"image:{{contentId}}\"]","host":["{{SITE_BASEURL}}"],"path":["api","v1","batch","download"],"query":[{"key":"zipFileName","value":"{{zipFileName}}","description":"REQUIRED - Target zip package name","type":"text"},{"key":"folderAlbumContents","value":"[\"image:{{contentId}}\",\"image:{{contentId}}\",\"image:{{contentId}}\"]","description":"REQUIRED - Type and ID collection of batch download files","type":"text"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"code\": 200,\r\n    \"message\": \"We will send you an email with a link to download the files as soon as the files are processed.\"\r\n}"},{"id":"d5f32c9d-290c-426c-aa6e-71215a12462c","name":"413 Request Entity Too Large - The total number of files processed exceeds the limit","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{ \"zipFileName\":\"testZipName\",\r\n\"folderAlbumContents\":[\"image:cltt7lvbkl3bf997c8ekqf2i44\",\"image:c16q66447l2v5e5hgl0ds2vg3d\",\"image:252lcanfjt5oh71632vmkpl95t\",\"video:dboc3tqfqh4e58hjs449c4t91r\"],\r\n\"preset\": \"7291a4bb35354693a6b815dc7585dd9a\",\r\n\"quality\": \"100\",\r\n\"type\": \"jpeg\",\r\n\"colorMode\": \"RGB\",\r\n\"resize\": \"800x800\",\r\n\"proportion\": \"false\",\r\n\"userAddress\": \"nolan@Objectivasoftware.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{SITE_BASEURL}}/api/v1/batch/download?zipFileName={{zipFileName}}&folderAlbumContents=[\"image:{{contentId}}\",\"image:{{contentId}}\",\"image:{{contentId}}\",\"album:{{albumId}}\",\"folder:{{folderId}}\",......]","host":["{{SITE_BASEURL}}"],"path":["api","v1","batch","download"],"query":[{"key":"zipFileName","value":"{{zipFileName}}","description":"REQUIRED - Target zip package name"},{"key":"folderAlbumContents","value":"[\"image:{{contentId}}\",\"image:{{contentId}}\",\"image:{{contentId}}\",\"album:{{albumId}}\",\"folder:{{folderId}}\",......]","description":"REQUIRED - Type and ID collection of batch download files, the total number exceeds 1000."}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"code\": 413,\r\n    \"message\": \"Bulk download file count is limited to 1000.\"\r\n}"},{"id":"97806e1d-9d96-47e3-9dbb-014edef53553","name":"429 Too Many Requests - The current tenant already has a request in progress","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{ \"zipFileName\":\"testZipName\",\r\n\"folderAlbumContents\":[\"image:cltt7lvbkl3bf997c8ekqf2i44\",\"image:c16q66447l2v5e5hgl0ds2vg3d\",\"image:252lcanfjt5oh71632vmkpl95t\",\"video:dboc3tqfqh4e58hjs449c4t91r\"],\r\n\"preset\": \"7291a4bb35354693a6b815dc7585dd9a\",\r\n\"quality\": \"100\",\r\n\"type\": \"jpeg\",\r\n\"colorMode\": \"RGB\",\r\n\"resize\": \"800x800\",\r\n\"proportion\": \"false\",\r\n\"userAddress\": \"nolan@Objectivasoftware.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{SITE_BASEURL}}/api/v1/batch/download?zipFileName={{zipFileName}}&folderAlbumContents=[[\"image:{{contentId}}\",\"image:{{contentId}}\",\"image:{{contentId}}\",\"album:{{albumId}}\",\"folder:{{folderId}}\"]]","host":["{{SITE_BASEURL}}"],"path":["api","v1","batch","download"],"query":[{"key":"zipFileName","value":"{{zipFileName}}","description":"REQUIRED - Target zip package name"},{"key":"folderAlbumContents","value":"[[\"image:{{contentId}}\",\"image:{{contentId}}\",\"image:{{contentId}}\",\"album:{{albumId}}\",\"folder:{{folderId}}\"]]","description":"REQUIRED - Type and ID collection of batch download files"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"code\": 429,\r\n    \"message\": \"Another bulk download is being processed, please wait for it to finish and try again.\"\r\n}"}],"_postman_id":"9838b735-f2fb-41fb-9d08-f8070db7ffbf"}],"id":"20ca57ba-1da6-457a-913c-c7196e7941e0","description":"<p>All Requests in this folder have the following Rate limit: <i>1000 times/minute</i></p>\n<p>To download the content, call request \"<a href=\"#0950be17-aaa6-4979-a087-d304b7935d42\">Get Content Details</a>\" and then you will get an array named \"url\".  All of them contain an “api_binary”, which refers to the binary files in various format. The detail url will connect to your Canto account you were able to login to.</p>\n<p>The “download” url gives the original content file. For image content, there are extra 3 urls, “PNG”, “HighJPG”, “LowJPG”. You can download the corresponding image format as you want.</p>\n<p>The “preview” gives an image view of the content. For example, first page view for document content, and a smaller size image for the image content. By default, the image is “240” pixels (dimension means the longest size of the width and height when zooming out). To specifiy the dimension, you could provide slash “/” and dimension number under the preview url. </p>\n<p>For example, if the preview url is <a href=\"https://{{SITE_BASEURL}}/api_binary/v1/image/abc/preview\">https://{{SITE_BASEURL}}/api_binary/v1/image/abc/preview</a>, you can get a 500 dimension preview image by using <a href=\"https://{{SITE_BASEURL}}/api_binary/v1/image/abc/preview/500\">https://{{SITE_BASEURL}}/api_binary/v1/image/abc/preview/500</a>.<br /><strong>Note:</strong> If the maximum preview size is 400, the url will only get the 400 dimension preview.</p>\n<p>The “metadata” url will give you the xml file which was extracted from the original file. It has more detail than the metadata returned by the detail API. It follows the original data format, not the one in general notes.</p>\n<p>The “play” url is for audio and video content. Generally the file would be smaller than original , so it can be played and it represents the original file.</p>\n","event":[{"listen":"prerequest","script":{"id":"e1ee06e5-6e3b-49d0-aef8-2622b3f0f687","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"491c1c79-1deb-4526-b3a8-38ee2c07a656","type":"text/javascript","exec":[""]}}],"_postman_id":"20ca57ba-1da6-457a-913c-c7196e7941e0","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}}},{"name":"Export","item":[{"name":"Export Metadata","id":"8d7dfc78-9cf2-44e1-b624-dcaaa4894ccb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"Torey_Becker@example.com"},"url":"{{SITE_BASEURL}}/api/v1/export/metadata","description":"<p><a href=\"#api-rate-limit\"><i>Rate Level: 4</i></a></p>\n<p>Export metadata via API to a CSV. Email notification will be sent once the export is done.</p>\n<p>By default the metadata will be sent to the email address of the API token user. If you want to send the email to another address, just define it as plain text inside the body of your request.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","export","metadata"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"201ee00a-d55d-4619-9fae-420585df3745","name":"200 OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"canto-support@canto.com"},"url":"{{SITE_BASEURL}}/api/v1/export/metadata"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 11 Jan 2021 14:51:22 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"65"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 14:51:22 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"You will receive an email with the link to the CSV when complete."},{"id":"1f6e3034-6c0f-4bbc-b40f-67c79979caf6","name":"400 Bad Request - Email address format error","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"invalidEmail"},"url":"{{SITE_BASEURL}}/api/v1/export/metadata"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 14:55:16 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 14:55:16 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2110,\n    \"message\": \"Invalid input.\"\n}"}],"_postman_id":"8d7dfc78-9cf2-44e1-b624-dcaaa4894ccb"},{"name":"Export Metadata With Filter","id":"e66a98ee-3469-4fcd-b2eb-2c7c5cfc7f60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"filter\": {\r\n\t\t\"lastModified\" : \"1571042449..1571301649\",\r\n\t\t\"uploadedTime\" : \"1571042449..1571301649\",\r\n\t\t\"limit\": 200,\r\n\t\t\"start\": 0\r\n\t},\r\n\t\"columns\": [\"Content ID\", \"File Name\", \"MD5\", \"Description\"]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/file/metadata","description":"<p>Advanced API for metadata export.It supports to customize which fields to export, and supports to narrow the range of exported data through filter.</p>\n<p>This api will return the export results with json format.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<p>Sample Body:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"filter\": {\n        \"lastModified\": \"1672329600..1675872000\",\n        \"uploadedTime\": \"1672329600..1675872000\",\n        \"limit\": 200,\n        \"start\": 0\n    },\n    \"columns\": [\"Content ID\", \"File Name\", \"MD5\", \"Description\"]\n}\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>KEY</th>\n<th><strong>VALUE</strong></th>\n<th>DESTRICTION</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>lastModified</td>\n<td>{{lastModified}}</td>\n<td>Filter by last modified time. (Value is in Unix timestamp format). Consistent with Search API.</td>\n</tr>\n<tr>\n<td>uploadedTime</td>\n<td>{{uploadedTime}}</td>\n<td>Filter by upload time. (Value is in Unix timestamp format). Consistent with Search API.</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>{{limit}}</td>\n<td>Maximum number of items to be returned.  <br />Default: 100</td>\n</tr>\n<tr>\n<td>start</td>\n<td>{{start}}</td>\n<td>Offset number of items to be returned.  <br />Default: 0</td>\n</tr>\n<tr>\n<td>columns</td>\n<td>{{columns}}</td>\n<td>Customize exported/query columns.  <br />Example:  <br />[\"Content ID\", \"File Name\", \"MD5\", \"Description\", ...]</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","file","metadata"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"0b711530-dda9-490d-b4df-020e4bd63828","name":"Get JSON Result","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"filter\": {\r\n        \"lastModified\": \"1672329600..1675872000\",\r\n        \"uploadedTime\": \"1672329600..1675872000\",\r\n        \"limit\": 100,\r\n        \"start\": 0\r\n    },\r\n    \"columns\": [\"Content ID\", \"File Name\", \"MD5\", \"Description\"]","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/file/metadata"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 11 Jan 2021 14:51:22 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"65"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 14:51:22 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"[\r\n    {\r\n        \"Description\": \"\",\r\n        \"Content ID\": \"tau2872aoh087ckvar8jciaq65\",\r\n        \"File Name\": \"10012.jpg\",\r\n        \"MD5\": \"4cc4136b3f7142057293783ee2742f8e\"\r\n    },\r\n    {\r\n        \"Description\": \"\",\r\n        \"Content ID\": \"dujcakiq855h5b9j9prbjovl3q\",\r\n        \"File Name\": \"10011.jpg\",\r\n        \"MD5\": \"ee2e2f33217d299680ed59583b429b83\"\r\n    },\r\n    {\r\n        \"Description\": \"\",\r\n        \"Content ID\": \"sve653p7ht1p5drj1cibvhlg2e\",\r\n        \"File Name\": \"10010.jpg\",\r\n        \"MD5\": \"efad04f94e830739d3987bfbdfead6a4\"\r\n    },\r\n    {\r\n        \"Description\": \"\",\r\n        \"Content ID\": \"ps1ipgtsep61vav89i07okfh74\",\r\n        \"File Name\": \"10004.jpg\",\r\n        \"MD5\": \"9e85bd8b5504df08a69051d3c2273e74\"\r\n    }\r\n]"}],"_postman_id":"e66a98ee-3469-4fcd-b2eb-2c7c5cfc7f60"},{"name":"Export Metadata of album","event":[{"listen":"prerequest","script":{"id":"ebe2b5dd-c0a6-473f-b890-6785c5229c85","exec":["const utils = eval(globals.loadUtils)","","utils.checkVariable(\"albumId\")"],"type":"text/javascript"}}],"id":"401678e0-91aa-4a53-a6f9-e2fb4dc7fbc9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"Nikki3@hotmail.com"},"url":"{{SITE_BASEURL}}/api/v1/album/:albumId/export/metadata","description":"<p>Export metadata of an album via API to a CSV. Email notification will be sent once the export is done.</p>\n<p>By default the metadata will be sent to the email address of the API token user. If you want to send the email to another address, just define it as plain text inside the body of your request.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","album",":albumId","export","metadata"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"description":{"content":"<p>The specific album or folder id</p>\n","type":"text/plain"},"type":"string","value":"{{albumId}}","key":"albumId"}]}},"response":[{"id":"2ebb9ebf-65ee-41f7-9c1e-86a8dbac501f","name":"200 OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/album/:albumId/export/metadata","host":["{{SITE_BASEURL}}"],"path":["api","v1","album",":albumId","export","metadata"],"variable":[{"description":"The specific album or folder id","key":"albumId","type":"string","value":"IMUIF"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 11 Jan 2021 15:00:29 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"65"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 15:00:29 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"You will receive an email with the link to the CSV when complete."},{"id":"41bf922f-6b80-4cef-a4ba-852bde18c7c4","name":"200 OK - Specific email address","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"canto-support@canto.com"},"url":{"raw":"{{SITE_BASEURL}}/api/v1/album/:albumId/export/metadata","host":["{{SITE_BASEURL}}"],"path":["api","v1","album",":albumId","export","metadata"],"variable":[{"description":"The specific album or folder id","key":"albumId","type":"string","value":"IMUIF"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 11 Jan 2021 15:01:09 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"65"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 15:01:09 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"You will receive an email with the link to the CSV when complete."}],"_postman_id":"401678e0-91aa-4a53-a6f9-e2fb4dc7fbc9"},{"name":"Export Metadata of folder","event":[{"listen":"prerequest","script":{"id":"ccd36d4d-9046-4167-bf5f-cf5e55d1ecc1","exec":["const utils = eval(globals.loadUtils)","","utils.checkVariable(\"folderId\")"],"type":"text/javascript"}}],"id":"c02f56f4-b171-4c72-867c-7ed05c5f1643","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"Earlene80@hotmail.com"},"url":"{{SITE_BASEURL}}/api/v1/folder/:folderId/export/metadata","description":"<p>Export metadata of an folder via API to a CSV. Email notification will be sent once the export is done.</p>\n<p>By default the metadata will be sent to the email address of the API token user. If you want to send the email to another address, just define it as plain text inside the body of your request.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","folder",":folderId","export","metadata"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"type":"string","value":"{{folderId}}","key":"folderId"}]}},"response":[{"id":"9738cdb4-a00c-4b57-a059-e54f683254c4","name":"200 OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/folder/:folderId/export/metadata","host":["{{SITE_BASEURL}}"],"path":["api","v1","folder",":folderId","export","metadata"],"variable":[{"key":"folderId","value":"SHFO1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 11 Jan 2021 15:03:17 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"65"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 15:03:17 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"You will receive an email with the link to the CSV when complete."},{"id":"e6233485-9ec6-4425-8f0d-8a2e3cf7edeb","name":"200 OK - Specific email address","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"canto-support@canto.com"},"url":{"raw":"{{SITE_BASEURL}}/api/v1/folder/:folderId/export/metadata","host":["{{SITE_BASEURL}}"],"path":["api","v1","folder",":folderId","export","metadata"],"variable":[{"key":"folderId","value":"SHFO1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 11 Jan 2021 15:03:17 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"65"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 15:03:17 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"You will receive an email with the link to the CSV when complete."}],"_postman_id":"c02f56f4-b171-4c72-867c-7ed05c5f1643"}],"id":"560ed205-52b9-4025-a2c6-bd65ba7e0217","_postman_id":"560ed205-52b9-4025-a2c6-bd65ba7e0217","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}}},{"name":"Reports","item":[{"name":"Get specified content Usage History report","event":[{"listen":"test","script":{"id":"8b57abd8-81af-45e6-a44a-13ca723bc0ac","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"usageHistoryMarker\", jsonData.nextMarker);"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"f9cb928f-ab43-4233-bc04-d1f8fc2cb80a","exec":["const utils = eval(globals.loadUtils)","","utils.checkVariable(\"contentId\")","utils.checkVariable(\"contentScheme\")"],"type":"text/javascript"}}],"id":"6ec0a3bf-0c11-4f26-8156-ad927cf17dd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/usagehistory/:scheme/:id?sortDirection=descending&limit=100&marker={{usageHistoryMarker}}","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>Get a specified content’s Usage history report. The detail seen on the asset content detail page.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","usagehistory",":scheme",":id"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>“ascending” or “descending”</p>\n<p>Default: \"descending\"</p>\n","type":"text/plain"},"key":"sortDirection","value":"descending"},{"description":{"content":"<p>The maximum number of items to be returned.</p>\n<p>Default: 100</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"description":{"content":"<p>This API returns results page by page. This value is from the API call response, indicates to get the next page. If you call this method first time, leave this param emtpy.</p>\n","type":"text/plain"},"key":"marker","value":"{{usageHistoryMarker}}"}],"variable":[{"description":{"content":"<p>REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)</p>\n","type":"text/plain"},"type":"string","value":"{{contentScheme}}","key":"scheme"},{"description":{"content":"<p>REQUIRED - ContentId</p>\n","type":"text/plain"},"type":"string","value":"{{contentId}}","key":"id"}]}},"response":[{"id":"fde7fda2-b390-4cba-9059-fedfc6add7a3","name":"200 OK - First time call","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/usagehistory/:scheme/:id?sortDirection=descending&limit=2","host":["{{SITE_BASEURL}}"],"path":["api","v1","usagehistory",":scheme",":id"],"query":[{"key":"sortDirection","value":"descending","description":"“ascending” or “descending”\n\nDefault: \"descending\""},{"key":"limit","value":"2","description":"The maximum number of items to be returned.\n\nDefault: 100"}],"variable":[{"key":"scheme","value":"image","type":"string","description":"REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)"},{"key":"id","value":"epnoj07hft395clgd3mqg7it1d","type":"string","description":"REQUIRED - ContentId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 11:26:55 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 11:26:55 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"limit\": 2,\n    \"sortBy\": \"time\",\n    \"sortDirection\": \"descending\",\n    \"nextMarker\": \"MjAyMTAxMTExMDM5MTM0MTE\",\n    \"results\": [\n        {\n            \"actionName\": \"Removed from Album\",\n            \"email\": \"canto-support@canto.com\",\n            \"user\": \"Canto Support\",\n            \"actionTime\": \"20210111025614266\"\n        },\n        {\n            \"actionName\": \"Assigned File\",\n            \"email\": \"canto-support@canto.com\",\n            \"user\": \"Canto Support\",\n            \"actionTime\": \"20210111023913411\"\n        }\n    ]\n}"},{"id":"b5792c58-5716-4929-bc22-807339a88d75","name":"200 OK - Second call","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/usagehistory/:scheme/:id?sortDirection=descending&limit=2&marker=MjAyMTAxMTExMDM5MTM0MTE","host":["{{SITE_BASEURL}}"],"path":["api","v1","usagehistory",":scheme",":id"],"query":[{"key":"sortDirection","value":"descending","description":"“ascending” or “descending”\n\nDefault: \"descending\""},{"key":"limit","value":"2","description":"The maximum number of items to be returned.\n\nDefault: 100"},{"key":"marker","value":"MjAyMTAxMTExMDM5MTM0MTE","description":"This API returns results page by page. This value is from the API call response, indicates to get the next page. If you call this method first time, leave this param emtpy."}],"variable":[{"key":"scheme","value":"image","type":"string","description":"REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)"},{"key":"id","value":"epnoj07hft395clgd3mqg7it1d","type":"string","description":"REQUIRED - ContentId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 11:31:31 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 11:31:31 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"limit\": 2,\n    \"sortBy\": \"time\",\n    \"sortDirection\": \"descending\",\n    \"results\": [\n        {\n            \"actionName\": \"Downloaded Image\",\n            \"email\": \"canto-support@canto.com\",\n            \"user\": \"Canto Support\",\n            \"actionTime\": \"20210107082348652\"\n        },\n        {\n            \"actionName\": \"Added Comment\",\n            \"email\": \"canto-support@canto.com\",\n            \"user\": \"Canto Support\",\n            \"actionTime\": \"20210107081532553\"\n        }\n    ]\n}"}],"_postman_id":"6ec0a3bf-0c11-4f26-8156-ad927cf17dd2"},{"name":"Get specified content Share Activity report","event":[{"listen":"test","script":{"id":"cca11f53-0449-427a-9f43-6b78f9e9bbb9","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"shareActivityMarker\", jsonData.nextMarker);"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"6e080233-2614-499c-90d5-2c43d5e7f106","exec":["const utils = eval(globals.loadUtils)","","utils.checkVariable(\"contentId\")","utils.checkVariable(\"contentScheme\")"],"type":"text/javascript"}}],"id":"8921300c-8678-4038-81b5-976a073ced40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/shareactivity/:scheme/:id?sortDirection=descending&limit=100&marker={{shareActivityMarker}}","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>Get a specified content’s Share Activity report. The detail seen on the asset content detail page.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","shareactivity",":scheme",":id"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>“ascending” or “descending”. </p>\n<p>Default: \"descending\"</p>\n","type":"text/plain"},"key":"sortDirection","value":"descending"},{"description":{"content":"<p>The maximum number of items to be returned. </p>\n<p>Default: 100</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"description":{"content":"<p>This API returns results page by page. This value is from the API call response, indicates to get the next page. First time marker must be unset.</p>\n","type":"text/plain"},"key":"marker","value":"{{shareActivityMarker}}"}],"variable":[{"description":{"content":"<p>REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)</p>\n","type":"text/plain"},"type":"string","value":"{{contentScheme}}","key":"scheme"},{"description":{"content":"<p>REQUIRED - Content id</p>\n","type":"text/plain"},"type":"string","value":"{{contentId}}","key":"id"}]}},"response":[{"id":"435ac013-a638-4d65-8547-0a28d70b5971","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/shareactivity/:scheme/:id?sortDirection=descending&limit=100","host":["{{SITE_BASEURL}}"],"path":["api","v1","shareactivity",":scheme",":id"],"query":[{"key":"sortDirection","value":"descending","description":"“ascending” or “descending”. \n\nDefault: \"descending\""},{"key":"limit","value":"100","description":"The maximum number of items to be returned. \n\nDefault: 100"}],"variable":[{"description":"REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)","key":"scheme","type":"string","value":"image"},{"description":"REQUIRED - Content id","key":"id","type":"string","value":"epnoj07hft395clgd3mqg7it1d"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 11:39:03 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 11:39:03 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"limit\": 100,\n    \"sortBy\": \"time\",\n    \"sortDirection\": \"descending\",\n    \"results\": [\n        {\n            \"actionName\": \"Shared File\",\n            \"email\": \"canto-support@canto.com\",\n            \"user\": \"Canto Support\",\n            \"actionTime\": \"20210111033837926\"\n        }\n    ]\n}"}],"_postman_id":"8921300c-8678-4038-81b5-976a073ced40"},{"name":"Get specified content Download Activity report","event":[{"listen":"test","script":{"id":"9ad46d57-eebd-4252-945d-abc87952533d","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"downloadActivityMarker\", jsonData.nextMarker);"],"type":"text/javascript"}}],"id":"e8545018-fb41-4593-8e1c-dd650f5b2796","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/downloadactivity/:scheme/:id?sortDirection=descending&limit=100&marker={{downloadActivityMarker}}","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>Get a specified content’s Download Activity report. The detail seen on the asset content detail page.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","downloadactivity",":scheme",":id"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>“ascending” or “descending”. </p>\n<p>Default: \"descending\"</p>\n","type":"text/plain"},"key":"sortDirection","value":"descending"},{"description":{"content":"<p>The maximum number of items to be returned.</p>\n<p>Default: 100</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"description":{"content":"<p>This API returns results page by page. This value is from the API call response, indicates to get the next page. First time marker must be unset.</p>\n","type":"text/plain"},"key":"marker","value":"{{downloadActivityMarker}}"}],"variable":[{"description":{"content":"<p>REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)</p>\n","type":"text/plain"},"type":"string","value":"{{contentScheme}}","key":"scheme"},{"description":{"content":"<p>REQUIRED - Content id</p>\n","type":"text/plain"},"type":"string","value":"{{contentId}}","key":"id"}]}},"response":[{"id":"b852d130-2b69-4bd2-af58-747c7a1ca38d","name":"200 OK - First time call","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/downloadactivity/:scheme/:id?sortDirection=descending&limit=1","host":["{{SITE_BASEURL}}"],"path":["api","v1","downloadactivity",":scheme",":id"],"query":[{"key":"sortDirection","value":"descending","description":"“ascending” or “descending”. \n\nDefault: \"descending\""},{"key":"limit","value":"1","description":"The maximum number of items to be returned.\n\nDefault: 100"}],"variable":[{"description":"REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)","key":"scheme","type":"string","value":"image"},{"key":"id","type":"string","value":"epnoj07hft395clgd3mqg7it1d","description":"REQUIRED - Content id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 11:45:07 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 11:45:07 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"limit\": 1,\n    \"sortBy\": \"time\",\n    \"sortDirection\": \"descending\",\n    \"nextMarker\": \"RE9XTkxPQUQAMjAyMTAxMTExMTQ0NTQxODk\",\n    \"results\": [\n        {\n            \"actionName\": \"Downloaded Image\",\n            \"email\": \"canto-support@canto.com\",\n            \"user\": \"Canto Support\",\n            \"actionTime\": \"20210111034454189\"\n        }\n    ]\n}"},{"id":"15dbcf72-04ee-40ff-a128-cbff66a4c477","name":"200 OK - Second call","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/downloadactivity/:scheme/:id?sortDirection=descending&limit=1&marker=RE9XTkxPQUQAMjAyMTAxMTExMTQ0NTQxODk","host":["{{SITE_BASEURL}}"],"path":["api","v1","downloadactivity",":scheme",":id"],"query":[{"key":"sortDirection","value":"descending","description":"“ascending” or “descending”. \n\nDefault: \"descending\""},{"key":"limit","value":"1","description":"The maximum number of items to be returned.\n\nDefault: 100"},{"key":"marker","value":"RE9XTkxPQUQAMjAyMTAxMTExMTQ0NTQxODk","description":"This API returns results page by page. This value is from the API call response, indicates to get the next page. First time marker must be unset."}],"variable":[{"description":"REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)","key":"scheme","type":"string","value":"image"},{"key":"id","type":"string","value":"epnoj07hft395clgd3mqg7it1d","description":"REQUIRED - Content id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 11:45:53 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 11:45:53 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"limit\": 1,\n    \"sortBy\": \"time\",\n    \"sortDirection\": \"descending\",\n    \"results\": [\n        {\n            \"actionName\": \"Downloaded Image\",\n            \"email\": \"canto-support@canto.com\",\n            \"user\": \"Canto Support\",\n            \"actionTime\": \"20210107082348652\"\n        }\n    ]\n}"}],"_postman_id":"e8545018-fb41-4593-8e1c-dd650f5b2796"},{"name":"Get specified content View Activity report","event":[{"listen":"test","script":{"id":"176d7c87-b694-4d50-a798-c1424f5c0299","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"contentViewActivityMarker\", jsonData.nextMarker);"],"type":"text/javascript"}}],"id":"2a5e4f76-8a01-4c69-ac02-c50f33538d25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/downloadactivity/:scheme/:id?sortDirection=descending&limit=100&marker={{contentViewActivityMarker}}","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>Get a specified content’s Download Activity report. The detail seen on the asset content detail page.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","downloadactivity",":scheme",":id"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>“ascending” or “descending”.</p>\n<p>Default: \"descending\"</p>\n","type":"text/plain"},"key":"sortDirection","value":"descending"},{"description":{"content":"<p>The maximum number of items to be returned.</p>\n<p>Default: 100</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"description":{"content":"<p>This API returns results page by page. This value is from the API call response, indicates to get the next page. First time marker must be unset.</p>\n","type":"text/plain"},"key":"marker","value":"{{contentViewActivityMarker}}"}],"variable":[{"description":{"content":"<p>REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)</p>\n","type":"text/plain"},"type":"string","value":"{{contentScheme}}","key":"scheme"},{"description":{"content":"<p>REQUIRED - Content id</p>\n","type":"text/plain"},"type":"string","value":"{{contentId}}","key":"id"}]}},"response":[{"id":"f79a058d-7904-46f1-9e91-3fffc747f9d9","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/downloadactivity/:scheme/:id?sortDirection=descending&limit=1","host":["{{SITE_BASEURL}}"],"path":["api","v1","downloadactivity",":scheme",":id"],"query":[{"key":"sortDirection","value":"descending","description":"“ascending” or “descending”.\n\nDefault: \"descending\""},{"key":"limit","value":"1","description":"The maximum number of items to be returned.\n\nDefault: 100"}],"variable":[{"description":"REQUIRED - \"image\", \"video\", \"audio\", \"document\", \"presentation\" or \"other\". (case sensitive)","key":"scheme","type":"string","value":"image"},{"description":"REQUIRED - Content id","key":"id","type":"string","value":"epnoj07hft395clgd3mqg7it1d"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 11:49:14 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 11:49:14 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"limit\": 1,\n    \"sortBy\": \"time\",\n    \"sortDirection\": \"descending\",\n    \"nextMarker\": \"RE9XTkxPQUQAMjAyMTAxMTExMTQ0NTQxODk\",\n    \"results\": [\n        {\n            \"actionName\": \"Downloaded Image\",\n            \"email\": \"support@canto.com\",\n            \"user\": \"Canto Support\",\n            \"actionTime\": \"20210111034454189\"\n        }\n    ]\n}"}],"_postman_id":"2a5e4f76-8a01-4c69-ac02-c50f33538d25"},{"name":"Get tenant operation Log data","id":"3f2ecc6f-49a5-463c-b0d8-3fc386428e7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/operationlogs?startDate={{startDate}}&endDate={{endDate}}","description":"<p><a href=\"#api-rate-limit\"><i>Rate Level: 4</i></a></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","operationlogs"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>Operation log start time</p>\n<p>Format: yyyyMMdd\nExample: 20210101</p>\n","type":"text/plain"},"key":"startDate","value":"{{startDate}}"},{"description":{"content":"<p>Operation log end time</p>\n<p><em>Format:</em> yyyyMMdd\n<strong>Example:</strong> 20210101</p>\n","type":"text/plain"},"key":"endDate","value":"{{endDate}}"}],"variable":[]}},"response":[{"id":"c628afb1-c031-4505-a457-9f7f019b1e0f","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/operationlogs?startDate=20210617&endDate=20210623","host":["{{SITE_BASEURL}}"],"path":["api","v1","operationlogs"],"query":[{"key":"startDate","value":"20210617","description":"Operation log start time"},{"key":"endDate","value":"20210623","description":"Operation log end time"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"User,Operation,Location,Date,Content\r\nCanto Support,Deleted File on Main Library,Main Library,2021-06-22 20:25,File.jpg(48.24KB)\r\nCanto Support,Previewed File on Main Library,Main Library,2021-06-21 22:33,image.png(387.14KB)\r\nCanto Support,Previewed File on Main Library,Main Library,2021-06-21 22:33,image.png(387.14KB)\r\nCanto Support,Deleted File on Main Library,Main Library,2021-06-20 18:48,image.png(387.14KB)\r\nCanto Support,Shared File on Main Library,Main Library,2021-06-17 19:07,File.jpg(9.54KB)\r\nCanto Support,Deleted a Saved Favorite on Main Library,Main Library,2021-06-17 19:06,jaychou(1B)\r\nCanto Support,Added a File to a Collection:jaychou,Main Library,2021-06-17 19:05,File.jpg(9.54KB)\r\nCanto Support,Created a Saved Favorite on Main Library,Main Library,2021-06-17 19:05,jaychou\r\nCanto Support,Removed from Follow on Main Library,Main Library,2021-06-17 19:04,File.jpg(9.54KB)\r\nCanto Support,Followed a File,Main Library,2021-06-17 19:04,File.jpg(9.54KB)\r\n"}],"_postman_id":"3f2ecc6f-49a5-463c-b0d8-3fc386428e7f"},{"name":"Get tenant download or upload history reports","id":"f876aaf6-2e38-4a05-b072-27bf87451e62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/tenantreport/:type?from={{startDate}}&to={{endDate}}&sortDirection=descending&limit=100","description":"<p>Dependent on the path variable “type” this history provides all upload or download activities for a defined period.</p>\n<p><strong>Download Entries from Different Sources</strong></p>\n<p>In the case, a download takes place when a user is logged in to Canto, the logfile entry will contain the e-mail-<br />address of the downloading user, while the “location” value will contain the source, e.g., “Main Library”.</p>\n<p>In some cases, a download can be made without any login information, e.g., when downloading from a shared link<br />or a public portal. In these cases, following information is given in the download history result set:</p>\n<p><strong>Download from Common Share Link</strong></p>\n<ul>\n<li>“e-mail” contains 5-digit internal ID of share link</li>\n<li>“location” contains download source, like “Main Library”</li>\n</ul>\n<p><strong>Download from Album/Folder Share Link</strong></p>\n<ul>\n<li>“e-mail” contains string “anonymous”</li>\n<li>“location” contains string “Share Link:” and &gt;8-digit internal ID of share link</li>\n</ul>\n<p><strong>Download from a Public Portal</strong></p>\n<ul>\n<li>“e-mail” contains string “anonymous”</li>\n<li>“location” contains string “Portal:” and name of the public portal</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","tenantreport",":type"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>Report start time, format is yyyyMMdd</p>\n","type":"text/plain"},"key":"from","value":"{{startDate}}"},{"description":{"content":"<p>Report end time, format is yyyyMMdd</p>\n","type":"text/plain"},"key":"to","value":"{{endDate}}"},{"description":{"content":"<p>Sort order of report by date. \n<em>Valid Values:</em> \"ascending\" or \"descending\"</p>\n<p><strong>Default:</strong> descending</p>\n","type":"text/plain"},"key":"sortDirection","value":"descending"},{"description":{"content":"<p>Number of records returned in the result set. \n<strong>Default:</strong> 100</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"disabled":true,"description":{"content":"<p>Pagination marker. \nThe marker is not needed with the first request, but with every page from the second request to get the next page of the result. \nWill be delivered as “nextMarker” in the first result set.</p>\n","type":"text/plain"},"key":"marker","value":""}],"variable":[{"id":"223e5a00-b03c-40cd-9ad2-aba1951836ce","description":{"content":"<p>Defines the type of history report. \n<em>Valid values</em> \"uploadhistory\" or \"downloadhistory\".</p>\n","type":"text/plain"},"type":"any","value":"uploadhistory","key":"type"}]}},"response":[{"id":"97bf51be-397d-4eaa-9c33-cabd6bf8223a","name":"200 OK - Get tenant upload history report","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/tenantreport/uploadhistory?from={{fromDate}}&to={{toDate}}&sortDirection=descending&limit=100&marker=","host":["{{SITE_BASEURL}}"],"path":["api","v1","tenantreport","uploadhistory"],"query":[{"key":"from","value":"{{fromDate}}","description":"Report start time, format is yyyyMMdd"},{"key":"to","value":"{{toDate}}","description":"Report end time, format is yyyyMMdd"},{"key":"sortDirection","value":"descending","description":"Sort order of report by date. \n*Valid Values:* \"ascending\" or \"descending\"\n\n**Default:** descending"},{"key":"limit","value":"100","description":"Number of records returned in the result set.\n**Default:** 100"},{"key":"marker","value":"","description":"Pagination marker. \nThe marker is not needed with the first request, but with every page from the second request to get the next page of the result. \nWill be delivered as “nextMarker” in the first resultset."}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"results\": [\r\n    {\r\n      \"action\": \"Upload Content\",\r\n      \"email\": \"support@canto.com\",\r\n      \"user\": \"one one\",\r\n      \"time\": \"20210906155201\",\r\n      \"location\": \"Workspace: new work\",\r\n      \"content\": {\r\n        \"name\": \"C02-19-1286.jpg\",\r\n        \"scheme\": \"image\",\r\n        \"id\": \"hknccs4u6h3gdac15ih82kfb7v\"\r\n      },\r\n      \"albumName\": \"album name 1\",\r\n      \"applicationName\": \"Canto Web App\",\r\n      \"locationName\": \"new work\",\r\n      \"locationUrl\": \"newwork\",\r\n      \"locationType\": \"Workspace\"\r\n    },\r\n    {\r\n      \"action\": \"Upload Content\",\r\n      \"email\": \"support@canto.com\",\r\n      \"user\": \"one one\",\r\n      \"time\": \"20210906155201\",\r\n      \"location\": \"Upload Link: new upload\",\r\n      \"content\": {\r\n        \"name\": \"C02-19-1287.jpg\",\r\n        \"scheme\": \"image\",\r\n        \"id\": \"hknccs4u6h3gdac15ih82kfb7v\"\r\n      },\r\n      \"albumName\": \"album name 1\",\r\n      \"applicationName\": \"Canto Web App\",\r\n      \"locationName\": \"new upload\",\r\n      \"locationType\": \"Upload Link\"\r\n    },\r\n    {\r\n      \"action\": \"Upload Content\",\r\n      \"email\": \"support@canto.com\",\r\n      \"user\": \"one one\",\r\n      \"time\": \"20210906155202\",\r\n      \"location\": \"Main library\",\r\n      \"locationName\": \"Main library\",\r\n      \"content\": {\r\n        \"name\": \"anotherImage.png\",\r\n        \"scheme\": \"image\",\r\n        \"id\": \"hknccs4u6h3gdac15ih82kfb7v\"\r\n      },\r\n      \"albumName\": \"album name 2\",\r\n      \"applicationName\": \"Canto Connect (Win)\"\r\n    }\r\n  ],\r\n  \"nextMarker\": \"MjAyMTExMDkwODQ2MDIzODk\",\r\n  \"limit\": 3,\r\n  \"sortBy\": \"time\",\r\n  \"sortDirection\": \"descending\"\r\n}"},{"id":"a8ce31b6-8d12-4fee-ab3c-683b71bc64af","name":"200 OK - Get tenant download history report","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/tenantreport/downloadhistory?from={{fromDate}}&to={{toDate}}&sortDirection=descending&limit=100&marker=","host":["{{SITE_BASEURL}}"],"path":["api","v1","tenantreport","downloadhistory"],"query":[{"key":"from","value":"{{fromDate}}","description":"Report start time, format is yyyyMMdd"},{"key":"to","value":"{{toDate}}","description":"Report end time, format is yyyyMMdd"},{"key":"sortDirection","value":"descending","description":"Sort order of report by date. \n*Valid Values:* \"ascending\" or \"descending\"\n\n**Default:** descending"},{"key":"limit","value":"100","description":"Number of records returned in the result set.\n**Default:** 100"},{"key":"marker","value":"","description":"Pagination marker. \nThe marker is not needed with the first request, but with every page from the second request to get the next page of the result. \nWill be delivered as “nextMarker” in the first resultset."}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"results\": [\r\n    {\r\n      \"action\": \"Download Content\",\r\n      \"email\": \"support@canto.com\",\r\n      \"user\": \"one one\",\r\n      \"time\": \"20211118004801\",\r\n      \"location\": \"Workspace: new work\",\r\n      \"content\": {\r\n        \"name\": \"C02-19-1286.jpg\",\r\n        \"scheme\": \"image\",\r\n        \"id\": \"ap5r8h63916i7en1igqnpqmi1s\"\r\n      },\r\n      \"albumName\": \"album path 1, album path 2\",\r\n      \"groups\": \"group1\",\r\n      \"locationName\": \"new work\",\r\n      \"locationUrl\": \"newwork\",\r\n      \"locationType\": \"Workspace\"\r\n    },\r\n    {\r\n      \"action\": \"Download Content\",\r\n      \"email\": \"support@canto.com\",\r\n      \"user\": \"one one\",\r\n      \"time\": \"20211118004802\",\r\n      \"location\": \"Main library\",\r\n      \"content\": {\r\n        \"name\": \"anotherImage.png\",\r\n        \"scheme\": \"image\",\r\n        \"id\": \"ap5r8h63916i7en1igqnpqmi1s\"\r\n      },\r\n      \"albumName\": \"album path 2\",\r\n      \"groups\": \"group1\",\r\n      \"locationName\": \"Main library\"\r\n    }\r\n  ],\r\n  \"nextMarker\": \"MjAyMTExMDkwODQ2MDIzODk\",\r\n  \"limit\": 2,\r\n  \"sortBy\": \"time\",\r\n  \"sortDirection\": \"descending\"\r\n}"},{"id":"cf5ea6b4-f43f-4a02-b1c8-d9f89526b0e7","name":"200 OK - Get tenant upload history report, next page","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/tenantreport/uploadhistory?from={{fromDate}}&to={{toDate}}&sortDirection=descending&limit=100&marker=MjAyMTExMDkwODQ2MDIzODk","host":["{{SITE_BASEURL}}"],"path":["api","v1","tenantreport","uploadhistory"],"query":[{"key":"from","value":"{{fromDate}}","description":"Report start time, format is yyyyMMdd"},{"key":"to","value":"{{toDate}}","description":"Report end time, format is yyyyMMdd"},{"key":"sortDirection","value":"descending","description":"Sort order of report by date. \n*Valid Values:* \"ascending\" or \"descending\"\n\n**Default:** descending"},{"key":"limit","value":"100","description":"Number of records returned in the result set.\n**Default:** 100"},{"key":"marker","value":"MjAyMTExMDkwODQ2MDIzODk","description":"Pagination marker. \nThe marker is not needed with the first request, but with every page from the second request to get the next page of the result. \nWill be delivered as “nextMarker” in the first resultset."}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"results\": [\r\n    {\r\n      \"action\": \"Upload Content\",\r\n      \"email\": \"support@canto.com\",\r\n      \"user\": \"one one\",\r\n      \"time\": \"20210906155201\",\r\n      \"location\": \"Workspace: new work\",\r\n      \"content\": {\r\n        \"name\": \"C02-19-1286.jpg\",\r\n        \"scheme\": \"image\",\r\n        \"id\": \"hknccs4u6h3gdac15ih82kfb7v\"\r\n      },\r\n      \"albumName\": \"album name 1\",\r\n      \"applicationName\": \"Canto Web App\",\r\n      \"locationName\": \"new work\",\r\n      \"locationUrl\": \"newwork\",\r\n      \"locationType\": \"Workspace\"\r\n    },\r\n    {\r\n      \"action\": \"Upload Content\",\r\n      \"email\": \"support@canto.com\",\r\n      \"user\": \"one one\",\r\n      \"time\": \"20210906155201\",\r\n      \"location\": \"Upload Link: new upload\",\r\n      \"content\": {\r\n        \"name\": \"C02-19-1287.jpg\",\r\n        \"scheme\": \"image\",\r\n        \"id\": \"hknccs4u6h3gdac15ih82kfb7v\"\r\n      },\r\n      \"albumName\": \"album name 1\",\r\n      \"applicationName\": \"Canto Web App\",\r\n      \"locationName\": \"new upload\",\r\n      \"locationType\": \"Upload Link\"\r\n    },\r\n    {\r\n      \"action\": \"Upload Content\",\r\n      \"email\": \"support@canto.com\",\r\n      \"user\": \"one one\",\r\n      \"time\": \"20210906155202\",\r\n      \"location\": \"Main library\",\r\n      \"locationName\": \"Main library\",\r\n      \"content\": {\r\n        \"name\": \"anotherImage.png\",\r\n        \"scheme\": \"image\",\r\n        \"id\": \"hknccs4u6h3gdac15ih82kfb7v\"\r\n      },\r\n      \"albumName\": \"album name 2\",\r\n      \"applicationName\": \"Canto Connect (Win)\"\r\n    }\r\n  ],\r\n  \"nextMarker\": \"MjAyMTExMDkwODQ2MDIzODk\",\r\n  \"limit\": 3,\r\n  \"sortBy\": \"time\",\r\n  \"sortDirection\": \"descending\"\r\n}"}],"_postman_id":"f876aaf6-2e38-4a05-b072-27bf87451e62"},{"name":"Get tenant email sharing history report","id":"c021db1f-faad-4a55-8182-df0205f5b0ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/tenantreport/:type?from={{fromDate}}&to={{toDate}}&sortDirection=descending&limit=100&marker=","description":"<p>This report provides all link and e-mail sharing activities done within a specific period.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","tenantreport",":type"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>Report start time, format is yyyyMMdd</p>\n","type":"text/plain"},"key":"from","value":"{{fromDate}}"},{"description":{"content":"<p>Report end time, format is yyyyMMdd</p>\n","type":"text/plain"},"key":"to","value":"{{toDate}}"},{"description":{"content":"<p>Sort order of report by date. \n<em>Valid Values:</em> \"ascending\" or \"descending\"</p>\n<p><strong>Default:</strong> descending</p>\n","type":"text/plain"},"key":"sortDirection","value":"descending"},{"description":{"content":"<p>Number of records returned in the result set.\n<strong>Default:</strong> 100</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"description":{"content":"<p>Pagination marker. \nThe marker is not needed with the first request, but with every page from the second request to get the next page of the result. \nWill be delivered as “nextMarker” in the first resultset.</p>\n","type":"text/plain"},"key":"marker","value":""}],"variable":[{"id":"39dc66ac-e32f-47f2-a547-72cb2af56c1b","description":{"content":"<p>Defines the type of history report. Value is \"sharehistory\".</p>\n","type":"text/plain"},"type":"any","value":null,"key":"type"}]}},"response":[{"id":"a3b5466a-fbec-41c3-a508-f23b671196b6","name":"200 OK - Get tenant email sharing history report","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/tenantreport/sharehistory?from={{startDate}}&to={{endDate}}&sortDirection=descending&limit=100&marker=","host":["{{SITE_BASEURL}}"],"path":["api","v1","tenantreport","sharehistory"],"query":[{"key":"from","value":"{{startDate}}","description":"Report start time, format is yyyyMMdd"},{"key":"to","value":"{{endDate}}","description":"Report end time, format is yyyyMMdd"},{"key":"sortDirection","value":"descending","description":"Sort order of report by date. \n*Valid Values:* \"ascending\" or \"descending\"\n\n**Default:** descending"},{"key":"limit","value":"100","description":"Number of records returned in the result set.\n**Default:** 100"},{"key":"marker","value":"","description":"Pagination marker. \nThe marker is not needed with the first request, but with every page from the second request to get the next page of the result. \nWill be delivered as “nextMarker” in the first resultset."}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"results\": [\r\n    {\r\n      \"action\": \"Email Share\",\r\n      \"email\": \"support@canto.com\",\r\n      \"user\": \"one one\",\r\n      \"time\": \"20211101\",\r\n      \"accessTime\": \"20211101\",\r\n      \"expiresOn\": \"20211130\",\r\n      \"shareContent\": \"File: C02-19-1286.jpg C02-19-1288.jpg C02-19-1287.jpg\",\r\n      \"location\": \"Workspace: new work\",\r\n      \"sharedTo\": \"--share link--\",\r\n      \"description\": \"share message\",\r\n      \"shareName\": \"share name\",\r\n      \"size\": 3,\r\n      \"url\": \"{{SITE_BASEURL}}/s/Q6O59\",\r\n      \"locationName\": \"new work\",\r\n      \"locationUrl\": \"newwork\",\r\n      \"locationType\": \"Workspace\"\r\n    },\r\n    {\r\n      \"action\": \"Email Share\",\r\n      \"email\": \"support@canto.com\",\r\n      \"user\": \"Canto Support\",\r\n      \"time\": \"20211101\",\r\n      \"accessTime\": \"20211101\",\r\n      \"expiresOn\": \"20211130\",\r\n      \"shareContent\": \"File: C02-19-1286.jpg\",\r\n      \"location\": \"Main library\",\r\n      \"sharedTo\": \"someone@gmail.com\",\r\n      \"description\": \"share message\",\r\n      \"shareName\": \"share name\",\r\n      \"size\": 1,\r\n      \"url\": \"{{SITE_BASEURL}}/s/Q6O59\",\r\n      \"locationName\": \"Main library\"\r\n    }\r\n  ],\r\n  \"nextMarker\": \"MjAyMTExMDkwODQ2MDIzODk\",\r\n  \"limit\": 2,\r\n  \"sortBy\": \"time\",\r\n  \"sortDirection\": \"descending\"\r\n}"}],"_postman_id":"c021db1f-faad-4a55-8182-df0205f5b0ab"},{"name":"Get tenant 3rd party sharing history report","id":"46405c6f-62f7-479d-a37b-634d4c63fa70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/tenantreport/:type?from={{fromDate}}&to={{toDate}}&sortDirection=descending&limit=100&marker=","description":"<p>This report provides all sharing activities with social media channels (3rd-party-software) done within a specific period.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","tenantreport",":type"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>Report start time, format is yyyyMMdd</p>\n","type":"text/plain"},"key":"from","value":"{{fromDate}}"},{"description":{"content":"<p>Report end time, format is yyyyMMdd</p>\n","type":"text/plain"},"key":"to","value":"{{toDate}}"},{"description":{"content":"<p>Sort order of report by date. \n<em>Valid Values:</em> \"ascending\" or \"descending\"</p>\n<p><strong>Default:</strong> descending</p>\n","type":"text/plain"},"key":"sortDirection","value":"descending"},{"description":{"content":"<p>Number of records returned in the result set.\n<strong>Default:</strong> 100</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"description":{"content":"<p>Pagination marker. \nThe marker is not needed with the first request, but with every page from the second request to get the next page of the result. \nWill be delivered as “nextMarker” in the first resultset.</p>\n","type":"text/plain"},"key":"marker","value":""}],"variable":[{"id":"5de102b0-c75a-4f1c-ba33-5455800750d0","description":{"content":"<p>Defines the type of history report. \nValue is \"share3rdpartyhistory\".</p>\n","type":"text/plain"},"type":"any","value":null,"key":"type"}]}},"response":[{"id":"1f7261a0-159e-4640-b9fd-13f2b0883355","name":"200 OK - Get tenant 3rd party sharing history report","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/tenantreport/share3rdpartyhistory?from={{startDate}}&to={{endDate}}&sortDirection=descending&limit=100&marker=","host":["{{SITE_BASEURL}}"],"path":["api","v1","tenantreport","share3rdpartyhistory"],"query":[{"key":"from","value":"{{startDate}}","description":"Report start time, format is yyyyMMdd"},{"key":"to","value":"{{endDate}}","description":"Report end time, format is yyyyMMdd"},{"key":"sortDirection","value":"descending","description":"Sort order of report by date. \n*Valid Values:* \"ascending\" or \"descending\"\n\n**Default:** descending"},{"key":"limit","value":"100","description":"Number of records returned in the result set.\n**Default:** 100"},{"key":"marker","value":"","description":"Pagination marker. \nThe marker is not needed with the first request, but with every page from the second request to get the next page of the result. \nWill be delivered as “nextMarker” in the first resultset."}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"results\": [\r\n    {\r\n      \"action\": \"3rd Party Share\",\r\n      \"email\": \"support@canto.com\",\r\n      \"user\": \"Canto Support\",\r\n      \"time\": \"20211101\",\r\n      \"content\": [\r\n        {\r\n          \"name\": \"640x480.MP4\",\r\n          \"scheme\": \"video\",\r\n          \"id\": \"54e0793accbd4be5859bb51c6996413b\"\r\n        }\r\n      ],\r\n      \"location\": \"Workspace: new work\",\r\n      \"sharedTo\": \"Slack\",\r\n      \"description\": \"share message\",\r\n      \"locationName\": \"new work\",\r\n      \"locationUrl\": \"newwork\",\r\n      \"locationType\": \"Workspace\"\r\n    },\r\n    {\r\n      \"action\": \"3rd Party Share\",\r\n      \"email\": \"support@canto.com\",\r\n      \"user\": \"Canto Support\",\r\n      \"time\": \"20211101\",\r\n      \"content\": [\r\n        {\r\n          \"name\": \"LastFrameIssue.avi\",\r\n          \"scheme\": \"video\",\r\n          \"id\": \"54e0793accbd4be5859bb51c6996413b\"\r\n        }\r\n      ],\r\n      \"location\": \"Main library\",\r\n      \"sharedTo\": \"Dropbox\",\r\n      \"description\": \"share message\",\r\n      \"locationName\": \"Main library\"\r\n    }\r\n  ],\r\n  \"nextMarker\": \"MjAyMTExMDkwODQ2MDIzODk\",\r\n  \"limit\": 2,\r\n  \"sortBy\": \"time\",\r\n  \"sortDirection\": \"descending\"\r\n}"}],"_postman_id":"46405c6f-62f7-479d-a37b-634d4c63fa70"},{"name":"Get tenant login history report","id":"9eaa48a7-070f-4b3d-a07d-8442247f4d9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/tenantreport/:type?from={{fromDate}}&to={{toDate}}&limit=100&marker=&sortDirection=ascending","description":"<p>This report provides all user logins to the requested tenant within a specific period.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","tenantreport",":type"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>Report start time, format is yyyyMMdd</p>\n","type":"text/plain"},"key":"from","value":"{{fromDate}}"},{"description":{"content":"<p>Report end time, format is yyyyMMdd</p>\n","type":"text/plain"},"key":"to","value":"{{toDate}}"},{"description":{"content":"<p>Number of records returned in the result set.\n<strong>Default:</strong> 100</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"description":{"content":"<p>Pagination marker. \nThe marker is not needed with the first request, but with every page from the second request to get the next page of the result. \nWill be delivered as “nextMarker” in the first resultset.</p>\n","type":"text/plain"},"key":"marker","value":""},{"description":{"content":"<p>Sort order of report by date. \n<em>Valid Values:</em> \"ascending\" or \"descending\"</p>\n<p><strong>Default:</strong> descending</p>\n","type":"text/plain"},"key":"sortDirection","value":"ascending"}],"variable":[{"id":"c465ee1c-a1c8-46a2-bf84-3b05c6fbccde","description":{"content":"<p>Defines the type of history report. Value is \"loginhistory\"</p>\n","type":"text/plain"},"type":"any","value":"loginhistory","key":"type"}]}},"response":[{"id":"14cfd0d8-69d5-4f79-b0f6-2e1ec2f79393","name":"200 OK - Get tenant login history report","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/tenantreport/loginhistory?from={{startDate}}&to={{endDate}}&limit=100&marker=","host":["{{SITE_BASEURL}}"],"path":["api","v1","tenantreport","loginhistory"],"query":[{"key":"from","value":"{{startDate}}","description":"Report start time, format is yyyyMMdd"},{"key":"to","value":"{{endDate}}","description":"Report end time, format is yyyyMMdd"},{"key":"limit","value":"100","description":"Number of records returned in the result set.\n**Default:** 100"},{"key":"marker","value":"","description":"Pagination marker. \nThe marker is not needed with the first request, but with every page from the second request to get the next page of the result. \nWill be delivered as “nextMarker” in the first resultset."}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"results\": [\r\n    {\r\n      \"userId\": \"support@canto.com\",\r\n      \"loginTime\": \"20211031202901\",\r\n      \"logoutTime\": \"20211108013602\",\r\n      \"clientType\": \"Windows Chrome\",\r\n      \"location\": \"newwork\",\r\n      \"locationName\": \"new work\",\r\n      \"locationUrl\": \"newwork\",\r\n      \"locationType\": \"Workspace\"\r\n    },\r\n    {\r\n      \"userId\": \"support@canto.com\",\r\n      \"loginTime\": \"20211028235702\",\r\n      \"logoutTime\": null,\r\n      \"clientType\": \"Windows FireFox\",\r\n      \"location\": \"Main library\",\r\n      \"locationName\": \"Main library\"\r\n    }\r\n  ],\r\n  \"nextMarker\": \"ODkyYmYyY2QtZjA3NS00N2FlLTk4MDItZDhmMDUwNDY4MTc5ADE2MzU0OTA2NzM2NDU\"\r\n}"}],"_postman_id":"9eaa48a7-070f-4b3d-a07d-8442247f4d9c"},{"name":"Get the top data of the specified type","id":"1927d27d-74e2-4434-a9b6-582783fe721f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/top/:type?location={{location}}&limit={{limit}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","top",":type"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>REQUIRED - \"portal\", \"workspace\", \"styleGuide\", \"uploadLink\", \nIf location is empty, all data will be queried</p>\n","type":"text/plain"},"key":"location","value":"{{location}}"},{"description":{"content":"<p>data range, if it is empty, all data will be queried</p>\n","type":"text/plain"},"key":"limit","value":"{{limit}}"}],"variable":[{"id":"26d28457-d4e4-405f-aa48-8f81a29d2163","description":{"content":"<p>REQUIRED - \"keyword\", \"tag\", \"smart_tag\", \"commentedFiles\", \nIf the type is empty, all types of data will be queried</p>\n","type":"text/plain"},"type":"any","value":"{{type}}","key":"type"}]}},"response":[{"id":"62866724-c739-4a02-a6fb-f745a69e2538","name":"200 OK - Get all data","originalRequest":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/top"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"keyword\": {\n        \"Unkeyworded\": 45,\n        \"Landmark\": 10,\n        \"Capital\": 10,\n        \"Monument\": 5\n    },\n    \"tag\": {\n        \"Untagged\": 41,\n        \"cool\": 6,\n        \"object\": 3,\n        \"blue\": 3,\n        \"sky\": 3,\n        \"green\": 3,\n        \"grass\": 3,\n        \"train\": 3,\n        \"tag\": 3,\n        \"testTag2\": 1,\n        \"testtag1\": 1,\n        \"testtag3\": 1,\n        \"testtag4\": 1,\n        \"testtag5\": 1,\n        \"testtag6\": 1\n    },\n    \"smart_tag\": {\n        \"Human\": 55,\n        \"Person\": 55,\n        \"Face\": 47,\n        \"Apparel\": 11,\n        \"Clothing\": 11,\n        \"Hair\": 9,\n        \"Accessories\": 7,\n        \"Accessory\": 7,\n        \"Boy\": 6,\n        \"Jewelry\": 4,\n        \"Necklace\": 4,\n        \"Black Hair\": 3,\n        \"Blonde\": 3,\n        \"Coat\": 3,\n        \"Head\": 3,\n        \"Man\": 3,\n        \"Overcoat\": 3,\n        \"Smile\": 3,\n        \"Suit\": 3,\n        \"Teen\": 3,\n        \"Tie\": 3,\n        \"Woman\": 3\n    },\n    \"commentedFiles\": {\n        \"image.jpg\": \"1\",\n        \"beach.jpg\": \"1\",\n        \"clouds.png\": \"1\",\n        \"city.jpg\": \"1\",\n        \"file.png\": \"1\"\n    }\n}"},{"id":"1be5a556-3dab-417c-ab89-6037d30c0e7b","name":"200 OK - Get top keyword","originalRequest":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/top/keyword"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"Unkeyworded\": 45,\n    \"Landmark\": 10,\n    \"Capital\": 10,\n    \"Monument\": 5\n}"},{"id":"7b7e87f1-a371-44bf-8ccc-d98fff10ebcf","name":"200 OK - Get the top three keyword on the portal","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/top/keyword?location=portal&limit=3","host":["{{SITE_BASEURL}}"],"path":["api","v1","top","keyword"],"query":[{"key":"location","value":"portal","description":"REQUIRED - \"portal\", \"workspace\", \"styleGuide\", \"uploadLink\", \nIf location is empty, all data will be queried\n"},{"key":"limit","value":"3","description":"data range, if it is empty, all data will be queried"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"Unkeyworded\": 15,\n    \"Landmark\": 3,\n    \"Capital\": 3\n}"},{"id":"384192f4-7d11-4aaa-9c97-0fcb87cc4ac3","name":"200 OK - Get top tag","originalRequest":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/top/tag"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"Untagged\": 41,\n    \"cool\": 6,\n    \"beach\": 3,\n    \"ocean\": 3,\n    \"grass\": 3,\n    \"sand\": 3,\n    \"testTag2\": 1,\n    \"testtag1\": 1\n}"},{"id":"5734cbb3-b05b-45f9-8b32-8f431b62912f","name":"200 OK - Get the top three tag on the portal","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/top/tag?location=portal&limit=3","host":["{{SITE_BASEURL}}"],"path":["api","v1","top","tag"],"query":[{"key":"location","value":"portal","description":"REQUIRED - \"portal\", \"workspace\", \"styleGuide\", \"uploadLink\", \nIf location is empty, all data will be queried\n"},{"key":"limit","value":"3","description":"data range, if it is empty, all data will be queried"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"Untagged\": 14,\n    \"cool\": 2,\n    \"beautifulGirl\": 1\n}"},{"id":"e7106c64-d746-467b-b1cc-736b9819bb00","name":"200 OK - Get top smart_tag","originalRequest":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/top/smart_tag"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"Human\": 55,\n    \"Person\": 55,\n    \"Face\": 47,\n    \"Apparel\": 11,\n    \"Clothing\": 11,\n    \"Hair\": 9,\n    \"Accessories\": 7,\n    \"Accessory\": 7,\n    \"Female\": 7,\n    \"Boy\": 6,\n    \"Jewelry\": 4,\n    \"Necklace\": 4,\n    \"Black Hair\": 3,\n    \"Blonde\": 3,\n    \"Coat\": 3,\n    \"Girl\": 3,\n    \"Head\": 3,\n    \"Man\": 3,\n    \"Overcoat\": 3,\n    \"Smile\": 3,\n    \"Suit\": 3,\n    \"Teen\": 3,\n    \"Tie\": 3,\n    \"Woman\": 3\n}"},{"id":"73d92459-27f9-44b8-867a-7f536fe90d80","name":"200 OK - Get the top three smart_tag on the portal","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/top/smart_tag?location=portal&limit=3","host":["{{SITE_BASEURL}}"],"path":["api","v1","top","smart_tag"],"query":[{"key":"location","value":"portal","description":"REQUIRED - \"portal\", \"workspace\", \"styleGuide\", \"uploadLink\", \nIf location is empty, all data will be queried\n"},{"key":"limit","value":"3","description":"data range, if it is empty, all data will be queried"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"Human\": 18,\n    \"Person\": 18,\n    \"Face\": 15\n}"},{"id":"840930df-7e7e-46ad-a710-4e678f6efaae","name":"200 OK - Get top commented files","originalRequest":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/top/commentedFiles"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"file.jpg\": \"1\",\n    \"image.jpg\": \"1\",\n    \"beach.png\": \"1\",\n    \"ocean.jpg\": \"1\",\n    \"suit.png\": \"1\"\n}"},{"id":"b5436406-4de2-4538-b1d5-a602903631fa","name":"200 OK - Get the top three commented files data","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/top/commentedFiles?limit=3","host":["{{SITE_BASEURL}}"],"path":["api","v1","top","commentedFiles"],"query":[{"key":"limit","value":"3"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"file.jpg\": \"1\",\n    \"image.jpg\": \"1\",\n    \"beach.png\": \"1\"\n}"}],"_postman_id":"1927d27d-74e2-4434-a9b6-582783fe721f"},{"name":"Get asset preview reports","id":"faaddfc8-41bd-493c-a840-e6fed79c117e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/tenantreport/assetview?from={{fromDate}}&to={{toDate}}&scheme={{scheme}}&user={{user}} &limit={{limit}}&sortDirection=ascending&lastKey=","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","tenantreport","assetview"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>Report start time, format is yyyyMMdd</p>\n","type":"text/plain"},"key":"from","value":"{{fromDate}}"},{"description":{"content":"<p>Report end time, format is yyyyMMdd</p>\n","type":"text/plain"},"key":"to","value":"{{toDate}}"},{"description":{"content":"<p>File type. Values: \"image\", \"document\", \"video\", \"presentation\", \"other\", \"audio\". If it is empty, all data will be queried.</p>\n","type":"text/plain"},"key":"scheme","value":"{{scheme}}"},{"description":{"content":"<p>User(e-mail). If it is empty, all user data will be queried.</p>\n<ul>\n<li>\"@\" in email should be written as escape character \"%40\", For example: support%40canto.com*</li>\n</ul>\n","type":"text/plain"},"key":"user","value":"{{user}} "},{"description":{"content":"<p>Data range, default is 100.</p>\n","type":"text/plain"},"key":"limit","value":"{{limit}}"},{"description":{"content":"<p>Sort order of report by date. \n<em>Valid Values:</em> \"ascending\" or \"descending\"\n<strong>Default:</strong> descending</p>\n","type":"text/plain"},"key":"sortDirection","value":"ascending"},{"description":{"content":"<p>Pagination marker. \nThe lastKey is not needed with the first request, but with every page from the second request to get the next page of the result. \nWill be delivered as “nextMarker” in the first result set.</p>\n","type":"text/plain"},"key":"lastKey","value":""}],"variable":[]}},"response":[{"id":"74703e47-20a2-40cc-94f4-4b4b96b16d12","name":"200 OK - Get asset preview reports","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/tenantreport/assetview?from=20221005&to=20221013&lastKey=&scheme=&user=canto%40help.com&limit=3&sortDirection=ascending","host":["{{SITE_BASEURL}}"],"path":["api","v1","tenantreport","assetview"],"query":[{"key":"from","value":"20221005","description":"Report start time, format is yyyyMMdd"},{"key":"to","value":"20221013","description":"Report end time, format is yyyyMMdd"},{"key":"lastKey","value":"","description":"Pagination marker. \nThe lastKey is not needed with the first request, but with every page from the second request to get the next page of the result. \nWill be delivered as “nextMarker” in the first result set.\n"},{"key":"scheme","value":"","description":"File type. Values: \"image\", \"document\", \"video\", \"presentation\", \"other\", \"audio\". If it is empty, all data will be queried."},{"key":"user","value":"canto%40help.com","description":"User(e-mail). If it is empty, all user data will be queried.\n* \"@\" in email should be written as escape character \"%40\", For example: support%40canto.com*\n"},{"key":"limit","value":"3","description":"Data range, default is 100."},{"key":"sortDirection","value":"ascending","description":"Sort order of report by date. \n*Valid Values:* \"ascending\" or \"descending\"\n**Default:** descending\n"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"nextMarker\": \"20221007015150561\",\n    \"sortDirection\": \"ascending\",\n    \"limit\": 3,\n    \"sortBy\": \"time\",\n    \"results\": [\n        {\n            \"time\": \"20221006002139050\",\n            \"action\": \"PREVIEW\",\n            \"email\": \"canto@help.com\",\n            \"user\": \"canto@help.com\",\n            \"location\": \"Portal: test\",\n            \"locationType\": \"Portal\",\n            \"locationUrl\": \"test0903\",\n            \"locationName\": \"test\",\n            \"content\": {\n                \"scheme\": \"image\",\n                \"id\": \"eccrj680ll0mf5e3ck3nm5sb11\",\n                \"Name\": \"collezionali-nogps.jpeg\"\n            }\n        },\n        {\n            \"time\": \"20221006185134400\",\n            \"action\": \"PREVIEW\",\n            \"email\": \"canto@help.com\",\n            \"user\": \"canto@help.com\",\n            \"location\": \"Main Library\",\n            \"locationType\": \"Main Library\",\n            \"locationUrl\": null,\n            \"locationName\": null,\n            \"content\": {\n                \"scheme\": \"presentation\",\n                \"id\": \"c4am1n088p0jt1fp8jehukj601\",\n                \"Name\": \"Short Commercial presentation_NL (31).pptx\"\n            }\n        },\n        {\n            \"time\": \"20221006185150561\",\n            \"action\": \"PREVIEW\",\n            \"email\": \"canto@help.com\",\n            \"user\": \"canto@help.com\",\n            \"location\": \"Main Library\",\n            \"locationType\": \"Main Library\",\n            \"locationUrl\": null,\n            \"locationName\": null,\n            \"content\": {\n                \"scheme\": \"other\",\n                \"id\": \"45ifb13tvt443bqv53js86hv65\",\n                \"Name\": \"8f7a2146119a439aa1f57da18e1e9a47.zip\"\n            }\n        }\n    ]\n}"}],"_postman_id":"faaddfc8-41bd-493c-a840-e6fed79c117e"}],"id":"02d6cc76-bd5f-4023-9f27-9aec12315e8d","_postman_id":"02d6cc76-bd5f-4023-9f27-9aec12315e8d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}}}],"id":"807f151a-0926-4a09-b9ab-e6437468b215","_postman_id":"807f151a-0926-4a09-b9ab-e6437468b215","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}}},{"name":"Settings","item":[{"name":"User","item":[{"name":"Get current user info","event":[{"listen":"test","script":{"id":"3408c1b8-1547-41d5-8b99-06bcf4cec4b0","exec":["var userInfo = JSON.parse(responseBody)","if (userInfo.groups != null && userInfo.groups.length > 0) {","    var groupId = userInfo.groups[0].id","    pm.environment.set(\"groupId\", groupId)","} else {","    console.log(\"user has no groups\")","}",""],"type":"text/javascript"}}],"id":"e7a1a2d7-c0aa-4ce2-8a08-a0b49d423a0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/user","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 1</em></a></p>\n<p>Get the current user info, which the access token represents.</p>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","user"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"947e7b32-95d9-4f47-95a2-4fe54d520fe0","name":"Success","originalRequest":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Oct 2020 11:27:16 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 25-Oct-2020 11:27:16 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"permissions\": [\n        \"download\",\n        \"upload\",\n        \"shareByEmail\",\n        \"shareByLink\",\n        \"officeConnector\",\n        \"figmaConnector\",\n        \"drupalConnector\",\n        \"wordpressConnector\",\n        \"typo3Connector\"\n    ],\n    \"userId\": \"somebody@somewhere.com\",\n    \"firstName\": \"Some\",\n    \"lastName\": \"Body\",\n    \"email\": \"somebody@somewhere.com\",\n    \"lastAccessVersion\": \"BKK\",\n    \"name\": \"Some Body\",\n    \"allowAccessAdobeConnector\": true \n}"}],"_postman_id":"e7a1a2d7-c0aa-4ce2-8a08-a0b49d423a0f"},{"name":"Get custom roles","id":"2c125493-e256-480f-a5ab-27ad3f2adfcc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/roles","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 1</em></a></p>\n<p>Get the current user info, which the access token represents.</p>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","roles"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"9e4136e3-ece2-46d4-b78f-ac27353b3bc2","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/roles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Oct 2020 11:27:16 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 25-Oct-2020 11:27:16 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"[\n  { \"id\": \"f70b6546-035d-46c2-8b20-f92b00576aed\",\"name\": \"Role A\" },\n  { \"id\": \"72a42200-f46c-4b6f-99c9-9adf154120d5\", \"name\": \"Role B\" }\n]\n"}],"_postman_id":"2c125493-e256-480f-a5ab-27ad3f2adfcc"},{"name":"Get user custom fields","id":"20ade2ca-cb3d-4ef1-81da-dde99ebfb139","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/users/fields","description":"<p><a href=\"#api-rate-limit\"><i>Rate Level: 1</i></a></p>\n<p>Returns the custom fields used in self-registration, which have been created via the UI through the path:<br /><code>Settings &gt;&gt; Users &amp; Groups &gt;&gt; Self Registration &gt;&gt; Form</code></p>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","users","fields"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"9881b925-5f3f-498d-a555-d039466a6f85","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/users/fields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Oct 2020 11:27:16 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 25-Oct-2020 11:27:16 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"[\n    {   \n        \"id\": \"6c43c79188124bcd8744a9a02af0bdb2\",\n        \"name\": \"Department\",\n        \"type\": \"MULTICHOICE\", // TEXT|NUMBER|CHOICE|MULTICHOICE|DATETIME\n        \"options\": [\"Sales\", \"Marketing\", \"IT\"],\n        \"required\": false\n    },\n    {  \n        \"id\": \"84cf256fb527472e993a304997202b27\",\n        \"name\": \"Customer ID\",\n        \"type\": \"TEXT\",\n        \"required\": true\n    }\n]\n"}],"_postman_id":"20ade2ca-cb3d-4ef1-81da-dde99ebfb139"},{"name":"Add new user","event":[{"listen":"test","script":{"id":"af5349a9-e10e-46a4-bd2b-3efec5df3f46","exec":["var reqBody = JSON.parse(request.data);","pm.environment.set(\"userId\", reqBody.userId);"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"ff972eb8-1bb1-46b4-a75a-d273b847300b","exec":[""],"type":"text/javascript"}}],"id":"65b7094f-92bc-40a2-93f6-baa2b40a4432","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"Ebony.Rath@gmail.com\",\n    \"firstName\": \"Gabe\",\n    \"lastName\": \"Sawayn\",\n    \"roles\": [\n        \"customRole\"\n    ],\n    \"customRoleId\" : \"f70b6546035d46c28b20f92b00576aed\",\n    \"groups\": [\n        \"a5819ac6-9e50-4051-bd71-f5200ab7e872\"\n    ],\n    \"properties\": {\n        \"e066e0b1497e42c68516eb9928950593\": [\n            \"Sales\",\n            \"Marketing\"\n        ],\n        \"84cf256fb527472e993a304997202b27\": \"No.1005\"\n    },\n    \"allowAccessMainTenant\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/user","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>Adds a new user.</p>\n<p><strong>Note:</strong> This request can only called by admin users</p>\n<p>BODYPARAMS</p>\n<hr />\n<table><tbody><tr><th>Parameter</th><th>Description</th></tr><tr><td>userId</td><td>The id of the new user. (It should be the user's email adress)</td></tr><tr><td>firstName</td><td>The first name of the user.</td></tr><tr><td>lastName</td><td>The last name of the user</td></tr><tr><td>roles</td><td><p>A list of roles, the user should be assigned.<br /></p><p><b>Possible values:</b> admin|contributor, consumer, customRole</p></td></tr><tr><td>customRoleId</td><td><p>The id of a custom Role.</p><p>use this parameter only, if you</p></td></tr><tr><td>groups</td><td>(optional) A list of groups, the user should be assigned.</td></tr><tr><td>properties</td><td><p>(optional) The values of the custom fields.</p><p>key = customFieldId, value = customFieldValue</p></td></tr><tr><td>allowAccessAdobeConnector</td><td>(optional) The new user will be allowed to use the Adobe Connector.<br /><br /><b>default:</b> false</td></tr><tr><td>allowAccessIndesign</td><td><b>Deprecated: </b>old version of parameter: \"allowAccessAdobeConnector\"<br /><br /><b>default:</b> false</td></tr></tbody></table>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","user"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"753055e5-fcf4-4c90-8232-21cf90fe7907","name":"200 OK - with group assignment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"canto-support@canto.com\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"roles\": [\n        \"consumer\"\n    ],\n    \"groups\": [\"a5819ac6-9e50-4051-bd71-f5200ab7e872\"],\n    \"allowAccessMainTenant\": true,\n    \"allowAccessIndesign\": false\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/user"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 11 Jan 2021 12:48:27 GMT"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 12:48:26 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":null},{"id":"769be753-6e30-424c-a0a9-b4c748ce0d12","name":"200 OK - without group assignment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"canto-support@canto.com\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"roles\": [\n        \"consumer\"\n    ],\n    \"allowAccessMainTenant\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/user"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 11 Jan 2021 12:48:27 GMT"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 12:48:26 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":null},{"id":"09952d4b-39c1-49bf-ac91-42d58adfe8a6","name":"200 OK - new user with custom role","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"Luis85@hotmail.com\",\n    \"firstName\": \"Sigrid\",\n    \"lastName\": \"Stark\",\n    \"roles\": [\n        \"customRole\"\n    ],\n    \"customRoleId\": \"f70b6546035d46c28b20f92b00576aed\",\n    \"groups\": [\n        \"a5819ac6-9e50-4051-bd71-f5200ab7e872\"\n    ],\n    \"properties\": {\n        \"6c43c79188124bcd8744a9a02af0bdb2\": [\n            \"Sales\",\n            \"Marketing\"\n        ],\n        \"84cf256fb527472e993a304997202b27\": \"No.1005\"\n    },\n    \"allowAccessMainTenant\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/user"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"65b7094f-92bc-40a2-93f6-baa2b40a4432"},{"name":"Update user info","event":[{"listen":"test","script":{"id":"af5349a9-e10e-46a4-bd2b-3efec5df3f46","exec":["var reqBody = JSON.parse(request.data);","pm.environment.set(\"userId\", reqBody.userId);"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"ff972eb8-1bb1-46b4-a75a-d273b847300b","exec":[""],"type":"text/javascript"}}],"id":"14c24a79-dcf6-4651-8d53-ac2d37b0b9ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"{{$email}}\",\n    \"firstName\": \"{{$firstName}}\",\n    \"lastName\": \"{{$lastName}}\",\n    \"email\": \"{{$email}}\",\n    \"roles\": [\n        \"customRole\"\n    ],\n    \"customRoleId\" : \"f70b6546035d46c28b20f92b00576aed\",\n    \"groups\": [\"a5819ac6-9e50-4051-bd71-f5200ab7e872\"],\n    \"properties\": { \n        \"6c43c79188124bcd8744a9a02af0bdb2\": [\"Sales\", \"Marketing\"],\n        \"84cf256fb527472e993a304997202b27\": \"No.1005\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/user","description":"<p><a href=\"#api-rate-limit\"><i>Rate Level: 2</i></a></p>\n<p>Update an existing user.</p>\n<p><strong>Note:</strong> This request can only called by admin users</p>\n<p>BODYPARAMS</p>\n<hr />\n<table><tbody><tr><th>Parameter</th><th>Description</th></tr><tr><td><div>userId</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The id of the user to update.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>firstName</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The first name of the user.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>lastName</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The last name of the user.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>email</div><div><div><div><div></div></div></div><div></div></div></td><td><div>The email address of the user.<br />This is a <b>required</b> parameter.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>roles</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p>A list of roles, the user should be assigned.<br /></p><p><b>Possible values:</b> admin|contributor, consumer, customRole</p></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>customRoleId</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p>The id of a custom Role.</p><p>This parameter <b>must only be used</b> if 'roles' has the value '<b>customRole</b>'</p></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>groups</div><div><div><div><div></div></div></div><div></div></div></td><td><div>(optional) A list of groups, the user should be assigned.</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>properties</div><div><div><div><div></div></div></div><div></div></div></td><td><div><p>(optional) The values of the custom fields.</p><p>key = customFieldId, value = customFieldValue</p></div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>allowAccessAdobeConnector</div><div><div><div><div></div></div></div><div></div></div></td><td><div>(optional) The new user will be allowed to use the Adobe Connector.<br /><br /><b>default:</b> false</div><div><div><div><div></div></div></div><div></div></div></td></tr><tr><td><div>allowAccessIndesign</div><div><div><div><div></div></div></div><div></div></div></td><td><div><b>Deprecated</b>: old version of parameter: \"allowAccessAdobeConnector\"<br /><br /><b>default</b>: false</div><div><div><div><div></div></div></div><div></div></div></td></tr></tbody></table>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","user"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"d99fcb4b-f490-4203-9de0-b32b15995e25","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"userId\": \"canto-support@canto.com\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"email\": \"canto-support@canto.com\",\n    \"roles\": [\n        \"contributor\"\n    ],\n    \"allowAccessAdobeConnector\": true,\n    \"groups\": [\"a5819ac6-9e50-4051-bd71-f5200ab7e872\"],\n    \"properties\": { \n        \"6c43c79188124bcd8744a9a02af0bdb2\": [\"Sales\", \"Marketing\"],\n        \"84cf256fb527472e993a304997202b27\": \"No.1005\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/user"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 11 Jan 2021 12:48:27 GMT"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 12:48:26 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"14c24a79-dcf6-4651-8d53-ac2d37b0b9ae"},{"name":"Get user list","id":"c83af5df-1158-42e7-a48b-9ea722aeb66d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/user/accounts?name=keyword&include-group=true&page-size=100&page=1","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>Obtain a list of users within your Canto account with pagination.</p>\n<p>If you need a list containing mor detailed user information, you need to call: [Get user list (with extended information)](ffe1bdb6-36b9-4ac3-a649-bf1f7dc802f0)</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","user","accounts"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>Find the users name starting with given value. Name means first name or last name.</p>\n","type":"text/plain"},"key":"name","value":"keyword"},{"description":{"content":"<p>true means the result should include user’s groups.</p>\n<p><strong>Default:</strong>  false.</p>\n","type":"text/plain"},"key":"include-group","value":"true"},{"description":{"content":"<p>Specifies the number of items to be returned on one page. </p>\n<p><strong>Default:</strong> 100</p>\n","type":"text/plain"},"key":"page-size","value":"100"},{"description":{"content":"<p>Specifies current page number. </p>\n<p>**Default:**1</p>\n","type":"text/plain"},"key":"page","value":"1"}],"variable":[]}},"response":[{"id":"87acac4e-a505-4a16-b0a1-709d4cda846d","name":"200 OK - All users","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/user/accounts?name=Canto&include-group=true&page=1&page-size=10","host":["{{SITE_BASEURL}}"],"path":["api","v1","user","accounts"],"query":[{"key":"name","value":"Canto"},{"key":"include-group","value":"true"},{"key":"page","value":"1"},{"key":"page-size","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 12:56:21 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 12:56:21 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"userId\": \"canto-support@canto.com\",\n            \"firstName\": \"Canto\",\n            \"lastName\": \"Support\",\n            \"email\": \"canto-support@canto.com\",\n            \"displayName\": \"Canto Support\",           \n            \"groups\": [\n                {\n                    \"id\": \"f70b6546-035d-46c2-8b20-f92b00576aed\",\n                    \"name\": \"IT\"\n                }\n            ]\n        },\n        {\n            \"userId\": \"canto-support2@canto.com\",\n            \"firstName\": \"Canto\",\n            \"lastName\": \"Support 2\",\n            \"email\": \"canto-support2@canto.com\"        \n        }      \n    ],\n    \"currentPage\": 1,\n    \"pageSize\": 10,\n    \"totalCount\": 2\n}"}],"_postman_id":"c83af5df-1158-42e7-a48b-9ea722aeb66d"},{"name":"Get user list (with extended information)","id":"ffe1bdb6-36b9-4ac3-a649-bf1f7dc802f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/users?role=0&name=John&include-group=false&include-portal=false&page-size=100&page=1&customfield=true or empty","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>Obtain a list of users within your Canto account with pagination.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","users"],"host":["{{SITE_BASEURL}}"],"query":[{"description":{"content":"<p>The following values are supported: </p>\n<p>0 - All roles<br />1 - Admin<br />2 - Contributor<br />3 - Consumer<br />4 - Admin and Contributor<br />5 - Contributor and Consumer</p>\n<p>Default: 0</p>\n","type":"text/plain"},"key":"role","value":"0"},{"description":{"content":"<p>Find the users name starting with given value. Name means first name, last name or email.</p>\n","type":"text/plain"},"key":"name","value":"John"},{"description":{"content":"<p>true means the result should include user’s groups.  </p>\n<p>Default: false</p>\n","type":"text/plain"},"key":"include-group","value":"false"},{"description":{"content":"<p>true means the result should include user’s granted portal/workspace/style guide info.</p>\n<p>Default: false</p>\n","type":"text/plain"},"key":"include-portal","value":"false"},{"description":{"content":"<p>Specifies the number of results returned</p>\n<p>Default: 100</p>\n","type":"text/plain"},"key":"page-size","value":"100"},{"description":{"content":"<p>Specifies current page number</p>\n<p>Default: 1</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Specifies the query criteria to includes user custom fields. It is associated with the parameter \"name\".</p>\n","type":"text/plain"},"key":"customfield","value":"true or empty"}],"variable":[]}},"response":[{"id":"15eade27-52c3-4abd-98a8-aa1a7062354b","name":"200 OK - All users","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/users?page-size=5","host":["{{SITE_BASEURL}}"],"path":["api","v1","users"],"query":[{"key":"page-size","value":"5","description":"Specifies the number of results returned\n\nDefault: 100"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 12:56:21 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 12:56:21 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"role\": \"Admin\",\n            \"userId\": \"canto-support@canto.com\",\n            \"firstName\": \"Canto\",\n            \"lastName\": \"Support\",\n            \"email\": \"canto-support@canto.com\",\n            \"allowAccessMainLibrary\": true,\n            \"groups\": [\n                {\n                    \"id\": \"f70b6546-035d-46c2-8b20-f92b00576aed\",\n                    \"name\": \"Group A\"\n                }\n            ],\n            \"properties\": [\n                {\n                    \"id\": \"6c43c79188124bcd8744a9a02af0bdb2\",\n                    \"name\": \"Department\",\n                    \"value\": [ \"Marketing\", \"Sales\"]\n                },\n                {\n                    \"id\": \"84cf256fb527472e993a304997202b27\",\n                    \"name\": \"Customer ID\",\n                    \"value\": \"A1054\"\n                }\n            ]\n        },\n        {\n            \"role\": \"Admin\",\n            \"userId\": \"johndoe@canto.com\",\n            \"firstName\": \"John\",\n            \"lastName\": \"Dow\",\n            \"email\": \"johndoe@canto.com\",\n            \"allowAccessMainLibrary\": true,\n            \"properties\": [\n                {\n                    \"id\": \"6c43c79188124bcd8744a9a02af0bdb2\",\n                    \"name\": \"Department\",\n                    \"value\": [ \"Marketing\" ]\n                },\n                {\n                    \"id\": \"84cf256fb527472e993a304997202b27\",\n                    \"name\": \"Customer ID\",\n                    \"value\": \"A1021\"\n                }\n            ]\n        },\n        {\n            \"role\": \"Consumer\",\n            \"userId\": \"maxmustermann@canto.com\",\n            \"firstName\": \"Max\",\n            \"lastName\": \"Mustermann\",\n            \"email\": \"maxmustermann@canto.com\",\n            \"allowAccessMainLibrary\": true,\n            \"groups\": [\n                {\n                    \"id\": \"f70b6546-035d-46c2-8b20-f92b00576aed\",\n                    \"name\": \"Group A\"\n                },\n                {\n                    \"id\": \"72a42200-f46c-4b6f-99c9-9adf154120d5\",\n                    \"name\": \"Group B\"\n                }\n            ],\n            \"properties\": [\n                {\n                    \"id\": \"6c43c79188124bcd8744a9a02af0bdb2\",\n                    \"name\": \"Department\",\n                    \"value\": [ \"IT\" ]\n                },\n                {\n                    \"id\": \"84cf256fb527472e993a304997202b27\",\n                    \"name\": \"Customer ID\",\n                    \"value\": \"A1056\"\n                }\n            ]\n        },\n        {\n            \"role\": \"Admin\",\n            \"userId\": \"jeandupont@canto.com\",\n            \"firstName\": \"Jean\",\n            \"lastName\": \"Dupont\",\n            \"email\": \"jeandupont@canto.com\",\n            \"allowAccessMainLibrary\": true\n        },\n        {\n            \"role\": \"Admin\",\n            \"userId\": \"mariorossi@canto.com\",\n            \"firstName\": \"Mario\",\n            \"lastName\": \"Rossi\",\n            \"email\": \"mariorossi@canto.com\",\n            \"allowAccessMainLibrary\": true\n        }\n    ],\n    \"currentPage\": 1,\n    \"pageSize\": 5,\n    \"totalCount\": 7\n}"},{"id":"7b9356cf-7c73-44ed-b8a1-234391ec3b74","name":"200 OK - All admins","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/users?role=1&page-size=2","host":["{{SITE_BASEURL}}"],"path":["api","v1","users"],"query":[{"key":"role","value":"1","description":"The following values are supported: \n\n0 - All roles\\\n1 - Admin\\\n2 - Contributor\\\n3 - Consumer\\\n4 - Admin and Contributor\\\n5 - Contributor and Consumer\n\nDefault: 0"},{"key":"page-size","value":"2","description":"Specifies the number of results returned\n\nDefault: 100"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 13:06:14 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 13:06:14 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"role\": \"Admin\",\n            \"userId\": \"canto-support@canto.com\",\n            \"firstName\": \"Canto\",\n            \"lastName\": \"Support\",\n            \"email\": \"canto-support@canto.com\",\n            \"allowAccessMainLibrary\": true,\n            \"properties\": [\n                {\n                    \"id\": \"6c43c79188124bcd8744a9a02af0bdb2\",\n                    \"name\": \"Department\",\n                    \"value\": [ \"Marketing\" ]\n                },\n                {\n                    \"id\": \"84cf256fb527472e993a304997202b27\",\n                    \"name\": \"Customer ID\",\n                    \"value\": \"A1021\"\n                }\n            ]\n        },\n        {\n            \"role\": \"Admin\",\n            \"userId\": \"johndoe@canto.com\",\n            \"firstName\": \"John\",\n            \"lastName\": \"Doe\",\n            \"email\": \"johndoe@canto.com\",\n            \"allowAccessMainLibrary\": true,\n            \"properties\": [\n                {\n                    \"id\": \"6c43c79188124bcd8744a9a02af0bdb2\",\n                    \"name\": \"Department\",\n                    \"value\": [ \"IT\" ]\n                },\n                {\n                    \"id\": \"84cf256fb527472e993a304997202b27\",\n                    \"name\": \"Customer ID\",\n                    \"value\": \"A1050\"\n                }\n            ]\n        }\n    ],\n    \"currentPage\": 1,\n    \"pageSize\": 2,\n    \"totalCount\": 6\n}"}],"_postman_id":"ffe1bdb6-36b9-4ac3-a649-bf1f7dc802f0"},{"name":"Delete a user","event":[{"listen":"prerequest","script":{"id":"c2c6e900-8d40-4477-95d9-c23ae3af624d","exec":["const utils = eval(globals.loadUtils)","","utils.checkVariable(\"userId\")"],"type":"text/javascript"}}],"id":"4a437ea1-4077-47c5-8b93-1ee20ee67cec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{SITE_BASEURL}}/api/v1/user/:userId","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>Admin deletes an existing user.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","user",":userId"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"description":{"content":"<p>The id of the user to delete</p>\n","type":"text/plain"},"type":"string","value":"Green.Collier@hotmail.com","key":"userId"}]}},"response":[{"id":"88e8d118-60ed-463f-b3fb-ddab43293924","name":"200 OK","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":{"raw":"{{SITE_BASEURL}}/api/v1/user/:userId","host":["{{SITE_BASEURL}}"],"path":["api","v1","user",":userId"],"variable":[{"description":"The id of the user to delete","key":"userId","type":"string","value":"johndoe@canto.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 11 Jan 2021 13:10:07 GMT"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 13:10:07 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"4a437ea1-4077-47c5-8b93-1ee20ee67cec"},{"name":"Get groups","event":[{"listen":"test","script":{"id":"d659ad54-6762-4f6d-a1de-2ce4f6601027","exec":["var jsonData = JSON.parse(responseBody)","if (jsonData.length > 0) {","    var groupId = jsonData[0].id","    pm.environment.set(\"groupId\", groupId)","} else {","    console.log(\"found no groups\")","}",""],"type":"text/javascript"}}],"id":"5a173217-109c-4f1b-a45f-d5ae9d074dc2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/groups","description":"<p>Returns a list of all groups.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","groups"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"4071f910-2233-47fe-8dcf-23f7d26eae60","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Jun 2021 14:46:10 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Expect-CT","value":"max-age=86400, enforce"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Mon, 31-May-2021 14:46:10 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"[\n  { \"id\": \"f70b6546-035d-46c2-8b20-f92b00576aed\",\"name\": \"Group A\" },\n  { \"id\": \"72a42200-f46c-4b6f-99c9-9adf154120d5\", \"name\": \"Group B\" }\n]\n"}],"_postman_id":"5a173217-109c-4f1b-a45f-d5ae9d074dc2"},{"name":"Get group info with users","id":"c8f34424-e120-4d50-a615-229b19303f03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/groups/:groupId","description":"<p><a href=\"https://canto9053-185988.postman.co/workspace/Team-Workspace~783a47f1-cdbf-476d-8e32-155d9a3c2c8a/request/14174853-f802ebd0-a4bf-46ee-954d-ce34225243f1?ctx=documentation#api-rate-limit\"><em>Rate Level: 1</em></a></p>\n<p>Returns a group with users.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","groups",":groupId"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"id":"3a959bab-3b3f-452d-9526-4a24a42314e4","description":{"content":"<p>REQUIRED: The id of the group</p>\n","type":"text/plain"},"type":"any","value":"{{groupId}}","key":"groupId"}]}},"response":[{"id":"d4c1f9c4-2fa9-49b0-87dd-41f8f69b2cab","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/groups/:groupId","host":["{{SITE_BASEURL}}"],"path":["api","v1","groups",":groupId"],"variable":[{"key":"groupId","value":"f70b6546-035d-46c2-8b20-f92b00576aed"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Jun 2021 14:46:10 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Expect-CT","value":"max-age=86400, enforce"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Mon, 31-May-2021 14:46:10 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"OK\",\n    \"data\": {\n        \"id\": \"f70b6546-035d-46c2-8b20-f92b00576aed\",\n        \"name\": \"Group A\",\n        \"userids\": [\n            \"canto-support@canto.com\",\n            \"maxmustermann@canto.com\"\n        ]\n    }\n}\n"}],"_postman_id":"c8f34424-e120-4d50-a615-229b19303f03"},{"name":"Add users to group","id":"f544dbfa-f5fc-44bd-8f90-8095459813c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    \"support@canto.com\"\n]","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/groups/:groupId/users","description":"<p><a href=\"https://canto9053-185988.postman.co/workspace/Team-Workspace~783a47f1-cdbf-476d-8e32-155d9a3c2c8a/request/14174853-a651e481-bd54-46bf-b483-804091e1c238?ctx=documentation#api-rate-limit\"><em>Rate Level: 2</em></a>  </p>\n<p>Add users to group.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","groups",":groupId","users"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"id":"ee864e8a-b894-4331-b125-6e7e1ad38f9b","description":{"content":"<p>REQUIRED: The id of the group</p>\n","type":"text/plain"},"type":"any","value":"{{groupId}}","key":"groupId"}]}},"response":[{"id":"9d526ca1-0b85-4b1a-b413-0dc0c7d33bc1","name":"200 OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    \"support@canto.com\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"{{SITE_BASEURL}}/api/v1/groups/:groupId/users","host":["{{SITE_BASEURL}}"],"path":["api","v1","groups",":groupId","users"],"variable":[{"id":"0a8a416d-a45e-4f8a-b150-414bbde790f9","key":"groupId","value":"{{groupId}}","description":"REQUIRED: The id of the group"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 16 Dec 2021 12:13:00 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"7"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net js-agent.newrelic.com bam.nr-data.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com bam.nr-data.net; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Expect-CT","value":"max-age=86400, enforce"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 15-Dec-2021 12:13:00 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"success"},{"id":"5c33494f-428b-4568-843e-5580f6aceb8c","name":"404 Not Found - User does not exist","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    \"support@canto.com\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"{{SITE_BASEURL}}/api/v1/groups/:groupId/users","host":["{{SITE_BASEURL}}"],"path":["api","v1","groups",":groupId","users"],"variable":[{"id":"0a8a416d-a45e-4f8a-b150-414bbde790f9","key":"groupId","value":"{{groupId}}","description":"REQUIRED: The id of the group"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Dec 2021 12:14:07 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net js-agent.newrelic.com bam.nr-data.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com bam.nr-data.net; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Expect-CT","value":"max-age=86400, enforce"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 15-Dec-2021 12:14:07 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2301,\n    \"message\": \"The user \\\"support@canto.com\\\" does not exist.\"\n}"}],"_postman_id":"f544dbfa-f5fc-44bd-8f90-8095459813c9"},{"name":"Delete users from group","id":"a5e242be-3647-4350-82e4-4a90aa32048c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"[\"support@canto.com\"]","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/groups/:groupId/users","description":"<p><a href=\"https://canto9053-185988.postman.co/workspace/Team-Workspace~783a47f1-cdbf-476d-8e32-155d9a3c2c8a/request/14174853-a651e481-bd54-46bf-b483-804091e1c238?ctx=documentation#api-rate-limit\"><em>Rate Level: 2</em></a>  </p>\n<p>Delete users from group.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","groups",":groupId","users"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"id":"7e2766e9-a5a7-488a-83ea-b70abf7db870","description":{"content":"<p>REQUIRED: The id of the group</p>\n","type":"text/plain"},"type":"any","value":"{{groupId}}","key":"groupId"}]}},"response":[{"id":"cc8dbf65-c445-4c95-8740-7c480db613c2","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"[\"support@canto.com\"]","options":{"raw":{"language":"json"}}},"url":{"raw":"{{SITE_BASEURL}}/api/v1/groups/:groupId/users","host":["{{SITE_BASEURL}}"],"path":["api","v1","groups",":groupId","users"],"variable":[{"id":"453c4dbe-0d76-48b2-a92a-bf81eaf1e8f9","key":"groupId","value":"{{groupId}}","description":"REQUIRED: The id of the group"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 16 Dec 2021 12:15:55 GMT"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net js-agent.newrelic.com bam.nr-data.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com bam.nr-data.net; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Expect-CT","value":"max-age=86400, enforce"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 15-Dec-2021 12:15:55 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a5e242be-3647-4350-82e4-4a90aa32048c"},{"name":"Add group","id":"34d43cb4-36bb-4dcb-b274-3e7665c717a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"group name\",\n     \"userIds\": [\n        \"support@canto.com\"\n    ],\n    \"description\": \"group description\"\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/groups","description":"<p><a href=\"https://canto9053-185988.postman.co/workspace/Team-Workspace~783a47f1-cdbf-476d-8e32-155d9a3c2c8a/request/14174853-a651e481-bd54-46bf-b483-804091e1c238?ctx=documentation#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>Creates a new group.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","groups"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"4af687a2-ff03-44be-be55-78f807df0ef1","name":"201 Created","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"GroupAddName\",\n    \"description\": \"GroupAddDescription\"\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/groups"},"status":"Created","code":201,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 16 Dec 2021 12:13:00 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"7"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net js-agent.newrelic.com bam.nr-data.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com bam.nr-data.net; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Expect-CT","value":"max-age=86400, enforce"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 15-Dec-2021 12:13:00 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"},{"key":"Location","value":"/groups/684a7f89-775b-4e01-a55f-c70a7054a459","description":""}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"34d43cb4-36bb-4dcb-b274-3e7665c717a2"},{"name":"Update group","id":"6f2c4c65-abaa-45c5-8114-ad55fc7af4d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": \"group id\",\n    \"name\": \"group name\",\n    \"description\": \"group description\"\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/groups/:groupId","description":"<p><a href=\"https://canto9053-185988.postman.co/workspace/Team-Workspace~783a47f1-cdbf-476d-8e32-155d9a3c2c8a/request/14174853-a651e481-bd54-46bf-b483-804091e1c238?ctx=documentation#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>Updates an existing group.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","groups",":groupId"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"description":{"content":"<p>required</p>\n","type":"text/plain"},"type":"any","value":"684a7f89-775b-4e01-a55f-c70a7054a459","key":"groupId"}]}},"response":[{"id":"e960f090-890b-45c2-827d-f7f4bfcddfcd","name":"200 OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": \"c1070385-b50c-46c2-8178-39c665cb31d1\",\n    \"name\": \"group name\",\n    \"userIds\": [\n       \"support@canto.com\"\n    ],\n    \"description\": \"group description\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{SITE_BASEURL}}/api/v1/groups/:groupId","host":["{{SITE_BASEURL}}"],"path":["api","v1","groups",":groupId"],"variable":[{"key":"groupId","value":null}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 16 Dec 2021 12:13:00 GMT"},{"key":"Content-Type","value":"text/plain;charset=ISO-8859-1"},{"key":"Content-Length","value":"7"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net js-agent.newrelic.com bam.nr-data.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com bam.nr-data.net; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Expect-CT","value":"max-age=86400, enforce"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 15-Dec-2021 12:13:00 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"6f2c4c65-abaa-45c5-8114-ad55fc7af4d9"},{"name":"Delete group","id":"1e7b0cb9-c83a-4573-a6a0-33c441e70624","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{SITE_BASEURL}}/api/v1/groups/:groupId","description":"<p><a href=\"https://canto9053-185988.postman.co/workspace/Team-Workspace~783a47f1-cdbf-476d-8e32-155d9a3c2c8a/request/14174853-a651e481-bd54-46bf-b483-804091e1c238?ctx=documentation#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>Deletes an existing group.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","groups",":groupId"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"type":"any","value":"{{groupId}}","key":"groupId"}]}},"response":[{"id":"69539227-ac2e-4f8f-bf4a-32b175d4d16b","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"{{SITE_BASEURL}}/api/v1/groups/:groupId","host":["{{SITE_BASEURL}}"],"path":["api","v1","groups",":groupId"],"variable":[{"id":"453c4dbe-0d76-48b2-a92a-bf81eaf1e8f9","key":"groupId","value":"{{groupId}}","description":"REQUIRED: The id of the group"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 16 Dec 2021 12:15:55 GMT"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net js-agent.newrelic.com bam.nr-data.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com bam.nr-data.net; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Expect-CT","value":"max-age=86400, enforce"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 15-Dec-2021 12:15:55 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1e7b0cb9-c83a-4573-a6a0-33c441e70624"},{"name":"Get Users","id":"2a5313c7-bd37-4d95-b7e2-440ecfac0f08","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"$filter=userId in ('support@canto.com','help@canto.com')"},"url":"{{SITE_BASEURL}}/api/v2/users/$query","description":"<p><a href=\"https://canto9053-185988.postman.co/workspace/783a47f1-cdbf-476d-8e32-155d9a3c2c8a/request/14174853-381c204f-2997-4c23-9ad0-1529be3c4286?ctx=documentation#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>Obtain a list of users in the Canto account based on the specified user IDs.</p>\n<p>Max user IDs for request param: 100.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v2","users","$query"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"edb6e57a-f6d2-4400-9a13-f5e4ba6ad36f","name":"200 OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"$filter=userId in ('support@canto.com','help@canto.com')"},"url":"{{SITE_BASEURL}}/api/v2/users/$query"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Oct 2020 11:27:16 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 25-Oct-2020 11:27:16 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\":\"$metadata#users\",\n    \"value\":[\n        {\n            \"userId\":\"support@canto.com\",\n            \"name\":\"support\"\n        },\n        {\n            \"userId\":\"help@canto.com\",\n            \"name\":\"help\"\n        }\n    ]\n}"},{"id":"9ced85fc-b58c-4d3e-ae4e-49955c9c67d7","name":"400 Bad Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"$filter=userId in ()"},"url":"{{SITE_BASEURL}}/api/v2/users/$query"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Oct 2020 11:27:16 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 25-Oct-2020 11:27:16 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\":{\n        \"code\":null,\n        \"message\":\"The number of parameter userId ranges from 1 to 100\"\n    }\n}"},{"id":"5dc4c957-1d53-43dc-b259-5509af7c8ac5","name":"405 Not Allowed","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":""},"url":"{{SITE_BASEURL}}/api/v2/users/$query"},"status":"Method Not Allowed","code":405,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 26 Oct 2020 11:27:16 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 25-Oct-2020 11:27:16 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\":{\n        \"code\":null,\n        \"message\":\"Filter is not allowed to be empty\"\n    }\n}"}],"_postman_id":"2a5313c7-bd37-4d95-b7e2-440ecfac0f08"}],"id":"935af7fd-d805-463e-9193-36ba7b8591c0","_postman_id":"935af7fd-d805-463e-9193-36ba7b8591c0","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}}},{"name":"Fields","item":[{"name":"Get custom field list","event":[{"listen":"test","script":{"id":"f13dc91b-cbc7-48b2-92e5-238e1979b8e6","exec":["var jsonData = JSON.parse(responseBody)","pm.environment.set(\"customFieldId\", jsonData[0].id);"],"type":"text/javascript"}}],"id":"fc430134-ccfa-4d75-b318-a33e420ea859","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/custom/field","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>Get custom field list (including type and values if any).</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","custom","field"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"a87933b3-c855-48fa-aa13-1f9ff3d17b15","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/custom/field"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 11:52:49 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 11:52:49 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"// The following field types are supported: \n// NUMBER, TEXT, DATE, SINGLECHOICE, MULTICHOICE, URL, LABEL, RATING.\n[\n    {\n        \"id\": \"meta_multichoice_0\",     // custom field id, it's uniquely.\n        \"name\": \"Asset Type\",           // custom field name, it's uniquely.\n        \"type\": \"MULTICHOICE\",          // The type of the field.\n        \"values\": [                     // options in type of SINGLECHOICE and MULTICHOICE.\n            \"Brochure\",\n            \"Photo\",\n            \"Lifestyle\",\n            \"Model\",\n            \"Presentation\",\n            \"Product\"\n        ]\n    },\n    {\n        \"id\": \"meta_multichoice_1\",     // custom field id, it's uniquely.\n        \"name\": \"Clothing Line\",        // custom field name, it's uniquely.\n        \"type\": \"MULTICHOICE\",          // The type of the field.\n        \"values\": [                     // options in type of SINGLECHOICE and MULTICHOICE.\n            \"Shoes\",\n            \"Shirt\",\n            \"Pants\",\n            \"Shorts\",\n            \"Outerwear\",\n            \"Packs\"\n        ]\n    },\n    {\n        \"id\": \"meta_text_2\",            // custom field id, it's uniquely.\n        \"name\": \"Product ID\",           // custom field name, it's uniquely.\n        \"type\": \"TEXT\"                  // The type of the field.\n    },\n    {\n        \"id\": \"meta_stars_2\",           // custom field id, it's uniquely.\n        \"name\": \"Rating\",               // custom field name, it's uniquely.\n        \"type\": \"RATING\"                // The type of the field.\n    }\n]"}],"_postman_id":"fc430134-ccfa-4d75-b318-a33e420ea859"},{"name":"Create a custom field","id":"607f09c8-6189-4ce3-8be0-03912b2df9e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"hard drive\",\n    \"description\": \"Ut minima dolorem.\",\n    \"type\": \"TEXT\"\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/custom/field","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>Creates a new custom field.</p>\n<div class=\"heading\">BODYPARAMS</div>\n<hr />\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>REQUIRED - Unique value. Max length: 80.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>REQUIRED - Description. Max length: 800.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>REQUIRED - Types include: NUMBER, TEXT, DATE, SINGLECHOICE, MULTICHOICE, URL, LABEL, RATING.</td>\n</tr>\n<tr>\n<td>values</td>\n<td>Options for SINGLECHOICE and MULTICHOICE type fields.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","custom","field"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"f6511cec-394d-4f40-859b-1a114e8881c2","name":"200 OK - SINGLECHOICE","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"MyField\",\n    \"description\": \"This is my field\",\n    \"type\": \"SINGLECHOICE\",\n    \"values\": [\n        \"A\",\n        \"B\",\n        \"C\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/custom/field"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 11 Jan 2021 13:56:43 GMT"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 13:56:43 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":null},{"id":"eb8d14ca-4705-4c6d-970c-7385bddc9292","name":"200 OK - TEXT","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"myTextField\",\n    \"description\": \"Et sunt vel a voluptate ut repellendus modi nihil\",\n    \"type\": \"TEXT\"\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/custom/field"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 11 Jan 2021 13:58:06 GMT"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 13:58:06 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"607f09c8-6189-4ce3-8be0-03912b2df9e8"},{"name":"Update a custom field","id":"9f879b3b-406e-4373-bf8b-79eb4a4970bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"id\": \"{{customFieldId}}\",\n    \"name\": \"hard drive\",\n    \"description\": \"Voluptas suscipit vel.\",\n    \"type\": \"SINGLECHOICE\",\n    \"values\": [\n        \"A\",\n        \"B\",\n        \"C\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/custom/field","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>Updates a custom field.</p>\n<div class=\"heading\">BODYPARAMS</div>\n<hr />\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>REQUIRED - Custom field id.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>REQUIRED - Unique value. Max length: 80.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>REQUIRED - Description. Max length: 800.</td>\n</tr>\n<tr>\n<td>values</td>\n<td>Options for SINGLECHOICE and MULTICHOICE type fields.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","custom","field"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"b841f93a-caa4-4100-a9ed-58f3e4d666e3","name":"42 Update a custom field","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"id\": \"{{fieldId}}\",\n    \"name\": \"pixel\",\n    \"description\": \"Et consectetur non alias doloribus dolores autem.\",\n    \"type\": \"SINGLECHOICE\",\n    \"values\": [\n        \"A\",\n        \"B\",\n        \"C\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/custom/field"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Tue, 27 Oct 2020 14:59:45 GMT"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Mon, 26-Oct-2020 14:59:45 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":null},{"id":"7972fd9a-244f-48e0-ac55-56e131708646","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"id\": \"meta_multichoice_0\",\n    \"name\": \"MyNewField\",\n    \"description\": \"Et sunt vel a voluptate ut repellendus modi nihil\",\n    \"type\": \"SINGLECHOICE\",\n    \"values\": [\n        \"A\",\n        \"B\",\n        \"C\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/custom/field"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 11 Jan 2021 14:00:14 GMT"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 14:00:14 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9f879b3b-406e-4373-bf8b-79eb4a4970bd"},{"name":"Delete a custom field","id":"ca4fed09-1c05-4392-8238-266d00399a0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{SITE_BASEURL}}/api/v1/custom/field/:id","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>Deletes a custom field.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","custom","field",":id"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"description":{"content":"<p>REQUIRED - The id of the custom field to delete.</p>\n","type":"text/plain"},"type":"string","value":"{{customFieldId}}","key":"id"}]}},"response":[{"id":"9d4b79bb-ee37-4f66-a1e6-4333e5106c7a","name":"200 OK","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":{"raw":"{{SITE_BASEURL}}/api/v1/custom/field/:id","host":["{{SITE_BASEURL}}"],"path":["api","v1","custom","field",":id"],"variable":[{"key":"id","type":"string","value":"meta_multichoice_0","description":"REQUIRED - The id of the custom field to delete."}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 11 Jan 2021 14:03:52 GMT"},{"key":"Content-Length","value":"0"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 14:03:52 GMT"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ca4fed09-1c05-4392-8238-266d00399a0b"}],"id":"c8a37d59-3517-4d81-96b2-4cee29f4a8a9","_postman_id":"c8a37d59-3517-4d81-96b2-4cee29f4a8a9","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}}},{"name":"Terms & Conditions","item":[{"name":"Get all Terms & Conditions","id":"b58f5413-e965-40c4-80a7-e6102298008a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/termAndCondition","description":"<p>Get all terms and conditions saved</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","termAndCondition"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"f697bd8f-7cca-40e0-a8d8-238e2ff7eddc","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/termAndCondition"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 Jan 2021 11:52:49 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Sun, 10-Jan-2021 11:52:49 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"25efe382b9c345949e37f07627d6f0cd\",\n        \"fieldName\": \"Term And Condition 1\",\n        \"description\": \"Term And Condition Description\",\n        \"termDetail\": \"Term And Condition Details\"\n    },\n    {\n        \"id\": \"3d09b7a66bb24d408df1397c706fc741\",\n        \"fieldName\": \"Term And Condition 2\",\n        \"description\": \"Term And Condition Description\",\n        \"termDetail\": \"Term And Condition Details\"\n    }\n]"}],"_postman_id":"b58f5413-e965-40c4-80a7-e6102298008a"},{"name":"Create a Term & Condition","id":"2987ed6c-af18-4d88-a469-4004efa75172","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"fieldName\": \"feed\",\n    \"description\": \"Ut voluptas et inventore voluptatibus eius aut.\",\n    \"termDetail\": \"TEXT\"\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/termAndCondition","description":"<p>Creates a new term and condition</p>\n<p>BODYPARAMS</p>\n<hr />\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fieldName</td>\n<td>REQUIRED - Name for term and condition.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>REQUIRED - Description for term and condition.</td>\n</tr>\n<tr>\n<td>termDetail</td>\n<td>REQUIRED - Details related to the term and condition</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","termAndCondition"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"28a36122-d922-4fce-821d-002b60fd6d26","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"fieldName\": \"Term And Condition Name\",\n    \"description\": \"Term And Condition Description\",\n    \"termDetail\": \"Term And Condition Details\"\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/termAndCondition"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"success"}],"_postman_id":"2987ed6c-af18-4d88-a469-4004efa75172"},{"name":"Update a Term & Condition","id":"f153b816-a476-4806-8d3b-b8cb5da30719","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id\": \"{{termAndConditionId}}\",\r\n    \"fieldName\": \"circuit\",\r\n    \"description\": \"Tempore et enim qui eum voluptas.\",\r\n    \"termDetail\": \"TEXT\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/termAndCondition","description":"<p>Update the existing term and condition</p>\n<p>BODYPARAMS</p>\n<hr />\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>REQUIRED - Id of term and condition to be updated</td>\n</tr>\n<tr>\n<td>fieldName</td>\n<td>REQUIRED - Name for term and condition.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>REQUIRED - Description for term and condition.</td>\n</tr>\n<tr>\n<td>termDetail</td>\n<td>REQUIRED - Details related to the term and condition</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","termAndCondition"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"0f313bc4-a584-495d-9fe6-56253dae3f04","name":"200 OK","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id\": \"{{termAndConditionId}}\",\r\n    \"fieldName\": \"bus\",\r\n    \"description\": \"Aut magnam cumque consequatur blanditiis dolores aut.\",\r\n    \"termDetail\": \"TEXT\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/termAndCondition"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"success"}],"_postman_id":"f153b816-a476-4806-8d3b-b8cb5da30719"},{"name":"Delete a Term & Condition","id":"abaad771-ef78-4fe1-b2a6-f2f924bb40bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{SITE_BASEURL}}/api/v1/termAndCondition/:id","description":"<p>Deletes a term and condition</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","termAndCondition",":id"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[{"id":"908982f0-6353-49f4-b5ed-c8992b734f63","description":{"content":"<p>REQUIRED - The id of the terms and conditions to delete.</p>\n","type":"text/plain"},"type":"any","value":"{{termAndConditionId}}","key":"id"}]}},"response":[{"id":"e59f96d2-d416-4d1b-ada3-d72020c1b0af","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{SITE_BASEURL}}/api/v1/termAndCondition/:id","host":["{{SITE_BASEURL}}"],"path":["api","v1","termAndCondition",":id"],"variable":[{"key":"id","value":"{{termAndConditionId}}","description":"REQUIRED - The id of the terms and conditions to delete."}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"success"}],"_postman_id":"abaad771-ef78-4fe1-b2a6-f2f924bb40bd"}],"id":"4beb7482-82e5-4659-bff4-34253422fee4","_postman_id":"4beb7482-82e5-4659-bff4-34253422fee4","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}}},{"name":"Get Preset List","event":[{"listen":"prerequest","script":{"id":"ee1c7442-ca6f-44cf-b9f1-1c87c1de9412","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"3fe8a58a-eb75-4d0a-b40e-3d1df36c3fae","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"presetId\", jsonData[0].id);"],"type":"text/javascript"}}],"id":"26c16bc2-5534-4e98-8789-5921e993b43a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/tenant/download/presets","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>Before preset downloading, firstly you need to retrieve this list.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","tenant","download","presets"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"25e65de6-2aec-4b0c-b30a-b5791559722f","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/tenant/download/presets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Jan 2021 16:18:21 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Wed, 06-Jan-2021 16:18:21 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"ba9077e110294540b25c2618ecc6ba41\",           // The presetId, it is a param in advance download api.\n        \"name\": \"Social Media\",\n        \"description\": \"Crop preset for social media.\",\n        \"height\": 85,                                       // The height of the result image.\n        \"width\": 144,                                       // The width of the result image.\n        \"dpi\": 0,\n        \"keepAspectRatio\": true,                            // control the result image ratio.\n        \"mainLibraryEnabled\": true,\n        \"portalEnabled\": false,\n        \"presizeEnabled\": false,\n        \"cropEnabled\": true,\n        \"scaleEnabled\": true,\n        \"version\": 1\n    }\n]"}],"_postman_id":"26c16bc2-5534-4e98-8789-5921e993b43a"},{"name":"Get list of watermarks","id":"4255a422-1c1b-47ae-8a46-1a5bd9fe53c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/tenant/watermark/presets","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 2</em></a></p>\n<p>This endpoint returns a list of all registered watermark presets. </p>\n<p><em>Note:</em> Watermarks can be configured in canto UI: \"Settings\" --&gt; \"Configuration Options\" --&gt; \"Digital Rights Management\"</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}},"urlObject":{"path":["api","v1","tenant","watermark","presets"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"e672e44b-f72c-4edc-a2a0-514951a71576","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1/tenant/watermark/presets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 29 Jan 2021 16:16:24 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Expect-CT","value":"max-age=86400, enforce"},{"key":"Set-Cookie","value":"rememberMe=deleteMe; Path=/; Max-Age=0; Expires=Thu, 28-Jan-2021 16:16:24 GMT"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Language","value":"en"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"f6055a9caa864bd7b1d74c4a0d8f8c77\",\n        \"name\": \"Great Outdoors Logo\",\n        \"description\": \"Sample GOG logo watermark.\",\n        \"position\": 5,\n        \"size\": 100,\n        \"lastUploadTime\": 1609857080000,\n        \"watermarkBase64\": null,\n        \"type\": 0,\n        \"watermarkText\": null,\n        \"textColor\": null,\n        \"transparency\": null,\n        \"rotate\": null,\n        \"versionId\": \"ce34774a28104a008895aadd648a0a6a\"\n    }\n]"}],"_postman_id":"4255a422-1c1b-47ae-8a46-1a5bd9fe53c9"}],"id":"094321b3-3c26-42b1-9d29-e7e4be33baff","_postman_id":"094321b3-3c26-42b1-9d29-e7e4be33baff","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":true,"source":{"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63","id":"a0176219-98cc-4440-a588-c1e5b250ce63","name":"API-Endpoints","type":"folder"}}},{"name":"List all API endpoints","id":"4b933dac-a16f-4efc-9399-dd070db7b6d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1","description":"<p><a href=\"#api-rate-limit\"><em>Rate Level: 1</em></a></p>\n<p>View all endpoints as URI templates!</p>","urlObject":{"path":["api","v1"],"host":["{{SITE_BASEURL}}"],"query":[],"variable":[]}},"response":[{"id":"14e30bfb-7741-4d66-8235-90da39626f87","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"{{SITE_BASEURL}}/api/v1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 04 Jan 2021 15:10:14 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Expose-Headers","value":"Access-Control-Allow-Origin"},{"key":"Strict-Transport-Security","value":"max-age=31536000;includeSubDomains"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Security-Policy","value":"default-src 'self' www.google-analytics.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' www.google-analytics.com *.googleapis.com code.jquery.com *.walkme.com *.cloudfront.net java.com connect.facebook.net *.pendo.io fast.wistia.net; object-src 'none'; style-src 'self' 'unsafe-inline' *.cloudfront.net *.googleapis.com *.pendo.io; img-src * data: blob:; media-src * data: blob:; connect-src 'self' *.cloudfront.net *.amazonaws.com *.walkme.com cantodam.freshdesk.com www.google-analytics.com; font-src * data:; child-src https: blob:"},{"key":"X-Frame-Options","value":"DENY"},{"key":"vary","value":"accept-encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Canto"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"path\": \"/api/v1/user\",\n        \"method\": \"GET\",\n        \"description\": \"get user info\",\n        \"parameters\": [],\n        \"exceptions\": [],\n        \"return\": {\n            \"type\": \"user\",\n            \"description\": \"user info\",\n            \"sampleResult\": {\n                \"userId\": \"noreply@cantoflight.com\",\n                \"firstName\": \"first name\",\n                \"lastName\": \"last name\"\n            }\n        }\n    },\n    {\n        \"path\": \"/api/v1/{scheme}/{content id}\",\n        \"method\": \"GET\",\n        \"description\": \"get content detail\",\n        \"parameters\": [],\n        \"exceptions\": [\n            {\n                \"code\": \"404 not found\",\n                \"description\": \"can not find the content\"\n            }\n        ],\n        \"return\": {\n            \"type\": \"single_result\",\n            \"description\": \"single content detail\",\n            \"sampleResult\": {\n                \"additional\": {\n                    \"License Used Number\": \"135\",\n                    \"Product\": \"my product\",\n                    \"License Expired Date\": \"528820326030448000\"\n                },\n                \"tag\": [\n                    \"the\",\n                    \"tag\",\n                    \"list\"\n                ],\n                \"keyword\": [\n                    \"the\",\n                    \"keword\",\n                    \"list\"\n                ],\n                \"time\": \"20201219062539391\",\n                \"url\": {\n                    \"preview\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/preview\",\n                    \"download\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz\",\n                    \"metadata\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/metadata\",\n                    \"HighJPG\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/HighJPG\",\n                    \"PNG\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/PNG\",\n                    \"directUrlOriginal\": \"https://yourdomain.run.cantoflight.com/download/image/abcdefghijklmnopqrstuvwxyz/original\",\n                    \"detail\": \"https://yourdomain.run.cantoflight.com/smartalbum/image?column=image&id=abcdefghijklmnopqrstuvwxyz\",\n                    \"directUrlPreview\": \"https://yourdomain.run.cantoflight.com/preview/image/abcdefghijklmnopqrstuvwxyz/800\",\n                    \"LowJPG\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/LowJPG\"\n                },\n                \"description\": \"the description of the content\",\n                \"width\": \"1024\",\n                \"height\": \"768\",\n                \"dpi\": \"72\",\n                \"versionHistory\": [\n                    {\n                        \"no\": \"2\",\n                        \"ownerName\": \"first name last name\",\n                        \"created\": \"20201215062539391\",\n                        \"time\": \"20201215062539391\",\n                        \"versionId\": \"fileversionid2abcdefghighijklmnopqrstuvwxyz\",\n                        \"comment\": null,\n                        \"uri\": {\n                            \"preview\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/smallpreviewversionid2abcdefghighijklmnopqrstuvwxyz/preview\",\n                            \"download\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/fileversionid2abcdefghighijklmnopqrstuvwxyz\"\n                        }\n                    },\n                    {\n                        \"no\": \"1\",\n                        \"ownerName\": \"first name last name\",\n                        \"created\": \"20201212062539391\",\n                        \"time\": \"20201212062539391\",\n                        \"versionId\": \"fileversionid1abcdefghighijklmnopqrstuvwxyz\",\n                        \"comment\": null,\n                        \"uri\": {\n                            \"preview\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/smallpreviewversionid1abcdefghighijklmnopqrstuvwxyz/preview\",\n                            \"download\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/fileversionid1abcdefghighijklmnopqrstuvwxyz\"\n                        }\n                    }\n                ],\n                \"lastUploaded\": \"20201215062539391\",\n                \"ownerName\": \"first name last name\",\n                \"name\": \"sample.jpg\",\n                \"default\": {\n                    \"Copyright\": null,\n                    \"Size\": \"123\",\n                    \"Uploaded by\": \"noreply@cantoflight.com\",\n                    \"Color\": \"RGB\",\n                    \"Content Type\": \"image/jpeg\",\n                    \"Dimensions\": \"1024*768 Pixels\",\n                    \"Author\": \"specified author\",\n                    \"Date uploaded\": \"529180814203631000\",\n                    \"Date modified\": \"529371013203631000\",\n                    \"Creation Tool\": \"Adobe Photoshop CS6\",\n                    \"Name\": \"original.jpg\"\n                },\n                \"id\": \"abcdefghijklmnopqrstuvwxyz\",\n                \"size\": \"123\",\n                \"scheme\": \"image\",\n                \"owner\": \"noreply@cantoflight.com\"\n            }\n        }\n    },\n    {\n        \"path\": \"/api/v1/{scheme}\",\n        \"method\": \"GET\",\n        \"description\": \"get content list of specified scheme\",\n        \"parameters\": [\n            {\n                \"name\": \"sortBy\",\n                \"type\": \"text\",\n                \"require\": false,\n                \"description\": \"sort by, default name\",\n                \"availbleValues\": [\n                    \"name\",\n                    \"time\",\n                    \"scheme\",\n                    \"owner\",\n                    \"size\"\n                ]\n            },\n            {\n                \"name\": \"sortDirection\",\n                \"type\": \"text\",\n                \"require\": false,\n                \"description\": \"sort direction, default descending(false)\",\n                \"availbleValues\": [\n                    \"ascending\",\n                    \"descending\",\n                    \"true\",\n                    \"false\"\n                ]\n            },\n            {\n                \"name\": \"limit\",\n                \"type\": \"number\",\n                \"require\": false,\n                \"description\": \"limit number of results, default 100\"\n            },\n            {\n                \"name\": \"start\",\n                \"type\": \"number\",\n                \"require\": false,\n                \"description\": \"start record number of results, default 0\"\n            }\n        ],\n        \"exceptions\": [],\n        \"return\": {\n            \"type\": \"multiple_result\",\n            \"sampleResult\": {\n                \"limit\": 100,\n                \"start\": 500,\n                \"found\": 502,\n                \"sortBy\": \"time\",\n                \"sortDirection\": \"descending\",\n                \"results\": [\n                    {\n                        \"time\": \"20201219062539392\",\n                        \"url\": {\n                            \"preview\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/preview\",\n                            \"download\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz\",\n                            \"metadata\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/metadata\",\n                            \"HighJPG\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/HighJPG\",\n                            \"PNG\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/PNG\",\n                            \"directUrlOriginal\": \"https://yourdomain.run.cantoflight.com/download/image/abcdefghijklmnopqrstuvwxyz/original\",\n                            \"detail\": \"https://yourdomain.run.cantoflight.com/smartalbum/image?column=image&id=abcdefghijklmnopqrstuvwxyz\",\n                            \"directUrlPreview\": \"https://yourdomain.run.cantoflight.com/preview/image/abcdefghijklmnopqrstuvwxyz/800\",\n                            \"LowJPG\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/LowJPG\"\n                        },\n                        \"description\": \"the description of the image\",\n                        \"width\": \"0\",\n                        \"height\": \"0\",\n                        \"dpi\": \"72\",\n                        \"ownerName\": \"first name last name\",\n                        \"name\": \"sample.jpg\",\n                        \"id\": \"abcdefghijklmnopqrstuvwxyz\",\n                        \"size\": \"123\",\n                        \"scheme\": \"image\",\n                        \"owner\": \"noreply@cantoflight.com\"\n                    },\n                    {\n                        \"time\": \"20201219062539392\",\n                        \"url\": {\n                            \"preview\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/preview\",\n                            \"download\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz\",\n                            \"metadata\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/metadata\",\n                            \"HighJPG\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/HighJPG\",\n                            \"PNG\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/PNG\",\n                            \"directUrlOriginal\": \"https://yourdomain.run.cantoflight.com/download/image/bcdefghijklmnopqrstuvwxyza/original\",\n                            \"detail\": \"https://yourdomain.run.cantoflight.com/smartalbum/image?column=image&id=bcdefghijklmnopqrstuvwxyza\",\n                            \"directUrlPreview\": \"https://yourdomain.run.cantoflight.com/preview/image/bcdefghijklmnopqrstuvwxyza/800\",\n                            \"LowJPG\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/LowJPG\"\n                        },\n                        \"description\": \"the description of the image 2\",\n                        \"width\": \"0\",\n                        \"height\": \"0\",\n                        \"dpi\": \"72\",\n                        \"ownerName\": \"first name last name\",\n                        \"name\": \"sample2.jpg\",\n                        \"id\": \"bcdefghijklmnopqrstuvwxyza\",\n                        \"size\": \"113\",\n                        \"scheme\": \"image\",\n                        \"owner\": \"noreply@cantoflight.com\"\n                    }\n                ]\n            }\n        }\n    },\n    {\n        \"path\": \"/api/v1/tree\",\n        \"method\": \"GET\",\n        \"description\": \"get whole tree\",\n        \"parameters\": [\n            {\n                \"name\": \"sortBy\",\n                \"type\": \"text\",\n                \"require\": false,\n                \"description\": \"sort by, default name\",\n                \"availbleValues\": [\n                    \"name\",\n                    \"time\"\n                ]\n            },\n            {\n                \"name\": \"sortDirection\",\n                \"type\": \"text\",\n                \"require\": false,\n                \"description\": \"sort direction, default descending(false)\",\n                \"availbleValues\": [\n                    \"ascending\",\n                    \"descending\",\n                    \"true\",\n                    \"false\"\n                ]\n            },\n            {\n                \"name\": \"layer\",\n                \"type\": \"number\",\n                \"require\": false,\n                \"description\": \"tree layer\"\n            }\n        ],\n        \"exceptions\": [],\n        \"return\": {\n            \"type\": \"multiple_result\",\n            \"description\": \"hierarchical multiple result\",\n            \"sampleResult\": {\n                \"sortBy\": \"name\",\n                \"sortDirection\": \"ascending\",\n                \"results\": [\n                    {\n                        \"time\": \"20201219062539392\",\n                        \"url\": {\n                            \"preview\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/preview\",\n                            \"detail\": \"https://yourdomain.run.cantoflight.com/album/ABC12\"\n                        },\n                        \"description\": \"the description of the top level album\",\n                        \"width\": \"0\",\n                        \"height\": \"0\",\n                        \"dpi\": \"72\",\n                        \"idPath\": \"ABC12\",\n                        \"namePath\": \"topLevelAlbum\",\n                        \"ownerName\": \"first name last name\",\n                        \"name\": \"topLevelAlbum\",\n                        \"id\": \"ABC12\",\n                        \"size\": \"123\",\n                        \"scheme\": \"album\",\n                        \"owner\": \"noreply@cantoflight.com\"\n                    },\n                    {\n                        \"children\": [\n                            {\n                                \"children\": [\n                                    {\n                                        \"time\": \"20201219062539392\",\n                                        \"url\": {\n                                            \"preview\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/preview\",\n                                            \"detail\": \"https://yourdomain.run.cantoflight.com/album/MNO90\"\n                                        },\n                                        \"description\": \"the description of the album of the folder\",\n                                        \"width\": \"0\",\n                                        \"height\": \"0\",\n                                        \"dpi\": \"72\",\n                                        \"idPath\": \"DEF34/GHI56/MNO90\",\n                                        \"namePath\": \"topLevelFolder/theFolder/theAlbumOfTheFolder\",\n                                        \"ownerName\": \"first name last name\",\n                                        \"name\": \"theAlbumOfTheFolder\",\n                                        \"id\": \"MNO90\",\n                                        \"size\": \"2\",\n                                        \"scheme\": \"album\",\n                                        \"owner\": \"noreply@cantoflight.com\"\n                                    }\n                                ],\n                                \"time\": \"20201219062539392\",\n                                \"url\": {\n                                    \"detail\": \"https://yourdomain.run.cantoflight.com/folder/GHI56\"\n                                },\n                                \"description\": \"the description of the folder\",\n                                \"width\": \"0\",\n                                \"height\": \"0\",\n                                \"dpi\": \"72\",\n                                \"idPath\": \"DEF34/GHI56\",\n                                \"namePath\": \"topLevelFolder/theFolder\",\n                                \"ownerName\": \"first name last name\",\n                                \"name\": \"theFolder\",\n                                \"id\": \"GHI56\",\n                                \"size\": \"1\",\n                                \"scheme\": \"folder\",\n                                \"owner\": \"noreply@cantoflight.com\"\n                            },\n                            {\n                                \"time\": \"20201219062539392\",\n                                \"url\": {\n                                    \"preview\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/preview\",\n                                    \"detail\": \"https://yourdomain.run.cantoflight.com/album/JKL78\"\n                                },\n                                \"description\": \"the description of the album of top level folder\",\n                                \"width\": \"0\",\n                                \"height\": \"0\",\n                                \"dpi\": \"72\",\n                                \"idPath\": \"DEF34/JKL78\",\n                                \"namePath\": \"topLevelFolder/theAlbum\",\n                                \"ownerName\": \"first name last name\",\n                                \"name\": \"theAlbum\",\n                                \"id\": \"JKL78\",\n                                \"size\": \"202\",\n                                \"scheme\": \"album\",\n                                \"owner\": \"noreply@cantoflight.com\"\n                            }\n                        ],\n                        \"time\": \"20201219062539392\",\n                        \"url\": {\n                            \"detail\": \"https://yourdomain.run.cantoflight.com/folder/DEF34\"\n                        },\n                        \"description\": \"the description of the top level folder\",\n                        \"width\": \"0\",\n                        \"height\": \"0\",\n                        \"dpi\": \"72\",\n                        \"idPath\": \"DEF34\",\n                        \"namePath\": \"topLevelFolder\",\n                        \"ownerName\": \"first name last name\",\n                        \"name\": \"topLevelFolder\",\n                        \"id\": \"DEF34\",\n                        \"size\": \"2\",\n                        \"scheme\": \"folder\",\n                        \"owner\": \"noreply@cantoflight.com\"\n                    }\n                ]\n            }\n        }\n    },\n    {\n        \"path\": \"/api/v1/tree/{folder id}\",\n        \"method\": \"GET\",\n        \"description\": \"get sub tree\",\n        \"parameters\": [\n            {\n                \"name\": \"sortBy\",\n                \"type\": \"text\",\n                \"require\": false,\n                \"description\": \"sort by, default name\",\n                \"availbleValues\": [\n                    \"name\",\n                    \"time\"\n                ]\n            },\n            {\n                \"name\": \"sortDirection\",\n                \"type\": \"text\",\n                \"require\": false,\n                \"description\": \"sort direction, default descending(false)\",\n                \"availbleValues\": [\n                    \"ascending\",\n                    \"descending\",\n                    \"true\",\n                    \"false\"\n                ]\n            },\n            {\n                \"name\": \"layer\",\n                \"type\": \"number\",\n                \"require\": false,\n                \"description\": \"tree layer\"\n            }\n        ],\n        \"exceptions\": [\n            {\n                \"code\": \"404 not found\",\n                \"description\": \"can not find the folder\"\n            }\n        ],\n        \"return\": {\n            \"type\": \"multiple_result\",\n            \"description\": \"hierarchical multiple result\",\n            \"sampleResult\": {\n                \"sortBy\": \"name\",\n                \"sortDirection\": \"ascending\",\n                \"results\": [\n                    {\n                        \"children\": [\n                            {\n                                \"time\": \"20201219062539392\",\n                                \"url\": {\n                                    \"preview\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/preview\",\n                                    \"detail\": \"https://yourdomain.run.cantoflight.com/album/MNO90\"\n                                },\n                                \"description\": \"the description of the album of the folder\",\n                                \"width\": \"0\",\n                                \"height\": \"0\",\n                                \"dpi\": \"72\",\n                                \"idPath\": \"DEF34/GHI56/MNO90\",\n                                \"namePath\": \"topLevelFolder/theFolder/theAlbumOfTheFolder\",\n                                \"ownerName\": \"first name last name\",\n                                \"name\": \"theAlbumOfTheFolder\",\n                                \"id\": \"MNO90\",\n                                \"size\": \"2\",\n                                \"scheme\": \"album\",\n                                \"owner\": \"noreply@cantoflight.com\"\n                            }\n                        ],\n                        \"time\": \"20201219062539392\",\n                        \"url\": {\n                            \"detail\": \"https://yourdomain.run.cantoflight.com/folder/GHI56\"\n                        },\n                        \"description\": \"the description of the folder\",\n                        \"width\": \"0\",\n                        \"height\": \"0\",\n                        \"dpi\": \"72\",\n                        \"idPath\": \"DEF34/GHI56\",\n                        \"namePath\": \"topLevelFolder/theFolder\",\n                        \"ownerName\": \"first name last name\",\n                        \"name\": \"theFolder\",\n                        \"id\": \"GHI56\",\n                        \"size\": \"1\",\n                        \"scheme\": \"folder\",\n                        \"owner\": \"noreply@cantoflight.com\"\n                    },\n                    {\n                        \"time\": \"20201219062539392\",\n                        \"url\": {\n                            \"preview\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/preview\",\n                            \"detail\": \"https://yourdomain.run.cantoflight.com/album/JKL78\"\n                        },\n                        \"description\": \"the description of the album of top level folder\",\n                        \"width\": \"0\",\n                        \"height\": \"0\",\n                        \"dpi\": \"72\",\n                        \"idPath\": \"DEF34/JKL78\",\n                        \"namePath\": \"topLevelFolder/theAlbum\",\n                        \"ownerName\": \"first name last name\",\n                        \"name\": \"theAlbum\",\n                        \"id\": \"JKL78\",\n                        \"size\": \"202\",\n                        \"scheme\": \"album\",\n                        \"owner\": \"noreply@cantoflight.com\"\n                    }\n                ]\n            }\n        }\n    },\n    {\n        \"path\": \"/api/v1/album/{album id}\",\n        \"method\": \"GET\",\n        \"description\": \"get content list under album\",\n        \"parameters\": [\n            {\n                \"name\": \"sortBy\",\n                \"type\": \"text\",\n                \"require\": false,\n                \"description\": \"sort by, default name\",\n                \"availbleValues\": [\n                    \"name\",\n                    \"time\",\n                    \"scheme\",\n                    \"owner\",\n                    \"size\"\n                ]\n            },\n            {\n                \"name\": \"sortDirection\",\n                \"type\": \"text\",\n                \"require\": false,\n                \"description\": \"sort direction, default descending(false)\",\n                \"availbleValues\": [\n                    \"ascending\",\n                    \"descending\",\n                    \"true\",\n                    \"false\"\n                ]\n            },\n            {\n                \"name\": \"limit\",\n                \"type\": \"number\",\n                \"require\": false,\n                \"description\": \"limit number of results, default 100\"\n            },\n            {\n                \"name\": \"start\",\n                \"type\": \"number\",\n                \"require\": false,\n                \"description\": \"start record number of results, default 0\"\n            }\n        ],\n        \"exceptions\": [\n            {\n                \"code\": \"404 not found\",\n                \"description\": \"can not find the album\"\n            }\n        ],\n        \"return\": {\n            \"type\": \"multiple_result\",\n            \"sampleResult\": {\n                \"limit\": 100,\n                \"start\": 200,\n                \"found\": 202,\n                \"sortBy\": \"time\",\n                \"sortDirection\": \"descending\",\n                \"results\": [\n                    {\n                        \"time\": \"20201219062539392\",\n                        \"url\": {\n                            \"preview\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/preview\",\n                            \"download\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz\",\n                            \"metadata\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/metadata\",\n                            \"HighJPG\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/HighJPG\",\n                            \"PNG\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/PNG\",\n                            \"directUrlOriginal\": \"https://yourdomain.run.cantoflight.com/download/image/abcdefghijklmnopqrstuvwxyz/original\",\n                            \"detail\": \"https://yourdomain.run.cantoflight.com/smartalbum/image?column=image&id=abcdefghijklmnopqrstuvwxyz\",\n                            \"directUrlPreview\": \"https://yourdomain.run.cantoflight.com/preview/image/abcdefghijklmnopqrstuvwxyz/800\",\n                            \"LowJPG\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/LowJPG\"\n                        },\n                        \"description\": \"the description of the image\",\n                        \"width\": \"0\",\n                        \"height\": \"0\",\n                        \"dpi\": \"72\",\n                        \"ownerName\": \"first name last name\",\n                        \"name\": \"sample.jpg\",\n                        \"id\": \"abcdefghijklmnopqrstuvwxyz\",\n                        \"size\": \"123\",\n                        \"scheme\": \"image\",\n                        \"owner\": \"noreply@cantoflight.com\"\n                    },\n                    {\n                        \"time\": \"20201219062539392\",\n                        \"url\": {\n                            \"preview\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/preview\",\n                            \"download\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz\",\n                            \"metadata\": \"https://yourdomain.run.cantoflight.com/api_binary/v1/image/abcdefghijklmnopqrstuvwxyz/metadata\",\n                            \"directUrlOriginal\": \"https://yourdomain.run.cantoflight.com/download/video/vwxyzabcdefghijklmnopqrstu/original\",\n                            \"detail\": \"https://yourdomain.run.cantoflight.com/smartalbum/video?column=video&id=vwxyzabcdefghijklmnopqrstu\",\n                            \"directUrlPreview\": \"https://yourdomain.run.cantoflight.com/preview/video/vwxyzabcdefghijklmnopqrstu/800\"\n                        },\n                        \"description\": \"the description of the video\",\n                        \"width\": \"0\",\n                        \"height\": \"0\",\n                        \"dpi\": \"72\",\n                        \"ownerName\": \"first name last name\",\n                        \"name\": \"good.mov\",\n                        \"id\": \"vwxyzabcdefghijklmnopqrstu\",\n                        \"size\": \"54321\",\n                        \"scheme\": \"video\",\n                        \"owner\": \"noreply@cantoflight.com\"\n                    }\n                ]\n            }\n        }\n    }\n]"}],"_postman_id":"4b933dac-a16f-4efc-9399-dd070db7b6d8"}],"id":"a0176219-98cc-4440-a588-c1e5b250ce63","description":"<p>The Bearer Token is simply the access token, you got on authorization request. </p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{accessToken}}"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"0f6e8890-360a-42fd-a443-5188827d9e2c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"409f7a85-701d-4874-bcd4-25fc7d30a0c3","type":"text/javascript","exec":[""]}}],"_postman_id":"a0176219-98cc-4440-a588-c1e5b250ce63"},{"name":"Product Hub (PIM) API","item":[],"id":"3cea53b4-fea4-42c8-9e02-1ee8b7a41cc3","description":"<p>Leverage the set of RESTful endpoints provided in the <a href=\"https://canto1.portal.swaggerhub.com/producthub/\">Canto Product Hub (PIM) API documentation</a>. This documentation outlines how to manage products, catalogs, custom attributes, variants, and more - enabling data exchange between your upstream and downstream applications and your Canto Product Hub.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"e57c8079-aa08-4e6a-b417-6f151e88a4d9","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"ece289e5-d0e0-4687-81e7-16168dbffda6","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"3cea53b4-fea4-42c8-9e02-1ee8b7a41cc3"}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]}},"event":[{"listen":"prerequest","script":{"id":"9a0a4d19-a11d-4d5c-99b8-86a9d93b9475","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a6f7663a-d23a-4576-a1a8-84b1cc43cafa","type":"text/javascript","exec":[""]}}],"variable":[{"key":"loadUtils","value":"function loadUtils() {\n  let utils = {};\nutils.checkVariable = function checkVariable(name) {\nvar variable = pm.environment.get(name)\nvar valid = true\nif(variable == null || variable == \"\") {\nvalid = false\n}\npm.expect(valid).equal(true, 'postman variable '+ name +' has no value.');\n}\nutils.contentSchemes = [\"image\", \"video\", \"audio\", \"document\", \"presentation\", \"other\"]\nutils.treeSchemes = [\"album\", \"folder\"]\nutils.isContentScheme = function isContentScheme(scheme) {\nreturn utils.contentSchemes.includes(scheme)\n}\nutils.isTreeScheme = function isContentScheme(scheme) {\nreturn utils.treeSchemes.includes(scheme)\n}\n\nreturn utils;\n}; loadUtils();"}]}